da5935cb7b7c528d77ce87b7efc93749ae4d60b3
[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-var-info.h"
20
21
22 /* Any custom widgets which are to be used in GtkBuilder ui files
23    need to be preregistered, otherwise GtkBuilder refuses to 
24    acknowledge their existence. */
25 void
26 preregister_widgets (void)
27 {
28   psppire_val_chooser_get_type ();
29   psppire_dialog_get_type ();
30   psppire_selector_get_type ();
31   psppire_vbutton_box_get_type ();
32   psppire_hbutton_box_get_type ();
33   psppire_keypad_get_type ();
34   psppire_acr_get_type ();
35   psppire_dict_view_get_type ();
36   psppire_var_view_get_type ();
37
38   psppire_dialog_action_correlation_get_type ();
39   psppire_dialog_action_descriptives_get_type ();
40   psppire_dialog_action_kmeans_get_type ();
41   psppire_dialog_action_var_info_get_type ();
42 }