Fixed bug in value labels dialog box
[pspp-builds.git] / src / ui / gui / val-labs-dialog.h
index be5580f0d80f40a09a26238851283adf06b4e26c..e11b43305f64e5eb43d6a8cf074a86636081e8bb 100644 (file)
 
 struct val_labs;
 
-struct val_labs_dialog
-{
-  GtkWidget *window;
 
+struct val_labs_dialog * val_labs_dialog_create (GladeXML *);
 
-  /* The variable to be updated */
-  struct variable *pv;
-
-  /* Local copy of labels */
-  struct val_labs *labs;
-
-  /* Actions */
-  GtkWidget *ok;
-  GtkWidget *add_button;
-  GtkWidget *remove_button;
-  GtkWidget *change_button;
-
-  /* Entry Boxes */
-  GtkWidget *value_entry;
-  GtkWidget *label_entry;
-
-  /* Signal handler ids */
-  gint change_handler_id;
-  gint value_handler_id;
-
-  GtkWidget *treeview;
-};
-
-
-
-
-struct val_labs_dialog * val_labs_dialog_create(GladeXML *xml);
-
-void val_labs_dialog_show(struct val_labs_dialog *dialog);
+void val_labs_dialog_show (struct val_labs_dialog *);
 
+void val_labs_dialog_set_target_variable (struct val_labs_dialog *,
+                                         struct variable *);
 
 #endif