|  |  |  | Glade UI Builder Reference Manual |  | 
|---|---|---|---|---|
| GladeEditorPropertyGladeEditorProperty — A generic widget to edit a GladeProperty. | 
                    GladeEditorProperty;
GladeEditorProperty* glade_editor_property_new          (GladePropertyClass *klass,
                                                         gboolean use_command);
GladeEditorProperty* glade_editor_property_new_from_widget
                                                        (GladeWidget *widget,
                                                         const gchar *property,
                                                         gboolean packing,
                                                         gboolean use_command);
void                glade_editor_property_load          (GladeEditorProperty *eprop,
                                                         GladeProperty *property);
void                glade_editor_property_load_by_widget
                                                        (GladeEditorProperty *eprop,
                                                         GladeWidget *widget);
gboolean            glade_editor_property_supported     (GParamSpec *pspec);
void                glade_editor_property_show_info     (GladeEditorProperty *eprop);
void                glade_editor_property_hide_info     (GladeEditorProperty *eprop);
  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkContainer
                           +----GtkBox
                                 +----GtkHBox
                                       +----GladeEditorProperty
"property-class" gpointer : Read / Write / Construct Only "show-info" gboolean : Read / Write "use-command" gboolean : Read / Write
The GladeEditorProperty is a factory that will create the correct control for the GladePropertyClass it was created for and provides a simple unified api to them.
GladeEditorProperty* glade_editor_property_new (GladePropertyClass *klass, gboolean use_command);
This is a factory function to create the correct type of editor property that can edit the said type of GladePropertyClass
| 
 | A GladePropertyClass | 
| 
 | Whether the undo/redo stack applies here. | 
| Returns : | A newly created GladeEditorProperty of the correct type | 
GladeEditorProperty* glade_editor_property_new_from_widget (GladeWidget *widget, const gchar *property, gboolean packing, gboolean use_command);
This is a convenience function to create a GladeEditorProperty corresponding
to property
| 
 | A GladeWidget | 
| 
 | The widget's property | 
| 
 | whether propertyindicates a packing property or not. | 
| 
 | Whether the undo/redo stack applies here. | 
| Returns : | A newly created and connected GladeEditorProperty | 
void glade_editor_property_load (GladeEditorProperty *eprop, GladeProperty *property);
Loads property values into eprop and connects.
| 
 | A GladeEditorProperty | 
| 
 | A GladeProperty | 
void                glade_editor_property_load_by_widget
                                                        (GladeEditorProperty *eprop,
                                                         GladeWidget *widget);
Convenience function to load the appropriate GladeProperty into
eprop from widget
| 
 | A GladeEditorProperty | 
| 
 | A GladeWidget | 
gboolean glade_editor_property_supported (GParamSpec *pspec);
| 
 | A GParamSpec | 
| Returns : | whether this pspec is supported by GladeEditorProperties. | 
void glade_editor_property_show_info (GladeEditorProperty *eprop);
Show the control widget to access help for eprop
| 
 | A GladeEditorProperty | 
void glade_editor_property_hide_info (GladeEditorProperty *eprop);
Hide the control widget to access help for eprop
| 
 | A GladeEditorProperty | 
"property-class" property"property-class" gpointer : Read / Write / Construct Only
The GladePropertyClass this GladeEditorProperty was created for.
"show-info" property"show-info" gboolean : Read / Write
Whether we should show an informational button.
Default value: FALSE
"gtk-doc-search" signalvoid user_function (GladeEditorProperty *gladeeditor, gchar *arg1, gchar *arg2, gchar *arg3, gpointer user_data) : Run Last
Emitted when the editor property requests that a doc-search be performed.
| 
 | the GladeEditorProperty which received the signal. | 
| 
 | the (gchar *) book to search or NULL | 
| 
 | the (gchar *) page to search or NULL | 
| 
 | the (gchar *) search string or NULL | 
| 
 | user data set when the signal handler was connected. |