X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-data-store.h;h=ed4f0fd17c65f9f7ca4ea8942d0c47b7a34b7252;hb=32884aab5da9ba8455d482dc1f52989ff7de4ee6;hp=8e29db33ab9033311b6b662b71c301bb51315ead;hpb=3a810a0bc874aafa8496ed5b24b86f2afffc64be;p=pspp-builds.git diff --git a/src/ui/gui/psppire-data-store.h b/src/ui/gui/psppire-data-store.h index 8e29db33..ed4f0fd1 100644 --- a/src/ui/gui/psppire-data-store.h +++ b/src/ui/gui/psppire-data-store.h @@ -56,6 +56,26 @@ typedef struct _PsppireDataStoreClass PsppireDataStoreClass; struct dictionary; + +enum cf_signal_handler { + CASES_DELETED, + CASE_INSERTED, + CASE_CHANGED, + n_cf_signals +}; + + +enum dict_signal_handler { + VARIABLE_INSERTED, + VARIABLE_CHANGED, + VARIABLE_DELETED, + SIZE_CHANGED, + n_dict_signals +}; + +void do_this_thing (PsppireDict *, struct dictionary *, void *); + + struct _PsppireDataStore { GObject parent; @@ -72,6 +92,9 @@ struct _PsppireDataStore /* Geometry */ gint margin_width; + + gint cf_handler_id [n_cf_signals]; + gint dict_handler_id [n_dict_signals]; }; struct _PsppireDataStoreClass