1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2007, 2010, 2011 Free Software Foundation
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.
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.
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/>. */
18 #ifndef __PSPPIRE_DIALOG_H__
19 #define __PSPPIRE_DIALOG_H__
23 #include <glib-object.h>
27 #define PSPPIRE_RESPONSE_PASTE 1
28 #define PSPPIRE_RESPONSE_GOTO 2
29 #define PSPPIRE_RESPONSE_CONTINUE 3
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))
40 typedef struct _PsppireDialog PsppireDialog;
41 typedef struct _PsppireDialogClass PsppireDialogClass;
43 typedef gboolean (*ContentsAreValid) (gpointer);
63 ContentsAreValid contents_are_valid;
64 gpointer validity_data;
66 PsppireOrientation orientation;
69 struct _PsppireDialogClass
71 GtkWindowClass parent_class;
75 GType psppire_dialog_get_type (void);
76 GtkWidget* psppire_dialog_new (void);
77 void psppire_dialog_reload (PsppireDialog *);
78 void psppire_dialog_help (PsppireDialog *);
79 void psppire_dialog_close (PsppireDialog *);
80 gint psppire_dialog_run (PsppireDialog *);
81 void psppire_dialog_set_valid_predicate (PsppireDialog *,
84 void psppire_dialog_notify_change (PsppireDialog *);
88 GType psppire_orientation_get_type (void);
91 #define PSPPIRE_TYPE_ORIENTATION (psppire_orientation_get_type ())
96 #endif /* __PSPPIRE_DIALOG_H__ */