Implemented a dialog box for the ONEWAY command.
[pspp-builds.git] / src / ui / gui / psppire-acr.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2007 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17
18 #ifndef __PSPPIRE_ACR_H__
19 #define __PSPPIRE_ACR_H__
20
21 /*
22   This widget is a GtkBox which looks roughly like:
23
24   +-----------------------------+
25   |+------------+  +----------+ |
26   ||   Add      |  |          | |
27   |+------------+  |          | |
28   |                |          | |
29   |+------------+  |          | |
30   ||   Edit     |  |          | |
31   |+------------+  |          | |
32   |                |          | |
33   |+------------+  |          | |
34   ||  Remove    |  |          | |
35   |+------------+  +----------+ |
36   +-----------------------------+
37
38   It interacts with a GtkEntry, which  allows items to be added to its internal list.
39   This implementation deals only with g_double values.
40  */
41
42
43 #include <glib.h>
44 #include <glib-object.h>
45 #include <gtk/gtkhbox.h>
46 #include <gtk/gtkentry.h>
47 #include <gtk/gtktreeselection.h>
48
49
50 G_BEGIN_DECLS
51
52 #define PSPPIRE_ACR_TYPE            (psppire_acr_get_type ())
53 #define PSPPIRE_ACR(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_ACR_TYPE, PsppireAcr))
54 #define PSPPIRE_ACR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), PSPPIRE_ACR_TYPE, PsppireAcrClass))
55 #define PSPPIRE_IS_ACR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_ACR_TYPE))
56 #define PSPPIRE_IS_ACR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_ACR_TYPE))
57
58
59 typedef struct _PsppireAcr       PsppireAcr;
60 typedef struct _PsppireAcrClass  PsppireAcrClass;
61
62 /* All members are private. */
63 struct _PsppireAcr
64 {
65   GtkHBox parent;
66
67   /* <private> */
68   GtkEntry *entry;
69   GtkListStore *list_store;
70
71   GtkTreeView *tv;
72   GtkTreeSelection *selection;
73   GtkWidget *add_button;
74   GtkWidget *change_button;
75   GtkWidget *remove_button;
76 };
77
78
79 struct _PsppireAcrClass
80 {
81   GtkHBoxClass parent_class;
82 };
83
84
85 GType          psppire_acr_get_type        (void);
86 GtkWidget*     psppire_acr_new             (void);
87
88 void           psppire_acr_set_entry       (PsppireAcr *, GtkEntry *);
89 void           psppire_acr_set_model       (PsppireAcr *, GtkListStore *);
90
91 G_END_DECLS
92
93 #endif /* __PSPPIRE_ACR_H__ */