diff options
| author | Pietro Gagliardi <[email protected]> | 2015-01-09 22:00:21 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-01-09 22:00:21 -0500 |
| commit | 3a35ac63b57ddcb93027d4c0c1deeb34a18d9bf2 (patch) | |
| tree | efce02d3a4688def31194a545f88b108e646fbec /gtkdtp/dtp.h | |
| parent | fe42db6ebd9a5d4defad8ef8fb82cc82ab2b1226 (diff) | |
Added the beginning of an experimental date-time picker implementation for GTK+.
Diffstat (limited to 'gtkdtp/dtp.h')
| -rw-r--r-- | gtkdtp/dtp.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gtkdtp/dtp.h b/gtkdtp/dtp.h new file mode 100644 index 0000000..3c936c6 --- /dev/null +++ b/gtkdtp/dtp.h @@ -0,0 +1,21 @@ +// 9 january 2015 +#define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_32 +#define GLIB_VERSION_MAX_ALLOWED GLIB_VERSION_2_32 +#define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_4 +#define GDK_VERSION_MAX_ALLOWED GDK_VERSION_3_4 +#include <gtk/gtk.h> + +typedef struct goDateTimePicker goDateTimePicker; +typedef struct goDateTimePickerClass goDateTimePickerClass; +typedef struct goDateTimePickerPrivate goDateTimePickerPrivate; + +struct goDateTimePicker { + GtkBox parent_instance; + goDateTimePickerPrivate *priv; +}; + +struct goDateTimePickerClass { + GtkBoxClass parent_class; +}; + +GType goDateTimePicker_get_type(void); |
