X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fwidgets.c;h=f6dbede80fe31454a3fe80e3ec1ac6be9341231b;hb=5166b8309e1fec33d5122de360ba212ad3107a2c;hp=979224fe4152331227d6597cf3259e08fb996cb5;hpb=7fbfc32fc3c636959b0a25b3e76609f86519e84a;p=pspp diff --git a/src/ui/gui/widgets.c b/src/ui/gui/widgets.c index 979224fe41..f6dbede80f 100644 --- a/src/ui/gui/widgets.c +++ b/src/ui/gui/widgets.c @@ -1,5 +1,7 @@ #include +#include + #include "widgets.h" @@ -10,6 +12,24 @@ #include "psppire-keypad.h" #include "psppire-acr.h" #include "psppire-dictview.h" +#include "psppire-var-view.h" +#include "psppire-val-chooser.h" + +#include "psppire-dialog-action-correlation.h" +#include "psppire-dialog-action-descriptives.h" +#include "psppire-dialog-action-examine.h" +#include "psppire-dialog-action-factor.h" +#include "psppire-dialog-action-indep-samps.h" +#include "psppire-dialog-action-kmeans.h" +#include "psppire-dialog-action-means.h" +#include "psppire-means-layer.h" +#include "psppire-dialog-action-rank.h" +#include "psppire-dialog-action-regression.h" +#include "psppire-dialog-action-reliability.h" +#include "psppire-dialog-action-roc.h" +#include "psppire-dialog-action-sort.h" +#include "psppire-dialog-action-var-info.h" +#include "psppire-value-entry.h" /* Any custom widgets which are to be used in GtkBuilder ui files @@ -18,6 +38,7 @@ void preregister_widgets (void) { + psppire_val_chooser_get_type (); psppire_dialog_get_type (); psppire_selector_get_type (); psppire_vbutton_box_get_type (); @@ -25,4 +46,25 @@ preregister_widgets (void) psppire_keypad_get_type (); psppire_acr_get_type (); psppire_dict_view_get_type (); + psppire_var_view_get_type (); + psppire_value_entry_get_type (); + + psppire_dialog_action_correlation_get_type (); + psppire_dialog_action_descriptives_get_type (); + psppire_dialog_action_examine_get_type (); + psppire_dialog_action_factor_get_type (); + psppire_dialog_action_kmeans_get_type (); + psppire_dialog_action_means_get_type (); + psppire_dialog_action_indep_samps_get_type (); + psppire_means_layer_get_type (); + psppire_dialog_action_var_info_get_type (); + psppire_dialog_action_rank_get_type (); + psppire_dialog_action_reliability_get_type (); + psppire_dialog_action_regression_get_type (); + psppire_dialog_action_roc_get_type (); + psppire_dialog_action_sort_get_type (); + + /* This seems to be necessary on Cygwin. + It ought not to be necessary. Having it here can't do any harm. */ + (void) gtk_source_view_get_type (); }