1 
2 /* eggtrayicon.h           serial-0085-0 ***************************************
3  * Copyright (C) 2002 Anders Carlsson <andersca@gnu.org>
4  *
5  * Modified by James Scott, Jr <skoona@users.sourceforge.net>
6  * - To enhance events and size management  4/2006
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23 
24 #ifndef __EGG_TRAY_ICON_H__
25 #define __EGG_TRAY_ICON_H__
26 
27 #include <gtk/gtkplug.h>
28 #include <gdk/gdkx.h>
29 #ifdef G_OS_WIN32
30 #include <gdk/gdkwin32.h>
31 #endif                             /* WINDOWS */
32 
33 G_BEGIN_DECLS
34 #define EGG_TYPE_TRAY_ICON (egg_tray_icon_get_type ())
35 #define EGG_TRAY_ICON(obj)	(G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_TRAY_ICON, EggTrayIcon))
36 #define EGG_TRAY_ICON_CLASS(klass)	(G_TYPE_CHECK_CLASS_CAST ((klass), EGG_TYPE_TRAY_ICON, EggTrayIconClass))
37 #define EGG_IS_TRAY_ICON(obj)	(G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_TRAY_ICON))
38 #define EGG_IS_TRAY_ICON_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE ((klass), EGG_TYPE_TRAY_ICON))
39 #define EGG_TRAY_ICON_GET_CLASS(obj)	(G_TYPE_INSTANCE_GET_CLASS ((obj), EGG_TYPE_TRAY_ICON, EggTrayIconClass))
40 typedef struct _EggTrayIcon EggTrayIcon;
41 typedef struct _EggTrayIconClass EggTrayIconClass;
42 
43 struct _EggTrayIcon {
44    GtkPlug parent_instance;
45 
46    guint stamp;
47 
48 #ifdef GDK_WINDOWING_X11
49    Atom selection_atom;
50    Atom manager_atom;
51    Atom system_tray_opcode_atom;
52    Atom orientation_atom;
53    Window manager_window;
54 #endif
55    GtkOrientation orientation;
56 };
57 
58 struct _EggTrayIconClass {
59    GtkPlugClass parent_class;
60 };
61 
62 GType egg_tray_icon_get_type(void);
63 
64 EggTrayIcon *egg_tray_icon_new_for_screen(GdkScreen * screen, const gchar * name);
65 
66 EggTrayIcon *egg_tray_icon_new(const gchar * name);
67 
68 guint egg_tray_icon_send_message(EggTrayIcon * icon,
69    gint timeout, const char *message, gint len);
70 void egg_tray_icon_cancel_message(EggTrayIcon * icon, guint id);
71 
72 GtkOrientation egg_tray_icon_get_orientation(EggTrayIcon * icon);
73 
74 G_END_DECLS
75 #endif                             /* __EGG_TRAY_ICON_H__ */
76