* 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
15 lines
258 B
C
15 lines
258 B
C
|
|
#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__ */
|