~ubuntu-branches/ubuntu/oneiric/gnome-panel/oneiric

« back to all changes in this revision

Viewing changes to applets/notification_area/na-tray-manager.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-05-30 11:04:49 UTC
  • mfrom: (1.3.4 upstream)
  • mto: This revision was merged to the branch mainline in revision 204.
  • Revision ID: james.westby@ubuntu.com-20110530110449-ut1tc5t61rpvf9e3
Tags: upstream-3.0.2
ImportĀ upstreamĀ versionĀ 3.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
#ifdef GDK_WINDOWING_X11
51
51
  GdkAtom selection_atom;
52
52
  Atom    opcode_atom;
 
53
  Atom    message_data_atom;
53
54
#endif
54
55
  
55
56
  GtkWidget *invisible;
56
57
  GdkScreen *screen;
57
58
  GtkOrientation orientation;
 
59
  gint padding;
 
60
  gint icon_size;
 
61
  GdkColor fg;
 
62
  GdkColor error;
 
63
  GdkColor warning;
 
64
  GdkColor success;
58
65
 
59
66
  GList *messages;
60
67
  GHashTable *socket_table;
91
98
void            na_tray_manager_set_orientation (NaTrayManager      *manager,
92
99
                                                 GtkOrientation      orientation);
93
100
GtkOrientation  na_tray_manager_get_orientation (NaTrayManager      *manager);
 
101
void            na_tray_manager_set_padding     (NaTrayManager      *manager,
 
102
                                                 gint                padding);
 
103
void            na_tray_manager_set_icon_size   (NaTrayManager      *manager,
 
104
                                                 gint                padding);
 
105
void            na_tray_manager_set_colors      (NaTrayManager      *manager,
 
106
                                                 GdkColor           *fg,
 
107
                                                 GdkColor           *error,
 
108
                                                 GdkColor           *warning,
 
109
                                                 GdkColor           *success);
 
110
 
94
111
 
95
112
G_END_DECLS
96
113