aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/eventedit.h
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-04-03 12:53:51 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-03 12:53:51 +0800
commitdc90ad6b4302059c79a95d535c8363829faed7df (patch)
tree16d6a6f39048e3e01a8b63de62659230e3924a77 /calendar/gui/eventedit.h
parent01b4ff7532756f9202336e59d2f1e401e758fcf9 (diff)
downloadgsoc2013-evolution-dc90ad6b4302059c79a95d535c8363829faed7df.tar
gsoc2013-evolution-dc90ad6b4302059c79a95d535c8363829faed7df.tar.gz
gsoc2013-evolution-dc90ad6b4302059c79a95d535c8363829faed7df.tar.bz2
gsoc2013-evolution-dc90ad6b4302059c79a95d535c8363829faed7df.tar.lz
gsoc2013-evolution-dc90ad6b4302059c79a95d535c8363829faed7df.tar.xz
gsoc2013-evolution-dc90ad6b4302059c79a95d535c8363829faed7df.tar.zst
gsoc2013-evolution-dc90ad6b4302059c79a95d535c8363829faed7df.zip
More calendar work -mig
svn path=/trunk/; revision=98
Diffstat (limited to 'calendar/gui/eventedit.h')
-rw-r--r--calendar/gui/eventedit.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/calendar/gui/eventedit.h b/calendar/gui/eventedit.h
new file mode 100644
index 0000000000..edd8059af1
--- /dev/null
+++ b/calendar/gui/eventedit.h
@@ -0,0 +1,38 @@
+/*
+ * EventEditor widget
+ * Copyright (C) 1998 the Free Software Foundation
+ *
+ * Author: Miguel de Icaza (miguel@kernel.org)
+ */
+
+#ifndef EVENT_EDITOR_H
+#define EVENT_EDITOR_H
+
+BEGIN_GNOME_DECLS
+
+#define EVENT_EDITOR(obj) GTK_CHECK_CAST(obj, event_editor_get_type(), EventEditor)
+#define EVENT_EDITOR_CLASS(class) GTK_CHECK_CAST_CLASS(class, event_editor_get_type(), EventEditorClass)
+#define IS_EVENT_EDITOR(obj) GTK_CHECK_TYPE(obj, event_editor_get_type())
+
+typedef struct {
+ GtkWindow gtk_window;
+ GtkWidget *notebook;
+ GtkWidget *hbox;
+ GtkWidget *vbox;
+
+ GtkWidget *general;
+ GtkTable *general_table;
+ GtkWidget *general_time_table;
+ GtkWidget *general_owner;
+ GtkWidget *general_summary;
+ GtkWidget *start_time, *end_time;
+} EventEditor;
+
+typedef struct {
+ GnomePropertyBoxClass parent_class;
+} EventEditorClass;
+
+GtkWidget *event_editor_new (void);
+
+END_GNOME_DECLS
+#endif