Add PsppireValueEntry to the list of pre-declared widgets
[pspp] / 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-examine.h"
19 #include "psppire-dialog-action-kmeans.h"
20 #include "psppire-dialog-action-means.h"
21 #include "psppire-means-layer.h"
22 #include "psppire-dialog-action-reliability.h"
23 #include "psppire-dialog-action-roc.h"
24 #include "psppire-dialog-action-sort.h"
25 #include "psppire-dialog-action-var-info.h"
26 #include "psppire-value-entry.h"
27
28
29 /* Any custom widgets which are to be used in GtkBuilder ui files
30    need to be preregistered, otherwise GtkBuilder refuses to 
31    acknowledge their existence. */
32 void
33 preregister_widgets (void)
34 {
35   psppire_val_chooser_get_type ();
36   psppire_dialog_get_type ();
37   psppire_selector_get_type ();
38   psppire_vbutton_box_get_type ();
39   psppire_hbutton_box_get_type ();
40   psppire_keypad_get_type ();
41   psppire_acr_get_type ();
42   psppire_dict_view_get_type ();
43   psppire_var_view_get_type ();
44   psppire_value_entry_get_type ();
45
46   psppire_dialog_action_correlation_get_type ();
47   psppire_dialog_action_descriptives_get_type ();
48   psppire_dialog_action_examine_get_type ();
49   psppire_dialog_action_kmeans_get_type ();
50   psppire_dialog_action_means_get_type ();
51   psppire_means_layer_get_type ();
52   psppire_dialog_action_var_info_get_type ();
53   psppire_dialog_action_reliability_get_type ();
54   psppire_dialog_action_roc_get_type ();
55   psppire_dialog_action_sort_get_type ();
56 }