repair glade; switched to gladeui-2.0; removed the internal-child in psppire-dialog.
[pspp] / glade / var-view.c
diff --git a/glade/var-view.c b/glade/var-view.c
deleted file mode 100644 (file)
index 7eb6c62..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-#include <config.h>
-
-#include <glib.h>
-#include <gtk/gtk.h>
-#include "psppire-var-view.h"
-
-#include <gladeui/glade.h>
-
-
-/* Dummy function to keep the linker happy.
-   Glade never actually needs to use this return value.
- */
-GType
-psppire_var_ptr_get_type (void)
-{
-  return 0;
-}
-
-void
-glade_psppire_var_view_post_create (GladeWidgetAdaptor *adaptor,
-                                   GObject            *object,
-                                   GladeCreateReason   reason)
-{
-  GladeWidget *widget ;
-
-  PsppireVarView *var_view = PSPPIRE_VAR_VIEW (object);
-
-  g_return_if_fail (PSPPIRE_IS_VAR_VIEW (var_view));
-
-  widget = glade_widget_get_from_gobject (GTK_WIDGET (var_view));
-  if (!widget)
-    return;
-
-  if (reason == GLADE_CREATE_USER)
-    {
-      /* HIG complient border-width defaults on var_views */
-      glade_widget_property_set (widget, "border-width", 5);
-    }
-}
-
-
-GtkWidget *
-glade_psppire_var_view_get_internal_child (GladeWidgetAdaptor  *adaptor,
-                                        PsppireVarView       *var_view,
-                                        const gchar         *name)
-{
-#if DEBUGGING
-  g_print ("%s\n", __FUNCTION__);
-#endif
-  return GTK_WIDGET (var_view);
-}
-
-
-
-void
-glade_psppire_var_view_set_property (GladeWidgetAdaptor *adaptor,
-                                    GObject            *object,
-                                    const gchar        *id,
-                                    const GValue       *value)
-{
-#if DEBUGGING
-  g_print ("%s(%p) Type=\"%s\" Id=\"%s\"\n", __FUNCTION__, object,
-          G_OBJECT_TYPE_NAME( object ),
-          id);
-#endif
-
-  GWA_GET_CLASS (GTK_TYPE_WINDOW)->set_property (adaptor, object,
-                                                id, value);
-}
-
-
-GList *
-glade_psppire_var_view_get_children (GladeWidgetAdaptor  *adaptor,
-                                    PsppireVarView  *dv)
-{
-  GList *list = NULL;
-
-  g_return_val_if_fail (PSPPIRE_IS_VAR_VIEW (dv), NULL);
-
-  list = glade_util_container_get_all_children (GTK_CONTAINER (dv));
-
-  return list;
-}