'smart qotes' now will replace '<', '>' and '&' inside 'pre' and 'code' tags
[k8lowj.git] / src / datesel.h
bloba232c8ab45ec15466601962448cd18dca72cbf41
1 /* logjam - a GTK client for LiveJournal.
2 * Copyright (C) 2000-2003 Evan Martin <evan@livejournal.com>
4 * vim: tabstop=4 shiftwidth=4 noexpandtab :
5 */
7 #ifndef datesel_h
8 #define datesel_h
10 #include <gtk/gtkoptionmenu.h>
12 #define DATESEL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), datesel_get_type(), DateSel))
14 typedef struct _DateSel DateSel;
16 GType datesel_get_type(void);
17 GtkWidget* datesel_new(void);
19 void datesel_get_tm(DateSel *ds, struct tm *ptm);
20 void datesel_set_tm(DateSel *ds, struct tm *ptm);
21 gboolean datesel_get_backdated(DateSel *ds);
22 void datesel_set_backdated(DateSel *ds, gboolean backdated);
24 #endif /* datesel_h */