summaryrefslogtreecommitdiff
path: root/gladeui/glade-widget-adaptor.h
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@src.gnome.org>2007-05-09 15:26:30 +0000
committerTristan Van Berkom <tvb@src.gnome.org>2007-05-09 15:26:30 +0000
commitda60beeef4e5afae5ba6568377ac4e2719b9e915 (patch)
tree83cc53153bec90e6652e5f132e6286b0af1c0cb8 /gladeui/glade-widget-adaptor.h
parentfb940f780a097c32092eca43057882b4b04e74d3 (diff)
downloadglade-da60beeef4e5afae5ba6568377ac4e2719b9e915.tar.gz
Removed notion of custom widget editors.
* gladeui/glade-widget-adaptor.[ch], gladeui/glade-widget.[ch], gladeui/glade-editor.c, gladeui/glade-xml-utils.h: Removed notion of custom widget editors. * plugins/gtk+/gtk+.xml.in, plugins/gtk+/glade-gtk.c: removed custom editor hooks, implemented menu editor via actions only (toolbar editor temporarily disabled). svn path=/trunk/; revision=1307
Diffstat (limited to 'gladeui/glade-widget-adaptor.h')
-rw-r--r--gladeui/glade-widget-adaptor.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/gladeui/glade-widget-adaptor.h b/gladeui/glade-widget-adaptor.h
index 0901a80a..3291741b 100644
--- a/gladeui/glade-widget-adaptor.h
+++ b/gladeui/glade-widget-adaptor.h
@@ -303,16 +303,6 @@ typedef GObject *(* GladeGetInternalFunc) (GladeWidgetAdaptor *adaptor,
const gchar *name);
-/**
- * GladeEditorLaunchFunc:
- * @object: A #GObject
- *
- * Called to launch a custom editor for @object
- */
-typedef void (* GladeEditorLaunchFunc) (GladeWidgetAdaptor *adaptor,
- GObject *object);
-
-
/* GladeSignalClass contains all the info we need for a given signal, such as
* the signal name, and maybe more in the future
*/
@@ -409,9 +399,6 @@ struct _GladeWidgetAdaptorClass
GladeGetInternalFunc get_internal_child; /* Retrieves the the internal child
* of the given name.
*/
-
- GladeEditorLaunchFunc launch_editor; /* Entry point for custom editors. */
-
/* Delagate to verify if this is a valid value for this property,
* if this function exists and returns FALSE, then glade_property_set
@@ -515,9 +502,6 @@ GObject *glade_widget_adaptor_get_internal_child (GladeWidgetAdaptor
GObject *object,
const gchar *internal_name);
-void glade_widget_adaptor_launch_editor (GladeWidgetAdaptor *adaptor,
- GObject *object);
-
void glade_widget_adaptor_set_property (GladeWidgetAdaptor *adaptor,
GObject *object,
const gchar *property_name,