~ubuntu-branches/ubuntu/trusty/unity-control-center/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2014-01-08 16:29:18 UTC
  • Revision ID: package-import@ubuntu.com-20140108162918-g29dd08tr913y2qh
Tags: upstream-14.04.0
ImportĀ upstreamĀ versionĀ 14.04.0

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