aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gnome-cal.h
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-04-02 10:18:42 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-02 10:18:42 +0800
commit4750b90ad18f4f59fa19b839550d6397f5dffbfd (patch)
treea2d62941f88d3aedb6509b4883e08c82e13ed1cc /calendar/gnome-cal.h
parent9bc7db5333a2319828768142c527d3fb64afd999 (diff)
downloadgsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar
gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.gz
gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.bz2
gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.lz
gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.xz
gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.zst
gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.zip
GnomeCalendar toplevel GnomeApp; versit code -mig
svn path=/trunk/; revision=89
Diffstat (limited to 'calendar/gnome-cal.h')
-rw-r--r--calendar/gnome-cal.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/calendar/gnome-cal.h b/calendar/gnome-cal.h
new file mode 100644
index 0000000000..840ccf5122
--- /dev/null
+++ b/calendar/gnome-cal.h
@@ -0,0 +1,35 @@
+/*
+ * GnomeCalendar widget
+ * Copyright (C) 1998 the Free Software Foundation
+ *
+ * Author: Miguel de Icaza (miguel@kernel.org)
+ */
+
+#ifndef GNOME_CALENDAR_APP_H
+#define GNOME_CALENDAR_APP_H
+
+#include <libgnome/gnome-defs.h>
+#include <libgnomeui/gnome-app.h>
+
+BEGIN_GNOME_DECLS
+
+#define GNOME_CALENDAR(obj) GTK_CHECK_CAST(obj, gnome_calendar_get_type(), GnomeCalendar)
+#define GNOME_CALENDAR_CLASS(class) GTK_CHECK_CAST_CLASS(class, gnome_calendar_get_type(), GnomeCalendarClass)
+#define GNOME_IS_CALENDAR(obj) GTK_CHECK_TYPE(obj, gnome_calendar_get_type())
+
+typedef struct {
+ GnomeApp gnome_app;
+ Calendar *cal;
+} GnomeCalendar;
+
+typedef struct {
+ GnomeAppClass parent_class;
+} GnomeCalendarClass;
+
+guint gnome_calendar_get_type (void);
+GtkWidget *gnome_calendar_new (char *title);
+void gnome_calendar_load (char *file);
+
+END_GNOME_DECLS
+
+#endif