2005-12-05 [paul] 1.9.100cvs61
[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 2 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, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
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/gtkwidget.h>
29 #include <gtk/gtkctree.h>
30
31 #include "compose.h"
32 #include "addrindex.h"
33
34 #define ADDRESS_OBJECT(obj)             ((AddressObject *)obj)
35 #define ADDRESS_OBJECT_TYPE(obj)        (ADDRESS_OBJECT(obj)->type)
36 #define ADDRESS_OBJECT_NAME(obj)        (ADDRESS_OBJECT(obj)->name)
37
38 #define ADAPTER_INTERFACE(obj)          ((AdapterInterface *)obj)
39 #define ADAPTER_FOLDER(obj)             ((AdapterFolder *)obj)
40 #define ADAPTER_GROUP(obj)              ((AdapterGroup *)obj)
41 #define ADAPTER_DSOURCE(obj)            ((AdapterDSource *)obj)
42
43 typedef enum {
44         ADDR_NONE,
45         ADDR_ITEM_PERSON,
46         ADDR_ITEM_EMAIL,
47         ADDR_ITEM_FOLDER,
48         ADDR_ITEM_GROUP,
49         ADDR_INTERFACE,
50         ADDR_DATASOURCE,
51         ADDR_BOOK,              /* Sub-type */
52         ADDR_VCARD,             /* Sub-type */
53         ADDR_JPILOT,            /* Sub-type */
54         ADDR_CATEGORY,          /* Sub-type */
55         ADDR_LDAP,              /* Sub-type */
56         ADDR_LDAP_QUERY         /* Sub-type */
57 } AddressObjectType;
58
59 typedef struct _AddressBook_win AddressBook_win;
60 struct _AddressBook_win
61 {
62         GtkWidget *window;
63         GtkWidget *menubar;
64         GtkWidget *ctree;
65         GtkWidget *ctree_swin;
66         GtkWidget *clist;
67         GtkWidget *entry;
68         GtkWidget *label;
69         GtkWidget *statusbar;
70
71         GtkWidget *edit_btn;
72         GtkWidget *del_btn;
73         GtkWidget *reg_btn;
74         GtkWidget *lup_btn;
75         GtkWidget *to_btn;
76         GtkWidget *cc_btn;
77         GtkWidget *bcc_btn;
78
79         GtkWidget *tree_popup;
80         GtkWidget *list_popup;
81         GtkItemFactory *tree_factory;
82         GtkItemFactory *list_factory;
83         GtkItemFactory *menu_factory;
84
85         GtkCTreeNode *treeSelected;
86         GtkCTreeNode *opened;
87         GtkCTreeNode *listSelected;
88
89         Compose *target_compose;
90         gint status_cid;
91 };
92
93 typedef struct _AddressTypeControlItem  AddressTypeControlItem;
94 struct _AddressTypeControlItem {
95         AddressObjectType objectType;
96         AddressIfType interfaceType;
97         gchar *displayName;
98         gboolean showInTree;
99         gboolean treeExpand;
100         gboolean treeLeaf;
101         gchar *menuCommand;
102         GdkPixmap *iconXpm;
103         GdkBitmap *maskXpm;
104         GdkPixmap *iconXpmOpen;
105         GdkBitmap *maskXpmOpen;
106 };
107
108 typedef struct _AddressObject   AddressObject;
109 struct _AddressObject {
110         AddressObjectType type;
111         gchar *name;
112 };
113
114 typedef struct _AdapterInterface AdapterInterface;
115 struct _AdapterInterface {
116         AddressObject obj;
117         AddressInterface *interface;
118         AddressIfType interfaceType;
119         AddressTypeControlItem *atci;
120         gboolean enabled;
121         gboolean haveLibrary;
122         GtkCTreeNode *treeNode;
123 };
124
125 typedef struct _AdapterDSource AdapterDSource;
126 struct _AdapterDSource {
127         AddressObject obj;
128         AddressDataSource *dataSource;
129         AddressObjectType subType;
130 };
131
132 typedef struct _AdapterFolder AdapterFolder;
133 struct _AdapterFolder {
134         AddressObject obj;
135         ItemFolder *itemFolder;
136 };
137
138 typedef struct _AdapterGroup AdapterGroup;
139 struct _AdapterGroup {
140         AddressObject obj;
141         ItemGroup *itemGroup;
142 };
143
144 typedef struct _AddressFileSelection AddressFileSelection;
145 struct _AddressFileSelection {
146         GtkWidget *fileSelector;
147         gboolean cancelled;
148 };
149
150 AdapterDSource *addressbook_create_ds_adapter   ( AddressDataSource     *ds,
151                                                   AddressObjectType     otype,
152                                                   gchar                 *name );
153
154 void addressbook_ads_set_name           ( AdapterDSource *adapter,
155                                           gchar          *value );
156
157 ItemObjectType addressbook_type2item    ( AddressObjectType abType );
158
159 #endif /* __ADDRESSITEM_H__ */
160
161 /*
162 * End of Source.
163 */
164