aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/e-ldap-server-dialog.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-05-01 08:23:53 +0800
committerChris Toshok <toshok@src.gnome.org>2000-05-01 08:23:53 +0800
commit165bf85c4d07928acf01c43c49c7e65c16b28ac8 (patch)
tree7ee6efcf01dbe1bc78e105853f66a2010ec2d853 /addressbook/gui/component/e-ldap-server-dialog.h
parent702ede3d4dc1a9046264e7a5ac31da3b1d25b942 (diff)
downloadgsoc2013-evolution-165bf85c4d07928acf01c43c49c7e65c16b28ac8.tar
gsoc2013-evolution-165bf85c4d07928acf01c43c49c7e65c16b28ac8.tar.gz
gsoc2013-evolution-165bf85c4d07928acf01c43c49c7e65c16b28ac8.tar.bz2
gsoc2013-evolution-165bf85c4d07928acf01c43c49c7e65c16b28ac8.tar.lz
gsoc2013-evolution-165bf85c4d07928acf01c43c49c7e65c16b28ac8.tar.xz
gsoc2013-evolution-165bf85c4d07928acf01c43c49c7e65c16b28ac8.tar.zst
gsoc2013-evolution-165bf85c4d07928acf01c43c49c7e65c16b28ac8.zip
added e-ldap-server-dialog.c (glade_DATA): added ldap-server-dialog.glade
* gui/component/Makefile.am (evolution_addressbook_SOURCES): added e-ldap-server-dialog.c (glade_DATA): added ldap-server-dialog.glade * gui/component/ldap-server-dialog.glade: new file. * gui/component/e-ldap-server-dialog.h: new file. * gui/component/e-ldap-server-dialog.c: new file, contains logic associated with ldap server dialog. * gui/component/addressbook.c (control_deactivate): remove the directory server menu item. (null_cb): do nothing callback for e_book_load_uri call. should change to (at the very least) pop up a dialog if there was an error. (new_server_cb): new function - really just switches to a particular ldap server, since the information isn't saved anywhere. (control_activate): add directory server menu item. svn path=/trunk/; revision=2700
Diffstat (limited to 'addressbook/gui/component/e-ldap-server-dialog.h')
-rw-r--r--addressbook/gui/component/e-ldap-server-dialog.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/addressbook/gui/component/e-ldap-server-dialog.h b/addressbook/gui/component/e-ldap-server-dialog.h
new file mode 100644
index 0000000000..f0e73d1ebc
--- /dev/null
+++ b/addressbook/gui/component/e-ldap-server-dialog.h
@@ -0,0 +1,14 @@
+
+#ifndef __E_LDAP_SERVER_DIALOG_H__
+#define __E_LDAP_SERVER_DIALOG_H__
+
+typedef struct {
+ char *description;
+ char *host;
+ int port;
+ char *rootdn;
+} ELDAPServer;
+
+void e_ldap_server_editor_show(ELDAPServer *server);
+
+#endif /* __E_LDAP_SERVER_DIALOG_H__ */