Converted Sort 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-sort.h"
22 #include "psppire-dialog-action-var-info.h"
23
24
25 /* Any custom widgets which are to be used in GtkBuilder ui files
26    need to be preregistered, otherwise GtkBuilder refuses to 
27    acknowledge their existence. */
28 void
29 preregister_widgets (void)
30 {
31   psppire_val_chooser_get_type ();
32   psppire_dialog_get_type ();
33   psppire_selector_get_type ();
34   psppire_vbutton_box_get_type ();
35   psppire_hbutton_box_get_type ();
36   psppire_keypad_get_type ();
37   psppire_acr_get_type ();
38   psppire_dict_view_get_type ();
39   psppire_var_view_get_type ();
40
41   psppire_dialog_action_correlation_get_type ();
42   psppire_dialog_action_descriptives_get_type ();
43   psppire_dialog_action_kmeans_get_type ();
44   psppire_dialog_action_var_info_get_type ();
45   psppire_dialog_action_reliability_get_type ();
46   psppire_dialog_action_roc_get_type ();
47   psppire_dialog_action_sort_get_type ();
48 }