removed references to psppire-dialog orientation property
[pspp] / src / ui / gui / psppire-dialog.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2007, 2010, 2011, 2012, 2015  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/gtk.h>
25 #include "psppire-window-base.h"
26
27
28 #define PSPPIRE_RESPONSE_PASTE 1
29 #define PSPPIRE_RESPONSE_GOTO 2
30 #define PSPPIRE_RESPONSE_CONTINUE 3
31
32 G_BEGIN_DECLS
33
34 #define PSPPIRE_TYPE_DIALOG            (psppire_dialog_get_type ())
35 #define PSPPIRE_DIALOG(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), PSPPIRE_TYPE_DIALOG, PsppireDialog))
36 #define PSPPIRE_DIALOG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), PSPPIRE_TYPE_DIALOG, PsppireDialogClass))
37 #define PSPPIRE_IS_DIALOG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_TYPE_DIALOG))
38 #define PSPPIRE_IS_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_TYPE_DIALOG))
39
40
41 typedef struct _PsppireDialog       PsppireDialog;
42 typedef struct _PsppireDialogClass  PsppireDialogClass;
43
44 typedef gboolean (*ContentsAreValid) (gpointer);
45
46 struct _PsppireDialog
47 {
48   PsppireWindowBase window;
49
50   /* Private */
51   GMainLoop *loop;
52   gint response;
53
54   ContentsAreValid contents_are_valid;
55   gpointer validity_data;
56   ContentsAreValid contents_are_acceptable;
57   gpointer acceptable_data;
58   gboolean slidable;
59   gchar *help_page;
60
61 };
62
63 struct _PsppireDialogClass
64 {
65   PsppireWindowBaseClass parent_class;
66 };
67
68
69 GType          psppire_dialog_get_type        (void);
70 GtkWidget*     psppire_dialog_new             (void);
71 void           psppire_dialog_reload          (PsppireDialog *);
72 void           psppire_dialog_help            (PsppireDialog *);
73 void           psppire_dialog_close           (PsppireDialog *);
74 gint           psppire_dialog_run             (PsppireDialog *);
75 void           psppire_dialog_set_valid_predicate (PsppireDialog *,
76                                                    ContentsAreValid,
77                                                    gpointer );
78 void           psppire_dialog_set_accept_predicate (PsppireDialog *,
79                                                     ContentsAreValid,
80                                                     gpointer );
81 gboolean       psppire_dialog_is_acceptable (const PsppireDialog *);
82 void           psppire_dialog_notify_change (PsppireDialog *);
83
84 G_END_DECLS
85
86 #endif /* __PSPPIRE_DIALOG_H__ */
87