Mercurial > pidgin.yaz
annotate src/gtkmenutray.h @ 11685:d309a383ebf7
[gaim-migrate @ 13971]
We removed this signal a little while ago.
committer: Tailor Script <tailor@pidgin.im>
author | Etan Reisner <pidgin@unreliablesource.net> |
---|---|
date | Mon, 17 Oct 2005 20:33:35 +0000 |
parents | 767e3c0c5062 |
children | 34ea75bdd0c9 |
rev | line source |
---|---|
11553 | 1 /** |
2 * @file gtkmenutray.h GTK+ Tray menu item | |
3 * @ingroup gtkui | |
4 * | |
5 * Gaim is the legal property of its developers, whose names are too numerous | |
6 * to list here. Please refer to the COPYRIGHT file distributed with this | |
7 * source distribution. | |
8 * | |
9 * This program is free software; you can redistribute it and/or modify | |
10 * under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 #ifndef GAIM_GTK_MENU_TRAY_H | |
24 #define GAIM_GTK_MENU_TRAY_H | |
25 | |
26 #include <gtk/gtkhbox.h> | |
27 #include <gtk/gtkmenuitem.h> | |
28 | |
29 #define GAIM_GTK_TYPE_MENU_TRAY (gaim_gtk_menu_tray_get_gtype()) | |
30 #define GAIM_GTK_MENU_TRAY(obj) (GTK_CHECK_CAST((obj), GAIM_GTK_TYPE_MENU_TRAY, GaimGtkMenuTray)) | |
31 #define GAIM_GTK_MENU_TRAY_CLASS(klass) (GTK_CHECK_CLASS_CAST((klass), GAIM_GTK_TYPE_MENU_TRAY, GaimGtkMenuTrayClass)) | |
32 #define GAIM_GTK_IS_MENU_TRAY(obj) (GTK_CHECK_TYPE((obj), GAIM_GTK_TYPE_MENU_TRAY)) | |
33 #define GAIM_GTK_IS_MENU_TRAY_CLASS(klass) (GTK_CHECK_CLASS_TYPE((klass), GAIM_GTK_TYPE_MENU_TRAY)) | |
34 #define GAIM_GTK_MENU_TRAY_GET_CLASS(obj) (GTK_CHECK_GET_CLASS((obj), GAIM_GTK_TYPE_MENU_TRAY, GaimGtkMenuTrayClass)) | |
35 | |
36 typedef struct _GaimGtkMenuTray GaimGtkMenuTray; | |
37 typedef struct _GaimGtkMenuTrayClass GaimGtkMenuTrayClass; | |
38 | |
39 /** A GaimGtkMenuTray */ | |
40 struct _GaimGtkMenuTray { | |
41 GtkMenuItem gparent; /**< The parent instance */ | |
11599
767e3c0c5062
[gaim-migrate @ 13869]
Gary Kramlich <grim@reaperworld.com>
parents:
11558
diff
changeset
|
42 GtkWidget *tray; /**< The tray */ |
11553 | 43 }; |
44 | |
45 /** A GaimGtkMenuTrayClass */ | |
46 struct _GaimGtkMenuTrayClass { | |
47 GtkMenuItemClass gparent; /**< The parent class */ | |
48 }; | |
49 | |
50 G_BEGIN_DECLS | |
51 | |
52 /** | |
53 * Registers the GaimGtkMenuTray class if necessary and returns the | |
54 * type ID assigned to it. | |
55 * | |
56 * @return The GaimGtkMenuTray type ID | |
57 */ | |
58 GType gaim_gtk_menu_tray_get_gtype(void); | |
59 | |
60 /** | |
61 * Creates a new GaimGtkMenuTray | |
62 * | |
63 * @return A new GaimGtkMenuTray | |
64 */ | |
65 GtkWidget *gaim_gtk_menu_tray_new(); | |
66 | |
67 /** | |
68 * Gets the box for the GaimGtkMenuTray | |
69 * | |
70 * @param menu_tray The GaimGtkMenuTray | |
71 * | |
72 * @return The box that this menu tray is using | |
73 */ | |
74 GtkWidget *gaim_gtk_menu_tray_get_box(GaimGtkMenuTray *menu_tray); | |
75 | |
76 /** | |
77 * Appends a widget into the tray | |
78 * | |
79 * @param menu_tray The tray | |
80 * @param widget The widget | |
81 */ | |
82 void gaim_gtk_menu_tray_append(GaimGtkMenuTray *menu_tray, GtkWidget *widget); | |
83 | |
84 /** | |
85 * Prepends a widget into the tray | |
86 * | |
87 * @param menu_tray The try | |
88 * @param widget The widget | |
89 */ | |
90 void gaim_gtk_menu_tray_prepend(GaimGtkMenuTray *menu_tray, GtkWidget *widget); | |
91 | |
92 G_END_DECLS | |
93 | |
94 #endif /* GAIM_GTK_MENU_TRAY_H */ |