Select Cases Dialog: Convert to PsppireDialogAction
[pspp] / src / ui / gui / psppire-dialog-action-select.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 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 #include <glib-object.h>
19 #include <glib.h>
20
21 #include "psppire-dialog-action.h"
22
23 #ifndef __PSPPIRE_DIALOG_ACTION_SELECT_H__
24 #define __PSPPIRE_DIALOG_ACTION_SELECT_H__
25
26 G_BEGIN_DECLS
27
28
29 #define PSPPIRE_TYPE_DIALOG_ACTION_SELECT (psppire_dialog_action_select_get_type ())
30
31 #define PSPPIRE_DIALOG_ACTION_SELECT(obj)       \
32                      (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
33                                                   PSPPIRE_TYPE_DIALOG_ACTION_SELECT, PsppireDialogActionSelect))
34
35 #define PSPPIRE_DIALOG_ACTION_SELECT_CLASS(klass) \
36                      (G_TYPE_CHECK_CLASS_CAST ((klass), \
37                                  PSPPIRE_TYPE_DIALOG_ACTION_SELECT, \
38                                  PsppireDialogActionSelectClass))
39
40
41 #define PSPPIRE_IS_DIALOG_ACTION_SELECT(obj) \
42                      (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_TYPE_DIALOG_ACTION_SELECT))
43
44 #define PSPPIRE_IS_DIALOG_ACTION_SELECT_CLASS(klass) \
45                      (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_TYPE_DIALOG_ACTION_SELECT))
46
47
48 #define PSPPIRE_DIALOG_ACTION_SELECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
49                                    PSPPIRE_TYPE_DIALOG_ACTION_SELECT, \
50                                    PsppireDialogActionSelectClass))
51
52 typedef struct _PsppireDialogActionSelect       PsppireDialogActionSelect;
53 typedef struct _PsppireDialogActionSelectClass  PsppireDialogActionSelectClass;
54
55
56 struct _PsppireDialogActionSelect
57 {
58   PsppireDialogAction parent;
59
60   /*< private >*/
61   GtkWidget *spinbutton ;
62   GtkWidget *spinbutton1 ;
63   GtkWidget *spinbutton2 ;
64
65   GtkWidget *hbox1;
66   GtkWidget *hbox2;
67
68   GtkWidget *rsample_dialog;
69   GtkWidget *percent        ; 
70   GtkWidget *sample_n_cases ; 
71   GtkWidget *table          ;
72   GtkWidget *l0 ;
73   GtkWidget *l1 ;
74   GtkWidget *radiobutton_range ;
75   GtkWidget *first ;
76   GtkWidget *last ;
77   GtkWidget *radiobutton_sample;
78   GtkWidget *radiobutton_all;
79   GtkWidget *entry;
80   GtkWidget *radiobutton_filter_variable;
81   GtkWidget *radiobutton_delete;
82   GtkWidget *radiobutton_filter;
83   GtkWidget *range_subdialog;
84
85 };
86
87
88 struct _PsppireDialogActionSelectClass
89 {
90   PsppireDialogActionClass parent_class;
91 };
92
93
94 GType psppire_dialog_action_select_get_type (void) ;
95
96 G_END_DECLS
97
98 #endif /* __PSPPIRE_DIALOG_ACTION_SELECT_H__ */