1 /*
2  * Copyright (C) 2009 - 2011 Vivien Malerba <malerba@gnome-db.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19 
20 
21 #ifndef __GDAUI_ENTRY_DATE_H_
22 #define __GDAUI_ENTRY_DATE_H_
23 
testNaN(FMinFunc func)24 #include "gdaui-entry-common-time.h"
25 
26 G_BEGIN_DECLS
27 
28 #define GDAUI_TYPE_ENTRY_DATE          (gdaui_entry_date_get_type())
29 #define GDAUI_ENTRY_DATE(obj)          G_TYPE_CHECK_INSTANCE_CAST (obj, gdaui_entry_date_get_type(), GdauiEntryDate)
30 #define GDAUI_ENTRY_DATE_CLASS(klass)  G_TYPE_CHECK_CLASS_CAST (klass, gdaui_entry_date_get_type (), GdauiEntryDateClass)
31 #define GDAUI_IS_ENTRY_DATE(obj)       G_TYPE_CHECK_INSTANCE_TYPE (obj, gdaui_entry_date_get_type ())
32 
33 
34 typedef struct _GdauiEntryDate GdauiEntryDate;
35 typedef struct _GdauiEntryDateClass GdauiEntryDateClass;
36 typedef struct _GdauiEntryDatePrivate GdauiEntryDatePrivate;
37 
38 
39 /* struct for the object's data */
40 struct _GdauiEntryDate
41 {
testNegInfArg(FMinFunc func)42 	GdauiEntryCommonTime           object;
43 };
44 
45 /* struct for the object's class */
46 struct _GdauiEntryDateClass
47 {
48 	GdauiEntryCommonTimeClass      parent_class;
49 };
testBothZero(FMinFunc func)50 
51 GType        gdaui_entry_date_get_type        (void) G_GNUC_CONST;
52 GtkWidget   *gdaui_entry_date_new             (GdaDataHandler *dh);
53 
54 
55 G_END_DECLS
56 
testRange(FMinFunc func)57 #endif
58