1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2007, 2010, 2011, 2012, 2015 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>
25 #include "psppire-window-base.h"
28 #define PSPPIRE_RESPONSE_PASTE 1
29 #define PSPPIRE_RESPONSE_GOTO 2
30 #define PSPPIRE_RESPONSE_CONTINUE 3
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))
41 typedef struct _PsppireDialog PsppireDialog;
42 typedef struct _PsppireDialogClass PsppireDialogClass;
44 typedef gboolean (*ContentsAreValid) (gpointer);
48 PsppireWindowBase window;
54 ContentsAreValid contents_are_valid;
55 gpointer validity_data;
56 ContentsAreValid contents_are_acceptable;
57 gpointer acceptable_data;
63 struct _PsppireDialogClass
65 PsppireWindowBaseClass parent_class;
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 *,
78 void psppire_dialog_set_accept_predicate (PsppireDialog *,
81 gboolean psppire_dialog_is_acceptable (const PsppireDialog *);
82 void psppire_dialog_notify_change (PsppireDialog *);
86 #endif /* __PSPPIRE_DIALOG_H__ */