2008-09-25 [colin] 3.5.0cvs131
[claws.git] / src / addressitem.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999,2000 Hiroyuki Yamamoto
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  * Address item data. Shared among GUI components only.
22  */
23
24 #ifndef __ADDRESSITEM_H__
25 #define __ADDRESSITEM_H__
26
27 #include <glib.h>
28 #include <gtk/gtk.h>
29
30 #include "compose.h"
31 #include "addrindex.h"
32
33 #define ADDRESS_OBJECT(obj)             ((AddressObject *)obj)
34 #define ADDRESS_OBJECT_TYPE(obj)        (ADDRESS_OBJECT(obj)->type)
35 #define ADDRESS_OBJECT_NAME(obj)        (ADDRESS_OBJECT(obj)->name)
36
37 #define ADAPTER_INTERFACE(obj)          ((AdapterInterface *)obj)
38 #define ADAPTER_FOLDER(obj)             ((AdapterFolder *)obj)
39 #define ADAPTER_GROUP(obj)              ((AdapterGroup *)obj)
40 #define ADAPTER_DSOURCE(obj)            ((AdapterDSource *)obj)
41
42 typedef enum {
43         ADDR_NONE,
44         ADDR_ITEM_PERSON,
45         ADDR_ITEM_EMAIL,
46         ADDR_ITEM_FOLDER,
47         ADDR_ITEM_GROUP,
48         ADDR_INTERFACE,
49         ADDR_DATASOURCE,
50         ADDR_BOOK,              /* Sub-type */
51         ADDR_VCARD,             /* Sub-type */
52         ADDR_JPILOT,            /* Sub-type */
53         ADDR_CATEGORY,          /* Sub-type */
54         ADDR_LDAP,              /* Sub-type */
55         ADDR_LDAP_QUERY         /* Sub-type */
56 } AddressObjectType;
57
58 typedef struct _AddressBook_win AddressBook_win;
59 struct _AddressBook_win
60 {
61         GtkWidget *window;
62         GtkWidget *hpaned;
63         GtkWidget *vpaned;
64         GtkWidget *menubar;
65         GtkWidget *ctree;
66         GtkWidget *ctree_swin;
67         GtkWidget *editaddress_vbox;
68         GtkWidget *clist;
69         GtkWidget *entry;
70         GtkWidget *label;
71         GtkWidget *statusbar;
72
73         GtkWidget *help_btn;
74         GtkWidget *edit_btn;
75         GtkWidget *del_btn;
76         GtkWidget *reg_btn;
77         GtkWidget *lup_btn;
78         GtkWidget *to_btn;
79         GtkWidget *cc_btn;
80         GtkWidget *bcc_btn;
81
82         GtkWidget *tree_popup;
83         GtkWidget *list_popup;
84
85         GtkCMCTreeNode *treeSelected;
86         GtkCMCTreeNode *opened;
87         GtkCMCTreeNode *listSelected;
88
89         Compose *target_compose;
90         gint status_cid;
91         GtkUIManager *ui_manager;
92 };
93
94 typedef struct _AddressTypeControlItem  AddressTypeControlItem;
95 struct _AddressTypeControlItem {
96         AddressObjectType objectType;
97         AddressIfType interfaceType;
98         gchar *displayName;
99         gboolean showInTree;
100         gboolean treeExpand;
101         gboolean treeLeaf;
102         gchar *menuCommand;
103         GdkPixmap *iconXpm;
104         GdkBitmap *maskXpm;
105         GdkPixmap *iconXpmOpen;
106         GdkBitmap *maskXpmOpen;
107 };
108
109 typedef struct _AddressObject   AddressObject;
110 struct _AddressObject {
111         AddressObjectType type;
112         gchar *name;
113 };
114
115 typedef struct _AdapterInterface AdapterInterface;
116 struct _AdapterInterface {
117         AddressObject obj;
118         AddressInterface *interface;
119         AddressIfType interfaceType;
120         AddressTypeControlItem *atci;
121         gboolean enabled;
122         gboolean haveLibrary;
123         GtkCMCTreeNode *treeNode;
124 };
125
126 typedef struct _AdapterDSource AdapterDSource;
127 struct _AdapterDSource {
128         AddressObject obj;
129         AddressDataSource *dataSource;
130         AddressObjectType subType;
131 };
132
133 typedef struct _AdapterFolder AdapterFolder;
134 struct _AdapterFolder {
135         AddressObject obj;
136         ItemFolder *itemFolder;
137 };
138
139 typedef struct _AdapterGroup AdapterGroup;
140 struct _AdapterGroup {
141         AddressObject obj;
142         ItemGroup *itemGroup;
143 };
144
145 typedef struct _AddressFileSelection AddressFileSelection;
146 struct _AddressFileSelection {
147         GtkWidget *fileSelector;
148         gboolean cancelled;
149 };
150
151 AdapterDSource *addressbook_create_ds_adapter   ( AddressDataSource     *ds,
152                                                   AddressObjectType     otype,
153                                                   gchar                 *name );
154
155 void addressbook_ads_set_name           ( AdapterDSource *adapter,
156                                           gchar          *value );
157
158 ItemObjectType addressbook_type2item    ( AddressObjectType abType );
159
160 #endif /* __ADDRESSITEM_H__ */
161
162 /*
163 * End of Source.
164 */
165