2006-09-01 [wwp] 2.4.0cvs122
[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 *help_btn;
72         GtkWidget *edit_btn;
73         GtkWidget *del_btn;
74         GtkWidget *reg_btn;
75         GtkWidget *lup_btn;
76         GtkWidget *to_btn;
77         GtkWidget *cc_btn;
78         GtkWidget *bcc_btn;
79
80         GtkWidget *tree_popup;
81         GtkWidget *list_popup;
82         GtkItemFactory *tree_factory;
83         GtkItemFactory *list_factory;
84         GtkItemFactory *menu_factory;
85
86         GtkCTreeNode *treeSelected;
87         GtkCTreeNode *opened;
88         GtkCTreeNode *listSelected;
89
90         Compose *target_compose;
91         gint status_cid;
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         GtkCTreeNode *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