summaryrefslogtreecommitdiff
path: root/plugins/gtk+/glade-image-item-editor.h
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.van.berkom@gmail.com>2011-03-07 17:18:33 +0900
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2011-03-07 17:21:42 +0900
commit25ce935c1c86c818dd2a5e0bd80aefb2327e813e (patch)
treebaad2d6805a220459073d66fb063ef9cb0b324e7 /plugins/gtk+/glade-image-item-editor.h
parent57fbb453476defd25d80be85b8cab4a570f753f1 (diff)
downloadglade-25ce935c1c86c818dd2a5e0bd80aefb2327e813e.tar.gz
* gladeui/glade-*-editor.c: Fixed all GladeEditable implementations to use
the new glade_editable_loading() and glade_editable_loaded_widget() instead of manually bookkeeping those states in each implementation.
Diffstat (limited to 'plugins/gtk+/glade-image-item-editor.h')
-rw-r--r--plugins/gtk+/glade-image-item-editor.h22
1 files changed, 9 insertions, 13 deletions
diff --git a/plugins/gtk+/glade-image-item-editor.h b/plugins/gtk+/glade-image-item-editor.h
index 7d901e5f..66c14655 100644
--- a/plugins/gtk+/glade-image-item-editor.h
+++ b/plugins/gtk+/glade-image-item-editor.h
@@ -37,26 +37,22 @@ typedef struct _GladeImageItemEditorClass GladeImageItemEditorClass;
struct _GladeImageItemEditor
{
- GtkVBox parent;
+ GtkVBox parent;
- GladeWidget *loaded_widget; /* A handy pointer to the loaded widget ... */
+ GtkWidget *embed; /* Embedded parent class editor */
+ GtkWidget *embed_image; /* Embedded GladeEditable for the image */
- GtkWidget *embed; /* Embedded parent class editor */
- GtkWidget *embed_image; /* Embedded GladeEditable for the image */
+ GtkWidget *stock_radio; /* Use a stock-item for the menu */
+ GtkWidget *custom_radio; /* Set a widget to be placed as the image item's label */
+ GtkWidget *embed_frame; /* Use to set the whole image area insensitive */
+ GtkWidget *label_frame; /* Use to set the whole custom label area insensitive */
- GtkWidget *stock_radio; /* Use a stock-item for the menu */
- GtkWidget *custom_radio; /* Set a widget to be placed as the image item's label */
- GtkWidget *embed_frame; /* Use to set the whole image area insensitive */
- GtkWidget *label_frame; /* Use to set the whole custom label area insensitive */
-
- GList *properties; /* A list of eprops to update at load() time */
-
- gboolean loading; /* Loading flag for loading widgets in the editor */
+ GList *properties; /* A list of eprops to update at load() time */
};
struct _GladeImageItemEditorClass
{
- GtkVBoxClass parent;
+ GtkVBoxClass parent;
};
GType glade_image_item_editor_get_type (void) G_GNUC_CONST;