gui: Include only <gtk/gtk.h> to use GTK+.
[pspp-builds.git] / src / ui / gui / psppire-acr.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2007, 2010 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 an external widget, such as a GtkEntry.
39   It maintains a list of items controlled by the three buttons.
40   This implementation deals only with g_double values.
41  */
42
43
44 #include <glib.h>
45 #include <glib-object.h>
46 #include <gtk/gtk.h>
47
48
49 G_BEGIN_DECLS
50
51 #define PSPPIRE_ACR_TYPE            (psppire_acr_get_type ())
52 #define PSPPIRE_ACR(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_ACR_TYPE, PsppireAcr))
53 #define PSPPIRE_ACR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), PSPPIRE_ACR_TYPE, PsppireAcrClass))
54 #define PSPPIRE_IS_ACR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_ACR_TYPE))
55 #define PSPPIRE_IS_ACR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_ACR_TYPE))
56
57
58 typedef struct _PsppireAcr       PsppireAcr;
59 typedef struct _PsppireAcrClass  PsppireAcrClass;
60
61 typedef gboolean (*GetValueFunc) (gint, GValue *, gpointer);
62 typedef gboolean (*EnabledFunc) (gpointer);
63 typedef void (*UpdateCallbackFunc) (gpointer);
64
65 struct _PsppireAcr
66 {
67   GtkHBox parent;
68
69
70   GtkListStore *list_store;
71
72   GtkTreeView *tv;
73   GtkTreeSelection *selection;
74
75   /* The buttons */
76   GtkWidget *add_button;
77   GtkWidget *change_button;
78   GtkWidget *remove_button;
79
80   GetValueFunc get_value;
81   gpointer get_value_data;
82
83   EnabledFunc enabled;
84   gpointer enabled_data;
85
86   UpdateCallbackFunc update;
87   gpointer update_data;
88 };
89
90
91 struct _PsppireAcrClass
92 {
93   GtkHBoxClass parent_class;
94 };
95
96
97
98 GType       psppire_acr_get_type        (void);
99 GtkWidget*  psppire_acr_new             (void);
100
101 void        psppire_acr_set_model       (PsppireAcr *, GtkListStore *);
102 void        psppire_acr_set_get_value_func (PsppireAcr *, GetValueFunc,
103                                             gpointer);
104
105 void        psppire_acr_set_enable_func (PsppireAcr *, EnabledFunc, gpointer);
106
107 void        psppire_acr_set_enabled (PsppireAcr *, gboolean);
108 void        psppire_acr_set_entry  (PsppireAcr *, GtkEntry *);
109
110
111
112 G_END_DECLS
113
114 #endif /* __PSPPIRE_ACR_H__ */