aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-user-dialog.h
diff options
context:
space:
mode:
authorPraveen Kumar <kpraveen@novell.com>2005-07-08 21:45:19 +0800
committerPraveen Kumar <kpraveen@src.gnome.org>2005-07-08 21:45:19 +0800
commita8ce8864c08bb3972c73818491fe6475a4acf017 (patch)
tree1be88b9f734181092093d0e8ed047c9c66ec31b1 /plugins/exchange-operations/exchange-user-dialog.h
parent661a270d4b787a9c21b65070bcca451f089a2d9a (diff)
downloadgsoc2013-evolution-a8ce8864c08bb3972c73818491fe6475a4acf017.tar
gsoc2013-evolution-a8ce8864c08bb3972c73818491fe6475a4acf017.tar.gz
gsoc2013-evolution-a8ce8864c08bb3972c73818491fe6475a4acf017.tar.bz2
gsoc2013-evolution-a8ce8864c08bb3972c73818491fe6475a4acf017.tar.lz
gsoc2013-evolution-a8ce8864c08bb3972c73818491fe6475a4acf017.tar.xz
gsoc2013-evolution-a8ce8864c08bb3972c73818491fe6475a4acf017.tar.zst
gsoc2013-evolution-a8ce8864c08bb3972c73818491fe6475a4acf017.zip
Added entries for the files providing the delegation assistant feature
2005-07-08 Praveen Kumar <kpraveen@novell.com> * Makefile.am : Added entries for the files providing the delegation assistant feature * exchange-user-dialog.c : Added new * exchange-user-dialog.h : Added new * exchange-account-setup.c (btn_dass_clicked) : Enabled the code for for invoking the delegation assistant window * exchange-delegates-user.c : Modified to include the header files from include path instead of the local directory * exchange-permissions-dialog.c : Modified an occurence to include the file exchange-user-dialog.c instead of e2k-folder-dialog.c svn path=/trunk/; revision=29686
Diffstat (limited to 'plugins/exchange-operations/exchange-user-dialog.h')
-rw-r--r--plugins/exchange-operations/exchange-user-dialog.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/exchange-operations/exchange-user-dialog.h b/plugins/exchange-operations/exchange-user-dialog.h
new file mode 100644
index 0000000000..b212172b85
--- /dev/null
+++ b/plugins/exchange-operations/exchange-user-dialog.h
@@ -0,0 +1,37 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/* Copyright (C) 2001-2004 Novell, Inc. */
+
+#ifndef __E2K_USER_DIALOG_H__
+#define __E2K_USER_DIALOG_H__
+
+#include <gtk/gtkdialog.h>
+
+#define E2K_TYPE_USER_DIALOG (e2k_user_dialog_get_type ())
+#define E2K_USER_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E2K_TYPE_USER_DIALOG, E2kUserDialog))
+#define E2K_USER_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E2K_TYPE_USER_DIALOG, \
+ E2kUserDialogClass))
+#define E2K_IS_USER_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E2K_TYPE_USER_DIALOG))
+#define E2K_IS_USER_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), E2K_TYPE_USER_DIALOG))
+
+typedef struct _E2kUserDialog E2kUserDialog;
+typedef struct _E2kUserDialogClass E2kUserDialogClass;
+typedef struct _E2kUserDialogPrivate E2kUserDialogPrivate;
+
+struct _E2kUserDialog {
+ GtkDialog parent;
+
+ /* Private data */
+ E2kUserDialogPrivate *priv;
+};
+
+struct _E2kUserDialogClass {
+ GtkDialogClass parent_class;
+};
+
+GType e2k_user_dialog_get_type (void);
+GtkWidget *e2k_user_dialog_new (GtkWidget *parent_window,
+ const char *label_text,
+ const char *section_name);
+char *e2k_user_dialog_get_user (E2kUserDialog *dialog);
+
+#endif /* __E2K_USER_DIALOG_H__ */