~ubuntu-branches/ubuntu/vivid/xfdesktop4/vivid-proposed

« back to all changes in this revision

Viewing changes to common/xfdesktop-common.h

  • Committer: Package Import Robot
  • Author(s): Sean Davis
  • Date: 2014-08-11 22:25:48 UTC
  • mfrom: (1.5.11)
  • Revision ID: package-import@ubuntu.com-20140811222548-osc1fppwc8k8r3ix
Tags: 4.11.7-0ubuntu1
* New upstream development release
* debian/patches/xubuntu_set-accountsservice-user-bg.patch: update
  patch to only update on first workspace filename change (LP: #1318307)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
#include <X11/Xlib.h>
34
34
 
 
35
#include <stdarg.h>
 
36
 
35
37
#define XFDESKTOP_CHANNEL        "xfce4-desktop"
36
38
#define DEFAULT_BACKDROP         DATADIR "/backgrounds/xfce/xfce-blue.jpg"
37
39
#define DEFAULT_ICON_FONT_SIZE   12
54
56
#define SINGLE_WORKSPACE_NUMBER   "/backdrop/single-workspace-number"
55
57
 
56
58
#define DESKTOP_ICONS_SHOW_THUMBNAILS        "/desktop-icons/show-thumbnails"
 
59
#define DESKTOP_ICONS_SHOW_HIDDEN_FILES      "/desktop-icons/show-hidden-files"
57
60
#define DESKTOP_ICONS_SHOW_NETWORK_REMOVABLE "/desktop-icons/file-icons/show-network-removable"
58
61
#define DESKTOP_ICONS_SHOW_DEVICE_REMOVABLE  "/desktop-icons/file-icons/show-device-removable"
59
62
#define DESKTOP_ICONS_SHOW_UNKNWON_REMOVABLE "/desktop-icons/file-icons/show-unknown-removable"
97
100
 
98
101
guint32 xfdesktop_popup_keyboard_grab_available(GdkWindow *win);
99
102
 
 
103
 
 
104
#if defined(G_HAVE_ISO_VARARGS)
 
105
 
 
106
#define XF_DEBUG(...) xfdesktop_debug (__func__, __FILE__, __LINE__, __VA_ARGS__)
 
107
 
 
108
void xfdesktop_debug(const char *func, const char *file, int line, const char *format, ...) __attribute__((format (printf,4,5)));
 
109
 
 
110
#else /* defined(G_HAVE_ISO_VARARGS) */
 
111
 
 
112
#define XF_DEBUG(...)
 
113
 
 
114
#endif /* defined(G_HAVE_ISO_VARARGS) */
 
115
 
 
116
void xfdesktop_debug_set(gboolean debug);
 
117
 
100
118
G_END_DECLS
101
119
 
102
120
#endif