Fixed bug reporting the significance of paired value t-test.
[pspp-builds.git] / src / ui / gui / psppire-dialog.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2007  Free Software Foundation
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_DIALOG_H__
19 #define __PSPPIRE_DIALOG_H__
20
21
22 #include <glib.h>
23 #include <glib-object.h>
24 #include <gtk/gtkwindow.h>
25
26
27 #define PSPPIRE_RESPONSE_PASTE 1
28 #define PSPPIRE_RESPONSE_GOTO 2
29 #define PSPPIRE_RESPONSE_CONTINUE 3
30
31 G_BEGIN_DECLS
32
33 #define PSPPIRE_DIALOG_TYPE            (psppire_dialog_get_type ())
34 #define PSPPIRE_DIALOG(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_DIALOG_TYPE, PsppireDialog))
35 #define PSPPIRE_DIALOG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), PSPPIRE_DIALOG_TYPE, PsppireDialogClass))
36 #define PSPPIRE_IS_DIALOG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_DIALOG_TYPE))
37 #define PSPPIRE_IS_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_DIALOG_TYPE))
38
39
40 typedef struct _PsppireDialog       PsppireDialog;
41 typedef struct _PsppireDialogClass  PsppireDialogClass;
42
43 typedef gboolean (*ContentsAreValid) (gpointer);
44
45
46 struct _PsppireDialog
47 {
48   GtkWindow window;
49   GtkWidget *box;
50
51   /* Private */
52   GMainLoop *loop;
53   gint response;
54
55   ContentsAreValid contents_are_valid;
56   gpointer validity_data;
57 };
58
59 struct _PsppireDialogClass
60 {
61   GtkWindowClass parent_class;
62 };
63
64
65 GType          psppire_dialog_get_type        (void);
66 GtkWidget*     psppire_dialog_new             (void);
67 void           psppire_dialog_reload          (PsppireDialog *);
68 void           psppire_dialog_close           (PsppireDialog *);
69 gint           psppire_dialog_run             (PsppireDialog *);
70 void           psppire_dialog_set_valid_predicate (PsppireDialog *,
71                                                    ContentsAreValid,
72                                                    gpointer );
73 void           psppire_dialog_notify_change (PsppireDialog *);
74
75
76
77 GType psppire_orientation_get_type (void);
78
79
80 typedef enum
81   {
82     PSPPIRE_HORIZONTAL,
83     PSPPIRE_VERTICAL,
84     PSPPIRE_TABULAR
85   } PsppireOrientation;
86
87 #define G_TYPE_PSPPIRE_ORIENTATION (psppire_orientation_get_type ())
88
89
90 G_END_DECLS
91
92 #endif /* __PSPPIRE_DIALOG_H__ */
93