aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/itip-formatter/itip-view.h
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2004-12-23 00:22:23 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-12-23 00:22:23 +0800
commit2698f79304b6e643123c5765754169e92831b73f (patch)
tree3a794debe000852b1d960804b1de4c9ff1f43feb /plugins/itip-formatter/itip-view.h
parenta92cc797f102a5e34b9c24057ec7daaec9d91e64 (diff)
downloadgsoc2013-evolution-2698f79304b6e643123c5765754169e92831b73f.tar
gsoc2013-evolution-2698f79304b6e643123c5765754169e92831b73f.tar.gz
gsoc2013-evolution-2698f79304b6e643123c5765754169e92831b73f.tar.bz2
gsoc2013-evolution-2698f79304b6e643123c5765754169e92831b73f.tar.lz
gsoc2013-evolution-2698f79304b6e643123c5765754169e92831b73f.tar.xz
gsoc2013-evolution-2698f79304b6e643123c5765754169e92831b73f.tar.zst
gsoc2013-evolution-2698f79304b6e643123c5765754169e92831b73f.zip
Initial checkin of new itip formatter
2004-12-22 JP Rosevear <jpr@novell.com> * Initial checkin of new itip formatter svn path=/trunk/; revision=28184
Diffstat (limited to 'plugins/itip-formatter/itip-view.h')
-rw-r--r--plugins/itip-formatter/itip-view.h102
1 files changed, 102 insertions, 0 deletions
diff --git a/plugins/itip-formatter/itip-view.h b/plugins/itip-formatter/itip-view.h
new file mode 100644
index 0000000000..ac9305bf2e
--- /dev/null
+++ b/plugins/itip-formatter/itip-view.h
@@ -0,0 +1,102 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/* itip-view.h
+ *
+ * Copyright (C) 2004 Novell, Inc.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public
+ * License as published by the Free Software Foundation.
+ *
+ * This program 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: JP Rosevear
+ */
+
+#ifndef _ITIP_VIEW_H_
+#define _ITIP_VIEW_H_
+
+#include <glib-object.h>
+#include <gtk/gtkhbox.h>
+
+G_BEGIN_DECLS
+
+#define ITIP_TYPE_VIEW (itip_view_get_type ())
+#define ITIP_VIEW(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), ITIP_TYPE_VIEW, ItipView))
+#define ITIP_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ITIP_TYPE_VIEW, ItipViewClass))
+#define ITIP_IS_VIEW(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), ITIP_TYPE_VIEW))
+#define ITIP_IS_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ITIP_TYPE_VIEW))
+#define ITIP_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ITIP_TYPE_VIEW, ItipViewClass))
+
+typedef struct _ItipView ItipView;
+typedef struct _ItipViewPrivate ItipViewPrivate;
+typedef struct _ItipViewClass ItipViewClass;
+
+typedef enum {
+ ITIP_VIEW_MODE_NONE,
+ ITIP_VIEW_MODE_PUBLISH,
+ ITIP_VIEW_MODE_REQUEST,
+ ITIP_VIEW_MODE_ADD,
+ ITIP_VIEW_MODE_REPLY,
+ ITIP_VIEW_MODE_REFRESH,
+ ITIP_VIEW_MODE_CANCEL
+} ItipViewMode;
+
+typedef enum {
+ ITIP_VIEW_RESPONSE_NONE,
+ ITIP_VIEW_RESPONSE_ACCEPT,
+ ITIP_VIEW_RESPONSE_TENTATIVE,
+ ITIP_VIEW_RESPONSE_DECLINE,
+ ITIP_VIEW_RESPONSE_UPDATE,
+ ITIP_VIEW_RESPONSE_SEND
+} ItipViewResponse;
+
+struct _ItipView
+{
+ GtkHBox parent_instance;
+
+ ItipViewPrivate *priv;
+};
+
+struct _ItipViewClass
+{
+ GtkHBoxClass parent_class;
+};
+
+GType itip_view_get_type (void);
+GtkWidget *itip_view_new (void);
+
+void itip_view_set_mode (ItipView *view, ItipViewMode mode);
+ItipViewMode itip_view_get_mode (ItipView *view);
+
+void itip_view_set_organizer (ItipView *view, const char *organizer);
+const char *itip_view_get_organizer (ItipView *view);
+
+void itip_view_set_sentby (ItipView *view, const char *sentby);
+const char *itip_view_get_sentby (ItipView *view);
+
+void itip_view_set_attendee (ItipView *view, const char *attendee);
+const char *itip_view_get_attendee (ItipView *view);
+
+void itip_view_set_summary (ItipView *view, const char *summary);
+const char *itip_view_get_summary (ItipView *view);
+
+void itip_view_set_location (ItipView *view, const char *location);
+const char *itip_view_get_location (ItipView *view);
+
+void itip_view_set_start (ItipView *view, struct tm *start);
+const struct tm *itip_view_get_start (ItipView *view);
+
+void itip_view_set_end (ItipView *view, struct tm *end);
+const struct tm *itip_view_get_end (ItipView *view);
+
+G_END_DECLS
+
+#endif