]> saetta.ns0.it Git - libgtkcalendarex/commitdiff
Added skeleton files for Calendar, Catgory and Event.
authorAndrea Zagli <azagli@libero.it>
Sun, 7 Nov 2010 08:13:59 +0000 (09:13 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 7 Nov 2010 08:13:59 +0000 (09:13 +0100)
src/Makefile.am
src/gtkcalex.h
src/gtkcalexcalendar.c [new file with mode: 0644]
src/gtkcalexcalendar.h [new file with mode: 0644]
src/gtkcalexcategory.c [new file with mode: 0644]
src/gtkcalexcategory.h [new file with mode: 0644]
src/gtkcalexevent.c [new file with mode: 0644]
src/gtkcalexevent.h [new file with mode: 0644]
src/libgtkcalendarex.h
tests/test.c
tests/test.ui

index ce6d4cf1846df4b09f3a1cc69f7d10dadf8badf2..b711d34ec04c51880229c63f9441bf8231037d8d 100644 (file)
@@ -9,6 +9,9 @@ libgtkcalendarex_la_LDFLAGS = -no-undefined
 
 libgtkcalendarex_la_SOURCES = \
                               gtkcalex.c \
+                              gtkcalexcalendar.c \
+                              gtkcalexcategory.c \
+                              gtkcalexevent.c \
                               gtkcalexviewday.c \
                               gtkcalexviewmonth.c \
                               gtkcalexviewweek.c
@@ -16,6 +19,9 @@ libgtkcalendarex_la_SOURCES = \
 include_HEADERS = \
                   libgtkcalendarex.h \
                   gtkcalex.h \
+                  gtkcalexcalendar.h \
+                  gtkcalexcategory.h \
+                  gtkcalexevent.h \
                   gtkcalexviewday.h \
                   gtkcalexviewmonth.h \
                   gtkcalexviewweek.h
index 14d3a0cfddd919fe5cff9049ff2204f29dd4d990..8f4acaf5fa1aa4b543e9f882bffd01b47481878f 100644 (file)
 #include <glib.h>
 #include <glib-object.h>
 
+#include "gtkcalexcalendar.h"
+#include "gtkcalexcategory.h"
+#include "gtkcalexevent.h"
+
 G_BEGIN_DECLS
 
 
@@ -66,6 +70,17 @@ void gtk_calex_set_view_type (GtkCalEx *calex, GtkCalExViewType type);
 GDate *gtk_calex_get_date (GtkCalEx *calex);
 void gtk_calex_set_date (GtkCalEx *calex, GDate *date);
 
+void gtk_calex_add_calendar (GtkCalEx *calex, GtkCalExCalendar *calendar);
+void gtk_calex_remove_calendar (GtkCalEx *calex, GtkCalExCalendar *calendar);
+
+void gtk_calex_add_category (GtkCalEx *calex, GtkCalExCategory *category);
+void gtk_calex_remove_category (GtkCalEx *calex, GtkCalExCategory *category);
+
+void gtk_calex_add_event (GtkCalEx *calex, GtkCalExEvent *event);
+void gtk_calex_remove_event (GtkCalEx *calex, GtkCalExEvent *event);
+
+GList *gtk_calex_get_events (GtkCalEx *calex);
+
 
 G_END_DECLS
 
diff --git a/src/gtkcalexcalendar.c b/src/gtkcalexcalendar.c
new file mode 100644 (file)
index 0000000..34c6e53
--- /dev/null
@@ -0,0 +1,123 @@
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include <goocanvas.h>
+
+#include "gtkcalexcalendar.h"
+
+enum
+{
+       PROP_0
+};
+
+static void gtk_calex_calendar_class_init (GtkCalExCalendarClass *klass);
+static void gtk_calex_calendar_init (GtkCalExCalendar *gtk_calex_calendar);
+
+static void gtk_calex_calendar_set_property (GObject *object,
+                                    guint property_id,
+                                    const GValue *value,
+                                    GParamSpec *pspec);
+static void gtk_calex_calendar_get_property (GObject *object,
+                                    guint property_id,
+                                    GValue *value,
+                                    GParamSpec *pspec);
+
+static void gtk_calex_calendar_draw (GtkCalExCalendar *gtk_calex_calendar);
+
+
+#define GTK_CALEX_CALENDAR_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_GTK_CALEX_CALENDAR, GtkCalExCalendarPrivate))
+
+typedef struct _GtkCalExCalendarPrivate GtkCalExCalendarPrivate;
+struct _GtkCalExCalendarPrivate
+       {
+               gchar *name;
+               GdkColor *color;
+       };
+
+G_DEFINE_TYPE (GtkCalExCalendar, gtk_calex_calendar, G_TYPE_OBJECT)
+
+static void
+gtk_calex_calendar_class_init (GtkCalExCalendarClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+       g_type_class_add_private (object_class, sizeof (GtkCalExCalendarPrivate));
+
+       object_class->set_property = gtk_calex_calendar_set_property;
+       object_class->get_property = gtk_calex_calendar_get_property;
+}
+
+static void
+gtk_calex_calendar_init (GtkCalExCalendar *gtk_calex_calendar)
+{
+       GtkCalExCalendarPrivate *priv = GTK_CALEX_CALENDAR_GET_PRIVATE (gtk_calex_calendar);
+}
+
+static void
+gtk_calex_calendar_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+       GtkCalExCalendar *gtk_calex_calendar = GTK_CALEX_CALENDAR (object);
+
+       GtkCalExCalendarPrivate *priv = GTK_CALEX_CALENDAR_GET_PRIVATE (gtk_calex_calendar);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+static void
+gtk_calex_calendar_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+{
+       GtkCalExCalendar *gtk_calex_calendar = GTK_CALEX_CALENDAR (object);
+
+       GtkCalExCalendarPrivate *priv = GTK_CALEX_CALENDAR_GET_PRIVATE (gtk_calex_calendar);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+/**
+ * gtk_calex_calendar_new:
+ * @name:
+ * @color:
+ *
+ * Returns: the newly created #GtkCalExCalendar object.
+ */
+GtkCalExCalendar
+*gtk_calex_calendar_new (const gchar *name, GdkColor *color)
+{
+       GtkCalExCalendar *gtk_calex_calendar = GTK_CALEX_CALENDAR (g_object_new (gtk_calex_calendar_get_type (), NULL));
+
+       GtkCalExCalendarPrivate *priv = GTK_CALEX_CALENDAR_GET_PRIVATE (gtk_calex_calendar);
+
+       priv->name = g_strdup (name);
+       priv->color = g_memdup (color, sizeof (GdkColor));
+
+       return gtk_calex_calendar;
+}
diff --git a/src/gtkcalexcalendar.h b/src/gtkcalexcalendar.h
new file mode 100644 (file)
index 0000000..7d61b27
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+ * Copyright (C) 2009-2010 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ */
+
+#ifndef __GTK_CALEX_CALENDAR_H__
+#define __GTK_CALEX_CALENDAR_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+
+#define TYPE_GTK_CALEX_CALENDAR               (gtk_calex_calendar_get_type ())
+#define GTK_CALEX_CALENDAR(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_GTK_CALEX_CALENDAR, GtkCalExCalendar))
+#define GTK_CALEX_CALENDAR_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_GTK_CALEX_CALENDAR, GtkCalExCalendarClass))
+#define IS_GTK_CALEX_CALENDAR(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_GTK_CALEX_CALENDAR))
+#define IS_GTK_CALEX_CALENDAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_GTK_CALEX_CALENDAR))
+#define GTK_CALEX_CALENDAR_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_GTK_CALEX_CALENDAR, GtkCalExCalendarClass))
+
+
+typedef struct _GtkCalExCalendar GtkCalExCalendar;
+typedef struct _GtkCalExCalendarClass GtkCalExCalendarClass;
+
+struct _GtkCalExCalendar
+       {
+               GObject parent;
+       };
+
+struct _GtkCalExCalendarClass
+       {
+               GObjectClass parent_class;
+       };
+
+GType gtk_calex_calendar_get_type (void) G_GNUC_CONST;
+
+
+GtkCalExCalendar *gtk_calex_calendar_new (const gchar *name, GdkColor *color);
+
+
+G_END_DECLS
+
+#endif /* __GTK_CALEX_CALENDAR_H__ */
diff --git a/src/gtkcalexcategory.c b/src/gtkcalexcategory.c
new file mode 100644 (file)
index 0000000..fcc6208
--- /dev/null
@@ -0,0 +1,123 @@
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include <goocanvas.h>
+
+#include "gtkcalexcategory.h"
+
+enum
+{
+       PROP_0
+};
+
+static void gtk_calex_category_class_init (GtkCalExCategoryClass *klass);
+static void gtk_calex_category_init (GtkCalExCategory *gtk_calex_category);
+
+static void gtk_calex_category_set_property (GObject *object,
+                                    guint property_id,
+                                    const GValue *value,
+                                    GParamSpec *pspec);
+static void gtk_calex_category_get_property (GObject *object,
+                                    guint property_id,
+                                    GValue *value,
+                                    GParamSpec *pspec);
+
+static void gtk_calex_category_draw (GtkCalExCategory *gtk_calex_category);
+
+
+#define GTK_CALEX_CATEGORY_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_GTK_CALEX_CATEGORY, GtkCalExCategoryPrivate))
+
+typedef struct _GtkCalExCategoryPrivate GtkCalExCategoryPrivate;
+struct _GtkCalExCategoryPrivate
+       {
+               gchar *name;
+               gchar *icon_filename;
+       };
+
+G_DEFINE_TYPE (GtkCalExCategory, gtk_calex_category, G_TYPE_OBJECT)
+
+static void
+gtk_calex_category_class_init (GtkCalExCategoryClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+       g_type_class_add_private (object_class, sizeof (GtkCalExCategoryPrivate));
+
+       object_class->set_property = gtk_calex_category_set_property;
+       object_class->get_property = gtk_calex_category_get_property;
+}
+
+static void
+gtk_calex_category_init (GtkCalExCategory *gtk_calex_category)
+{
+       GtkCalExCategoryPrivate *priv = GTK_CALEX_CATEGORY_GET_PRIVATE (gtk_calex_category);
+}
+
+static void
+gtk_calex_category_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+       GtkCalExCategory *gtk_calex_category = GTK_CALEX_CATEGORY (object);
+
+       GtkCalExCategoryPrivate *priv = GTK_CALEX_CATEGORY_GET_PRIVATE (gtk_calex_category);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+static void
+gtk_calex_category_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+{
+       GtkCalExCategory *gtk_calex_category = GTK_CALEX_CATEGORY (object);
+
+       GtkCalExCategoryPrivate *priv = GTK_CALEX_CATEGORY_GET_PRIVATE (gtk_calex_category);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+/**
+ * gtk_calex_category_new:
+ * @name:
+ * @icon_filename:
+ *
+ * Returns: the newly created #GtkCalExCategory object.
+ */
+GtkCalExCategory
+*gtk_calex_category_new (const gchar *name, const gchar *icon_filename)
+{
+       GtkCalExCategory *gtk_calex_category = GTK_CALEX_CATEGORY (g_object_new (gtk_calex_category_get_type (), NULL));
+
+       GtkCalExCategoryPrivate *priv = GTK_CALEX_CATEGORY_GET_PRIVATE (gtk_calex_category);
+
+       priv->name = g_strdup (name);
+       priv->icon_filename = g_strdup (icon_filename);
+
+       return gtk_calex_category;
+}
diff --git a/src/gtkcalexcategory.h b/src/gtkcalexcategory.h
new file mode 100644 (file)
index 0000000..05760fc
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+ * Copyright (C) 2009-2010 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ */
+
+#ifndef __GTK_CALEX_CATEGORY_H__
+#define __GTK_CALEX_CATEGORY_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+
+#define TYPE_GTK_CALEX_CATEGORY               (gtk_calex_category_get_type ())
+#define GTK_CALEX_CATEGORY(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_GTK_CALEX_CATEGORY, GtkCalExCategory))
+#define GTK_CALEX_CATEGORY_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_GTK_CALEX_CATEGORY, GtkCalExCategoryClass))
+#define IS_GTK_CALEX_CATEGORY(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_GTK_CALEX_CATEGORY))
+#define IS_GTK_CALEX_CATEGORY_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_GTK_CALEX_CATEGORY))
+#define GTK_CALEX_CATEGORY_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_GTK_CALEX_CATEGORY, GtkCalExCategoryClass))
+
+
+typedef struct _GtkCalExCategory GtkCalExCategory;
+typedef struct _GtkCalExCategoryClass GtkCalExCategoryClass;
+
+struct _GtkCalExCategory
+       {
+               GObject parent;
+       };
+
+struct _GtkCalExCategoryClass
+       {
+               GObjectClass parent_class;
+       };
+
+GType gtk_calex_category_get_type (void) G_GNUC_CONST;
+
+
+GtkCalExCategory *gtk_calex_category_new (const gchar *name, const gchar *icon_filename);
+
+
+G_END_DECLS
+
+#endif /* __GTK_CALEX_CATEGORY_H__ */
diff --git a/src/gtkcalexevent.c b/src/gtkcalexevent.c
new file mode 100644 (file)
index 0000000..7da5727
--- /dev/null
@@ -0,0 +1,123 @@
+/*
+ * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include <goocanvas.h>
+
+#include "gtkcalexevent.h"
+
+enum
+{
+       PROP_0
+};
+
+static void gtk_calex_event_class_init (GtkCalExEventClass *klass);
+static void gtk_calex_event_init (GtkCalExEvent *gtk_calex_event);
+
+static void gtk_calex_event_set_property (GObject *object,
+                                    guint property_id,
+                                    const GValue *value,
+                                    GParamSpec *pspec);
+static void gtk_calex_event_get_property (GObject *object,
+                                    guint property_id,
+                                    GValue *value,
+                                    GParamSpec *pspec);
+
+static void gtk_calex_event_draw (GtkCalExEvent *gtk_calex_event);
+
+
+#define GTK_CALEX_EVENT_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_GTK_CALEX_EVENT, GtkCalExEventPrivate))
+
+typedef struct _GtkCalExEventPrivate GtkCalExEventPrivate;
+struct _GtkCalExEventPrivate
+       {
+               void *foo;
+               /*
+               from_date_time
+               to_date_time
+               calendar
+               categories
+               */
+       };
+
+G_DEFINE_TYPE (GtkCalExEvent, gtk_calex_event, G_TYPE_OBJECT)
+
+static void
+gtk_calex_event_class_init (GtkCalExEventClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+       g_type_class_add_private (object_class, sizeof (GtkCalExEventPrivate));
+
+       object_class->set_property = gtk_calex_event_set_property;
+       object_class->get_property = gtk_calex_event_get_property;
+}
+
+static void
+gtk_calex_event_init (GtkCalExEvent *gtk_calex_event)
+{
+       GtkCalExEventPrivate *priv = GTK_CALEX_EVENT_GET_PRIVATE (gtk_calex_event);
+}
+
+static void
+gtk_calex_event_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+       GtkCalExEvent *gtk_calex_event = GTK_CALEX_EVENT (object);
+
+       GtkCalExEventPrivate *priv = GTK_CALEX_EVENT_GET_PRIVATE (gtk_calex_event);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+static void
+gtk_calex_event_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+{
+       GtkCalExEvent *gtk_calex_event = GTK_CALEX_EVENT (object);
+
+       GtkCalExEventPrivate *priv = GTK_CALEX_EVENT_GET_PRIVATE (gtk_calex_event);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+/**
+ * gtk_calex_event_new:
+ *
+ * Returns: the newly created #GtkCalExEvent object.
+ */
+GtkCalExEvent
+*gtk_calex_event_new ()
+{
+       GtkCalExEvent *gtk_calex_event = GTK_CALEX_EVENT (g_object_new (gtk_calex_event_get_type (), NULL));
+
+       GtkCalExEventPrivate *priv = GTK_CALEX_EVENT_GET_PRIVATE (gtk_calex_event);
+
+       return gtk_calex_event;
+}
diff --git a/src/gtkcalexevent.h b/src/gtkcalexevent.h
new file mode 100644 (file)
index 0000000..b3d6222
--- /dev/null
@@ -0,0 +1,61 @@
+/*
+ * Copyright (C) 2009-2010 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ */
+
+#ifndef __GTK_CALEX_EVENT_H__
+#define __GTK_CALEX_EVENT_H__
+
+#include <glib.h>
+#include <glib-object.h>
+
+#include "gtkcalexcalendar.h"
+#include "gtkcalexcategory.h"
+
+G_BEGIN_DECLS
+
+
+#define TYPE_GTK_CALEX_EVENT               (gtk_calex_event_get_type ())
+#define GTK_CALEX_EVENT(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_GTK_CALEX_EVENT, GtkCalExEvent))
+#define GTK_CALEX_EVENT_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_GTK_CALEX_EVENT, GtkCalExEventClass))
+#define IS_GTK_CALEX_EVENT(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_GTK_CALEX_EVENT))
+#define IS_GTK_CALEX_EVENT_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_GTK_CALEX_EVENT))
+#define GTK_CALEX_EVENT_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_GTK_CALEX_EVENT, GtkCalExEventClass))
+
+
+typedef struct _GtkCalExEvent GtkCalExEvent;
+typedef struct _GtkCalExEventClass GtkCalExEventClass;
+
+struct _GtkCalExEvent
+       {
+               GObject parent;
+       };
+
+struct _GtkCalExEventClass
+       {
+               GObjectClass parent_class;
+       };
+
+GType gtk_calex_event_get_type (void) G_GNUC_CONST;
+
+
+GtkCalExEvent *gtk_calex_event_new (void);
+
+
+G_END_DECLS
+
+#endif /* __GTK_CALEX_EVENT_H__ */
index 70ee2644d17d1cd92689f39910ff9fe03ee7e2b7..fea99972a23971b96e2b81a605090b45d176a579 100644 (file)
@@ -22,6 +22,9 @@
 
 
 #include <gtkcalex.h>
+#include <gtkcalexcalendar.h>
+#include <gtkcalexcategory.h>
+#include <gtkcalexevent.h>
 
 
 #endif /* __LIBGTKCALENDAREX_H__ */
index f04cf61f07cd06cdf9c529332867df1e773ddd6b..c76a1edbfbb91e40eae61b7e7faf08eecfb0a922 100644 (file)
@@ -71,12 +71,13 @@ main (int argc, char **argv)
        error = NULL;
        if (!gtk_builder_add_from_file (gtkbuilder, GUIDIR "/test.ui", &error))
                {
-                       g_error ("Error on opening gui: %s.", error != NULL && error->message != NULL ? error->message : "no details");
+                       g_error ("Error on opening gui: %s.",
+                                error != NULL && error->message != NULL ? error->message : "no details");
                        return 0;
                }
 
        w = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "window1"));
-       vbox = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "vbox1"));
+       vbox = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "vbox2"));
 
        calex = gtk_calex_new ();
        gtk_box_pack_start (GTK_BOX (vbox), calex, TRUE, TRUE, 0);
index 7fca5ff825eeb11d685d07e6909bc5c915e3c024..d070330c73c863678ed72670d67ef9e8f63f3eb7 100644 (file)
           </packing>
         </child>
         <child>
-          <placeholder/>
+          <object class="GtkHBox" id="hbox1">
+            <property name="visible">True</property>
+            <child>
+              <object class="GtkCalendar" id="calendar1">
+                <property name="visible">True</property>
+                <property name="can_focus">True</property>
+                <property name="year">2010</property>
+                <property name="month">10</property>
+                <property name="day">7</property>
+              </object>
+              <packing>
+                <property name="expand">False</property>
+                <property name="position">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkVBox" id="vbox2">
+                <property name="visible">True</property>
+                <property name="orientation">vertical</property>
+                <child>
+                  <placeholder/>
+                </child>
+              </object>
+              <packing>
+                <property name="position">1</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="position">1</property>
+          </packing>
         </child>
       </object>
     </child>