Fri, 14 Sep 2007 17:55:05 +0000
Fix proxy settings to be loaded correctly when libpurple is initialized. This was broken because it relied on the prefs being loaded after proxy initialization so that the pref callbacks would be triggered and I changed the prefs loading to happen right at the beginning to fix other issues. Fixes #3092.
| 10703 | 1 | /* gtkcellviewmenuitem.h |
| 2 | * Copyright (C) 2003 Kristian Rietveld <kris@gtk.org> | |
| 3 | * | |
| 4 | * This library is free software; you can redistribute it and/or | |
| 5 | * modify it under the terms of the GNU Library General Public | |
| 6 | * License as published by the Free Software Foundation; either | |
| 7 | * version 2 of the License, or (at your option) any later version. | |
| 8 | * | |
| 9 | * This library is distributed in the hope that it will be useful, | |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 12 | * Library General Public License for more details. | |
| 13 | * | |
| 14 | * You should have received a copy of the GNU Library General Public | |
| 15 | * License along with this library; if not, write to the | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
15435
diff
changeset
|
16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
|
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
15435
diff
changeset
|
17 | * Boston, MA 02111-1301, USA. |
| 10703 | 18 | */ |
| 19 | ||
| 20 | #ifndef __GTK_CELL_VIEW_MENU_ITEM_H__ | |
| 21 | #define __GTK_CELL_VIEW_MENU_ITEM_H__ | |
| 22 | ||
| 23 | #include <gtk/gtkmenuitem.h> | |
| 24 | #include <gtk/gtktreemodel.h> | |
| 25 | ||
| 26 | G_BEGIN_DECLS | |
| 27 | ||
| 28 | #define GTK_TYPE_CELL_VIEW_MENU_ITEM (gtk_cell_view_menu_item_get_type ()) | |
| 29 | #define GTK_CELL_VIEW_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CELL_VIEW_MENU_ITEM, GtkCellViewMenuItem)) | |
| 30 | #define GTK_CELL_VIEW_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CELL_VIEW_MENU_ITEM, GtkCellViewMenuItemClass)) | |
| 31 | #define GTK_IS_CELL_VIEW_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CELL_VIEW_MENU_ITEM)) | |
| 32 | #define GTK_IS_CELL_VIEW_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CELL_VIEW_MENU_ITEM)) | |
| 33 | #define GTK_CELL_VIEW_MENU_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CELL_VIEW_MENU_ITEM, GtkCellViewMenuItemClass)) | |
| 34 | ||
| 35 | ||
| 36 | typedef struct _GtkCellViewMenuItem GtkCellViewMenuItem; | |
| 37 | typedef struct _GtkCellViewMenuItemClass GtkCellViewMenuItemClass; | |
| 38 | typedef struct _GtkCellViewMenuItemPrivate GtkCellViewMenuItemPrivate; | |
| 39 | ||
| 40 | struct _GtkCellViewMenuItem | |
| 41 | { | |
| 42 | GtkMenuItem parent_instance; | |
| 43 | ||
| 44 | /*< private >*/ | |
| 45 | GtkCellViewMenuItemPrivate *priv; | |
| 46 | }; | |
| 47 | ||
| 48 | struct _GtkCellViewMenuItemClass | |
| 49 | { | |
| 50 | GtkMenuItemClass parent_class; | |
| 51 | }; | |
| 52 | ||
| 53 | ||
| 54 | GType gtk_cell_view_menu_item_get_type (void); | |
| 55 | GtkWidget *gtk_cell_view_menu_item_new (void); | |
| 56 | ||
| 57 | GtkWidget *gtk_cell_view_menu_item_new_with_pixbuf (GdkPixbuf *pixbuf); | |
| 58 | GtkWidget *gtk_cell_view_menu_item_new_with_text (const gchar *text); | |
| 59 | GtkWidget *gtk_cell_view_menu_item_new_with_markup (const gchar *markup); | |
| 60 | ||
| 61 | GtkWidget *gtk_cell_view_menu_item_new_from_model (GtkTreeModel *model, | |
| 62 | GtkTreePath *path); | |
| 63 | ||
| 64 | ||
| 65 | G_END_DECLS | |
| 66 | ||
| 67 | #endif /* __GTK_CELL_VIEW_MENU_ITEM_H__ */ |