Fri, 06 Jan 2006 04:46:00 +0000
[gaim-migrate @ 15091]
" Adds an emblem to a buddy if they have a queued message
(hidden conversation). In the large buddy list it is
added in the northwest corner, sliding the existing
northwest emblem (if specified) to the northeast
position and discarding the northeast emblem. In the
small buddy list, the emblem is added to the southeast.
Attached is a patch and an emblem image to be dropped
in pixmaps/status/default/. The emblem image is a
scaled down version of the send-im.png image." -- Casey Harkins
as I asked for this patch, and since there don't seem to be objections to
it (yet), I'm going ahead and applying it.
committer: Luke Schierer <lschiere@pidgin.im>
| 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> | |
|
11908
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
28 | #include <gtk/gtktooltips.h> |
| 11553 | 29 | |
| 30 | #define GAIM_GTK_TYPE_MENU_TRAY (gaim_gtk_menu_tray_get_gtype()) | |
| 31 | #define GAIM_GTK_MENU_TRAY(obj) (GTK_CHECK_CAST((obj), GAIM_GTK_TYPE_MENU_TRAY, GaimGtkMenuTray)) | |
| 32 | #define GAIM_GTK_MENU_TRAY_CLASS(klass) (GTK_CHECK_CLASS_CAST((klass), GAIM_GTK_TYPE_MENU_TRAY, GaimGtkMenuTrayClass)) | |
| 33 | #define GAIM_GTK_IS_MENU_TRAY(obj) (GTK_CHECK_TYPE((obj), GAIM_GTK_TYPE_MENU_TRAY)) | |
| 34 | #define GAIM_GTK_IS_MENU_TRAY_CLASS(klass) (GTK_CHECK_CLASS_TYPE((klass), GAIM_GTK_TYPE_MENU_TRAY)) | |
| 35 | #define GAIM_GTK_MENU_TRAY_GET_CLASS(obj) (GTK_CHECK_GET_CLASS((obj), GAIM_GTK_TYPE_MENU_TRAY, GaimGtkMenuTrayClass)) | |
| 36 | ||
| 37 | typedef struct _GaimGtkMenuTray GaimGtkMenuTray; | |
| 38 | typedef struct _GaimGtkMenuTrayClass GaimGtkMenuTrayClass; | |
| 39 | ||
| 40 | /** A GaimGtkMenuTray */ | |
| 41 | struct _GaimGtkMenuTray { | |
| 42 | GtkMenuItem gparent; /**< The parent instance */ | |
|
11599
431352c132c8
[gaim-migrate @ 13869]
Gary Kramlich <grim@reaperworld.com>
parents:
11558
diff
changeset
|
43 | GtkWidget *tray; /**< The tray */ |
|
11908
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
44 | GtkTooltips *tooltips; /**< Tooltips */ |
| 11553 | 45 | }; |
| 46 | ||
| 47 | /** A GaimGtkMenuTrayClass */ | |
| 48 | struct _GaimGtkMenuTrayClass { | |
| 49 | GtkMenuItemClass gparent; /**< The parent class */ | |
| 50 | }; | |
| 51 | ||
| 52 | G_BEGIN_DECLS | |
| 53 | ||
| 54 | /** | |
| 55 | * Registers the GaimGtkMenuTray class if necessary and returns the | |
| 56 | * type ID assigned to it. | |
| 57 | * | |
| 58 | * @return The GaimGtkMenuTray type ID | |
| 59 | */ | |
| 60 | GType gaim_gtk_menu_tray_get_gtype(void); | |
| 61 | ||
| 62 | /** | |
| 63 | * Creates a new GaimGtkMenuTray | |
| 64 | * | |
| 65 | * @return A new GaimGtkMenuTray | |
| 66 | */ | |
|
12323
f52908fb23b0
[gaim-migrate @ 14627]
Richard Laager <rlaager@pidgin.im>
parents:
11908
diff
changeset
|
67 | GtkWidget *gaim_gtk_menu_tray_new(void); |
| 11553 | 68 | |
| 69 | /** | |
| 70 | * Gets the box for the GaimGtkMenuTray | |
| 71 | * | |
| 72 | * @param menu_tray The GaimGtkMenuTray | |
| 73 | * | |
| 74 | * @return The box that this menu tray is using | |
| 75 | */ | |
| 76 | GtkWidget *gaim_gtk_menu_tray_get_box(GaimGtkMenuTray *menu_tray); | |
| 77 | ||
| 78 | /** | |
| 79 | * Appends a widget into the tray | |
| 80 | * | |
| 81 | * @param menu_tray The tray | |
| 82 | * @param widget The widget | |
|
11908
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
83 | * @param tooltip The tooltip for this widget (widget requires its own X-window) |
| 11553 | 84 | */ |
|
11908
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
85 | void gaim_gtk_menu_tray_append(GaimGtkMenuTray *menu_tray, GtkWidget *widget, const char *tooltip); |
| 11553 | 86 | |
| 87 | /** | |
| 88 | * Prepends a widget into the tray | |
| 89 | * | |
|
11908
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
90 | * @param menu_tray The tray |
| 11553 | 91 | * @param widget The widget |
|
11908
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
92 | * @param tooltip The tooltip for this widget (widget requires its own X-window) |
| 11553 | 93 | */ |
|
11908
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
94 | void gaim_gtk_menu_tray_prepend(GaimGtkMenuTray *menu_tray, GtkWidget *widget, const char *tooltip); |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
95 | |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
96 | /** |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
97 | * Set the tooltip for a widget |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
98 | * |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
99 | * @param menu_tray The tray |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
100 | * @param widget The widget |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
101 | * @param tooltip The tooltip to set for the widget (widget requires its own X-window) |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
102 | */ |
|
ad9c7ca74793
[gaim-migrate @ 14199]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11599
diff
changeset
|
103 | void gaim_gtk_menu_tray_set_tooltip(GaimGtkMenuTray *menu_tray, GtkWidget *widget, const char *tooltip); |
| 11553 | 104 | |
| 105 | G_END_DECLS | |
| 106 | ||
| 107 | #endif /* GAIM_GTK_MENU_TRAY_H */ |