Added new files resulting from directory restructuring.
[pspp-builds.git] / src / ui / gui / val-labs-dialog.h
1 /* 
2     PSPPIRE --- A Graphical User Interface for PSPP
3     Copyright (C) 2005  Free Software Foundation
4     Written by John Darrington
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19     02110-1301, USA. */
20
21
22
23 #ifndef __PSPPIRE_VAL_LABS_DIALOG_H
24 #define __PSPPIRE_VAL_LABS_DIALOG_H
25
26
27 /*  This module describes the behaviour of the Value Labels dialog box,
28     used for input of the value labels in the variable sheet */
29
30
31 #include <gtk/gtk.h>
32 #include <glade/glade.h>
33
34
35 struct val_labs;
36
37 struct val_labs_dialog
38 {
39   GtkWidget *window;
40
41
42   /* The variable to be updated */
43   struct PsppireVariable *pv;
44
45   /* Local copy of labels */
46   struct val_labs *labs;
47
48   /* Actions */
49   GtkWidget *ok;
50   GtkWidget *add_button;
51   GtkWidget *remove_button;
52   GtkWidget *change_button;
53
54   /* Entry Boxes */
55   GtkWidget *value_entry;
56   GtkWidget *label_entry;
57
58   /* Signal handler ids */
59   gint change_handler_id;
60   gint value_handler_id;
61
62   GtkWidget *treeview;
63 };
64
65
66
67
68 struct val_labs_dialog * val_labs_dialog_create(GladeXML *xml);
69
70 void val_labs_dialog_show(struct val_labs_dialog *dialog);
71
72
73 #endif