root / src / addressitem.h @ 2277
History | View | Annotate | Download (3.8 kB)
| 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 | } AddressObjectType; |
| 57 | |
| 58 | typedef struct _AddressBook_win AddressBook_win; |
| 59 | struct _AddressBook_win
|
| 60 | {
|
| 61 | GtkWidget *window; |
| 62 | GtkWidget *menubar; |
| 63 | GtkWidget *ctree; |
| 64 | GtkWidget *clist; |
| 65 | GtkWidget *entry; |
| 66 | GtkWidget *statusbar; |
| 67 | |
| 68 | GtkWidget *to_btn; |
| 69 | GtkWidget *cc_btn; |
| 70 | GtkWidget *bcc_btn; |
| 71 | GtkWidget *del_btn; |
| 72 | GtkWidget *reg_btn; |
| 73 | GtkWidget *lup_btn; |
| 74 | GtkWidget *close_btn; |
| 75 | |
| 76 | GtkWidget *tree_popup; |
| 77 | GtkWidget *list_popup; |
| 78 | GtkItemFactory *tree_factory; |
| 79 | GtkItemFactory *list_factory; |
| 80 | GtkItemFactory *menu_factory; |
| 81 | |
| 82 | GtkCTreeNode *treeSelected; |
| 83 | GtkCTreeNode *opened; |
| 84 | GtkCTreeNode *listSelected; |
| 85 | |
| 86 | Compose *target_compose; |
| 87 | gint status_cid; |
| 88 | }; |
| 89 | |
| 90 | typedef struct _AddressTypeControlItem AddressTypeControlItem; |
| 91 | struct _AddressTypeControlItem {
|
| 92 | AddressObjectType objectType; |
| 93 | AddressIfType interfaceType; |
| 94 | gchar *displayName; |
| 95 | gboolean showInTree; |
| 96 | gboolean treeExpand; |
| 97 | gboolean treeLeaf; |
| 98 | gchar *menuCommand; |
| 99 | GdkPixmap *iconXpm; |
| 100 | GdkBitmap *maskXpm; |
| 101 | GdkPixmap *iconXpmOpen; |
| 102 | GdkBitmap *maskXpmOpen; |
| 103 | }; |
| 104 | |
| 105 | typedef struct _AddressObject AddressObject; |
| 106 | struct _AddressObject {
|
| 107 | AddressObjectType type; |
| 108 | gchar *name; |
| 109 | }; |
| 110 | |
| 111 | typedef struct _AdapterInterface AdapterInterface; |
| 112 | struct _AdapterInterface {
|
| 113 | AddressObject obj; |
| 114 | AddressInterface *interface; |
| 115 | AddressIfType interfaceType; |
| 116 | AddressTypeControlItem *atci; |
| 117 | gboolean enabled; |
| 118 | gboolean haveLibrary; |
| 119 | GtkCTreeNode *treeNode; |
| 120 | }; |
| 121 | |
| 122 | typedef struct _AdapterDSource AdapterDSource; |
| 123 | struct _AdapterDSource {
|
| 124 | AddressObject obj; |
| 125 | AddressDataSource *dataSource; |
| 126 | AddressObjectType subType; |
| 127 | }; |
| 128 | |
| 129 | typedef struct _AdapterFolder AdapterFolder; |
| 130 | struct _AdapterFolder {
|
| 131 | AddressObject obj; |
| 132 | ItemFolder *itemFolder; |
| 133 | }; |
| 134 | |
| 135 | typedef struct _AdapterGroup AdapterGroup; |
| 136 | struct _AdapterGroup {
|
| 137 | AddressObject obj; |
| 138 | ItemGroup *itemGroup; |
| 139 | }; |
| 140 | |
| 141 | typedef struct _AddressFileSelection AddressFileSelection; |
| 142 | struct _AddressFileSelection {
|
| 143 | GtkWidget *fileSelector; |
| 144 | gboolean cancelled; |
| 145 | }; |
| 146 | |
| 147 | AdapterDSource *addressbook_create_ds_adapter ( AddressDataSource *ds, |
| 148 | AddressObjectType otype, |
| 149 | gchar *name ); |
| 150 | |
| 151 | void addressbook_ads_set_name ( AdapterDSource *adapter,
|
| 152 | gchar *value ); |
| 153 | |
| 154 | #endif /* __ADDRESSITEM_H__ */ |
| 155 | |
| 156 | /*
|
| 157 | * End of Source. |
| 158 | */ |
| 159 |