2007-08-03 [colin] 2.10.0cvs86
[claws.git] / src / editaddress_other_attributes_ldap.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Michael Rasmussen and the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 /*
21  * Edit address item data.
22  */
23
24 #ifndef __EDITADDRESS_OTHER_ATTRIBUTES_LDAP_H__
25 #define __EDITADDRESS_OTHER_ATTRIBUTES_LDAP_H__
26
27 #include <glib.h>
28 #include <glib/gi18n.h>
29 #include <gdk/gdkkeysyms.h>
30 #include <gtk/gtkwindow.h>
31 #include <gtk/gtksignal.h>
32 #include <gtk/gtklabel.h>
33 #include <gtk/gtkvbox.h>
34 #include <gtk/gtkentry.h>
35 #include <gtk/gtktable.h>
36
37 typedef struct _PersonEdit_dlg PersonEditDlg;
38 struct _PersonEdit_dlg {
39         GtkWidget *container;
40         GtkWidget *notebook;
41         GtkWidget *ok_btn;
42         GtkWidget *cancel_btn;
43         GtkWidget *statusbar;   /* used when prefs_common.addressbook_use_editaddress_dialog is TRUE */
44         GtkWidget *title;       /* used when prefs_common.addressbook_use_editaddress_dialog is FALSE */
45         gint status_cid;
46
47         /* User data tab */
48         GtkWidget *entry_name;
49         GtkWidget *entry_first;
50         GtkWidget *entry_last;
51         GtkWidget *entry_nick;
52
53         /* EMail data tab */
54         GtkWidget *entry_email;
55         GtkWidget *entry_alias;
56         GtkWidget *entry_remarks;
57         GtkWidget *clist_email;
58         GtkWidget *email_up;
59         GtkWidget *email_down;
60         GtkWidget *email_del;
61         GtkWidget *email_mod;
62         GtkWidget *email_add;
63
64         /* Attribute data tab */
65         GtkWidget *entry_atname;
66         GtkWidget *entry_atvalue;
67         GtkWidget *clist_attrib;
68         GtkWidget *attrib_add;
69         GtkWidget *attrib_del;
70         GtkWidget *attrib_mod;
71
72         gint rowIndEMail;
73         gint rowIndAttrib;
74         gboolean editNew;
75         gboolean read_only;
76         gboolean ldap;
77 };
78
79 #ifdef USE_LDAP
80
81 static const char *ATTRIBUTE[] = {
82         "telephoneNumber",
83         /*"description (Remarks)",*/
84         "title",
85         "telexNumber",
86         "facsimileTelephoneNumber",
87         "street",
88         "postOfficeBox",
89         "postalCode",
90         "postalAddress",
91         "st", /* state or province */
92         "departmentNumber",
93         "homePhone",
94         "homePostalAddress",
95         "initials",
96         "labeledURI",
97         "mobile",
98         "pager",
99         "roomNumber",
100         NULL
101 };
102
103 static const int ATTRIBUTE_SIZE = (sizeof(ATTRIBUTE) / sizeof(*ATTRIBUTE)) - 1;
104
105 /* Function proto types */
106 void addressbook_edit_person_page_attrib_ldap(PersonEditDlg *personEditDlg, gint pageNum, gchar *pageLbl);
107 int get_attribute_index(const gchar *string_literal);
108
109 #endif  /* USE_LDAP */
110
111 #endif /* __EDITADDRESS_OTHER_ATTRIBUTES_LDAP_H__ */