~ubuntu-branches/ubuntu/precise/gnome-control-center/precise-updates

« back to all changes in this revision

Viewing changes to panels/keyboard/wm-common.h

Tags: upstream-3.0.1.1
ImportĀ upstreamĀ versionĀ 3.0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef WM_COMMON_H
 
2
#define WM_COMMON_H
 
3
 
 
4
#define WM_COMMON_METACITY "Metacity"
 
5
#define WM_COMMON_SAWFISH  "Sawfish"
 
6
#define WM_COMMON_UNKNOWN  "Unknown"
 
7
 
 
8
gchar *wm_common_get_current_window_manager (void);
 
9
/* Returns a strv of keybinding names for the window manager;
 
10
 * using _GNOME_WM_KEYBINDINGS if available, _NET_WM_NAME otherwise. */
 
11
char **wm_common_get_current_keybindings (void);
 
12
 
 
13
void   wm_common_register_window_manager_change (GFunc    func,
 
14
                                                 gpointer data);
 
15
 
 
16
#endif /* WM_COMMON_H */
 
17