Changeset 6333 for trunk/src/eggtrayicon.h
- Timestamp:
- 05/16/06 10:51:48 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/eggtrayicon.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/eggtrayicon.h
r1063 r6333 23 23 24 24 #include <gtk/gtkplug.h> 25 #ifdef GDK_WINDOWING_X11 25 26 #include <gdk/gdkx.h> 27 #endif 26 28 27 29 G_BEGIN_DECLS … … 33 35 #define EGG_IS_TRAY_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EGG_TYPE_TRAY_ICON)) 34 36 #define EGG_TRAY_ICON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EGG_TYPE_TRAY_ICON, EggTrayIconClass)) 35 37 36 38 typedef struct _EggTrayIcon EggTrayIcon; 37 39 typedef struct _EggTrayIconClass EggTrayIconClass; … … 42 44 43 45 guint stamp; 44 46 47 #ifdef GDK_WINDOWING_X11 45 48 Atom selection_atom; 46 49 Atom manager_atom; … … 48 51 Atom orientation_atom; 49 52 Window manager_window; 50 53 #endif 51 54 GtkOrientation orientation; 52 55 }; … … 72 75 73 76 GtkOrientation egg_tray_icon_get_orientation (EggTrayIcon *icon); 74 77 75 78 G_END_DECLS 76 79
