aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-messagebox.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2001-01-17 22:01:33 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-01-17 22:01:33 +0800
commit8f0f48283e2c7873e5de2ca76de851a0c880c52e (patch)
treed4b9dfd8bddff335fc03c0958d1546000e54b184 /widgets/misc/e-messagebox.h
parent662c83efed64f9bdd27bd9af42e05cb69a41c3e2 (diff)
downloadgsoc2013-evolution-8f0f48283e2c7873e5de2ca76de851a0c880c52e.tar
gsoc2013-evolution-8f0f48283e2c7873e5de2ca76de851a0c880c52e.tar.gz
gsoc2013-evolution-8f0f48283e2c7873e5de2ca76de851a0c880c52e.tar.bz2
gsoc2013-evolution-8f0f48283e2c7873e5de2ca76de851a0c880c52e.tar.lz
gsoc2013-evolution-8f0f48283e2c7873e5de2ca76de851a0c880c52e.tar.xz
gsoc2013-evolution-8f0f48283e2c7873e5de2ca76de851a0c880c52e.tar.zst
gsoc2013-evolution-8f0f48283e2c7873e5de2ca76de851a0c880c52e.zip
Hi fejj. Using your computer to check in the files you forget to add. :-)
svn path=/trunk/; revision=7576
Diffstat (limited to 'widgets/misc/e-messagebox.h')
-rw-r--r--widgets/misc/e-messagebox.h83
1 files changed, 83 insertions, 0 deletions
diff --git a/widgets/misc/e-messagebox.h b/widgets/misc/e-messagebox.h
new file mode 100644
index 0000000000..0514aeb43f
--- /dev/null
+++ b/widgets/misc/e-messagebox.h
@@ -0,0 +1,83 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Original Author: Jay Painter
+ * Modified: Jeffrey Stedfast
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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 Street #330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+
+#ifndef __E_MESSAGE_BOX_H__
+#define __E_MESSAGE_BOX_H__
+
+#include <gnome.h>
+
+BEGIN_GNOME_DECLS
+
+#define E_TYPE_MESSAGE_BOX (e_message_box_get_type ())
+#define E_MESSAGE_BOX(obj) (GTK_CHECK_CAST ((obj), E_TYPE_MESSAGE_BOX, EMessageBox))
+#define E_MESSAGE_BOX_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_MESSAGE_BOX, EMessageBoxClass))
+#define E_IS_MESSAGE_BOX(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_MESSAGE_BOX))
+#define E_IS_MESSAGE_BOX_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), E_TYPE_MESSAGE_BOX))
+#define E_MESSAGE_BOX_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), E_TYPE_MESSAGE_BOX, EMessageBoxClass))
+
+
+#define E_MESSAGE_BOX_INFO "info"
+#define E_MESSAGE_BOX_WARNING "warning"
+#define E_MESSAGE_BOX_ERROR "error"
+#define E_MESSAGE_BOX_QUESTION "question"
+#define E_MESSAGE_BOX_GENERIC "generic"
+
+
+typedef struct _EMessageBox EMessageBox;
+typedef struct _EMessageBoxPrivate EMessageBoxPrivate;
+typedef struct _EMessageBoxClass EMessageBoxClass;
+typedef struct _EMessageBoxButton EMessageBoxButton;
+
+struct _EMessageBox
+{
+ GnomeDialog dialog;
+ /*< private >*/
+ EMessageBoxPrivate *_priv;
+};
+
+struct _EMessageBoxClass
+{
+ GnomeDialogClass parent_class;
+};
+
+
+guint e_message_box_get_type (void) G_GNUC_CONST;
+GtkWidget* e_message_box_new (const gchar *message,
+ const gchar *messagebox_type,
+ ...);
+
+GtkWidget* e_message_box_newv (const gchar *message,
+ const gchar *messagebox_type,
+ const gchar **buttons);
+
+void e_message_box_construct (EMessageBox *messagebox,
+ const gchar *message,
+ const gchar *messagebox_type,
+ const gchar **buttons);
+
+GtkWidget *e_message_box_get_label (EMessageBox *messagebox);
+
+GtkWidget *e_message_box_get_checkbox (EMessageBox *messagebox);
+
+END_GNOME_DECLS
+
+#endif /* __E_MESSAGE_BOX_H__ */