Converted reliability dialog to a PsppireDialogAction object
[pspp-builds.git] / src / ui / gui / widgets.c
1 #include <config.h>
2
3 #include "widgets.h"
4
5
6 #include "psppire-dialog.h"
7 #include "psppire-selector.h"
8 #include "psppire-vbuttonbox.h"
9 #include "psppire-hbuttonbox.h"
10 #include "psppire-keypad.h"
11 #include "psppire-acr.h"
12 #include "psppire-dictview.h"
13 #include "psppire-var-view.h"
14 #include "psppire-val-chooser.h"
15
16 #include "psppire-dialog-action-correlation.h"
17 #include "psppire-dialog-action-descriptives.h"
18 #include "psppire-dialog-action-kmeans.h"
19 #include "psppire-dialog-action-reliability.h"
20 #include "psppire-dialog-action-roc.h"
21 #include "psppire-dialog-action-var-info.h"
22
23
24 /* Any custom widgets which are to be used in GtkBuilder ui files
25    need to be preregistered, otherwise GtkBuilder refuses to 
26    acknowledge their existence. */
27 void
28 preregister_widgets (void)
29 {
30   psppire_val_chooser_get_type ();
31   psppire_dialog_get_type ();
32   psppire_selector_get_type ();
33   psppire_vbutton_box_get_type ();
34   psppire_hbutton_box_get_type ();
35   psppire_keypad_get_type ();
36   psppire_acr_get_type ();
37   psppire_dict_view_get_type ();
38   psppire_var_view_get_type ();
39
40   psppire_dialog_action_correlation_get_type ();
41   psppire_dialog_action_descriptives_get_type ();
42   psppire_dialog_action_kmeans_get_type ();
43   psppire_dialog_action_var_info_get_type ();
44   psppire_dialog_action_reliability_get_type ();
45   psppire_dialog_action_roc_get_type ();
46 }