2001-07-03 00:29:47 +02:00
|
|
|
/*
|
|
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
|
|
|
* Copyright (C) 1999,2000 Hiroyuki Yamamoto
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2001-09-02 01:48:06 +02:00
|
|
|
* Address item data. Shared among GUI components only.
|
2001-07-03 00:29:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ADDRESSITEM_H__
|
|
|
|
#define __ADDRESSITEM_H__
|
|
|
|
|
2001-09-02 01:48:06 +02:00
|
|
|
#include <glib.h>
|
|
|
|
#include <gtk/gtkwidget.h>
|
|
|
|
#include <gtk/gtkctree.h>
|
|
|
|
|
|
|
|
#include "compose.h"
|
|
|
|
#include "addrindex.h"
|
|
|
|
|
2001-07-03 00:29:47 +02:00
|
|
|
#define ADDRESS_OBJECT(obj) ((AddressObject *)obj)
|
|
|
|
#define ADDRESS_OBJECT_TYPE(obj) (ADDRESS_OBJECT(obj)->type)
|
2001-09-02 01:48:06 +02:00
|
|
|
#define ADDRESS_OBJECT_NAME(obj) (ADDRESS_OBJECT(obj)->name)
|
2001-07-03 00:29:47 +02:00
|
|
|
|
2001-09-02 01:48:06 +02:00
|
|
|
#define ADAPTER_INTERFACE(obj) ((AdapterInterface *)obj)
|
|
|
|
#define ADAPTER_FOLDER(obj) ((AdapterFolder *)obj)
|
|
|
|
#define ADAPTER_GROUP(obj) ((AdapterGroup *)obj)
|
|
|
|
#define ADAPTER_DSOURCE(obj) ((AdapterDSource *)obj)
|
2001-07-03 00:29:47 +02:00
|
|
|
|
2001-09-02 01:48:06 +02:00
|
|
|
typedef enum {
|
|
|
|
ADDR_NONE,
|
|
|
|
ADDR_ITEM_PERSON,
|
|
|
|
ADDR_ITEM_EMAIL,
|
|
|
|
ADDR_ITEM_FOLDER,
|
|
|
|
ADDR_ITEM_GROUP,
|
|
|
|
ADDR_INTERFACE,
|
|
|
|
ADDR_DATASOURCE,
|
2001-09-30 13:07:34 +02:00
|
|
|
ADDR_BOOK, /* Sub-type */
|
|
|
|
ADDR_VCARD, /* Sub-type */
|
|
|
|
ADDR_JPILOT, /* Sub-type */
|
|
|
|
ADDR_CATEGORY, /* Sub-type */
|
|
|
|
ADDR_LDAP /* Sub-type */
|
2001-07-03 00:29:47 +02:00
|
|
|
} AddressObjectType;
|
|
|
|
|
2001-09-02 01:48:06 +02:00
|
|
|
typedef struct _AddressBook_win AddressBook_win;
|
|
|
|
struct _AddressBook_win
|
2001-07-03 00:29:47 +02:00
|
|
|
{
|
2001-09-02 01:48:06 +02:00
|
|
|
GtkWidget *window;
|
|
|
|
GtkWidget *menubar;
|
|
|
|
GtkWidget *ctree;
|
|
|
|
GtkWidget *clist;
|
|
|
|
GtkWidget *entry;
|
|
|
|
GtkWidget *statusbar;
|
|
|
|
|
|
|
|
GtkWidget *del_btn;
|
|
|
|
GtkWidget *reg_btn;
|
|
|
|
GtkWidget *lup_btn;
|
|
|
|
GtkWidget *to_btn;
|
|
|
|
GtkWidget *cc_btn;
|
|
|
|
GtkWidget *bcc_btn;
|
|
|
|
|
|
|
|
GtkWidget *tree_popup;
|
|
|
|
GtkWidget *list_popup;
|
|
|
|
GtkItemFactory *tree_factory;
|
|
|
|
GtkItemFactory *list_factory;
|
|
|
|
GtkItemFactory *menu_factory;
|
|
|
|
|
|
|
|
GtkCTreeNode *treeSelected;
|
|
|
|
GtkCTreeNode *opened;
|
|
|
|
GtkCTreeNode *listSelected;
|
|
|
|
|
|
|
|
Compose *target_compose;
|
|
|
|
gint status_cid;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _AddressTypeControlItem AddressTypeControlItem;
|
|
|
|
struct _AddressTypeControlItem {
|
|
|
|
AddressObjectType objectType;
|
|
|
|
AddressIfType interfaceType;
|
|
|
|
gchar *displayName;
|
|
|
|
gboolean showInTree;
|
|
|
|
gboolean treeExpand;
|
|
|
|
gboolean treeLeaf;
|
|
|
|
gchar *menuCommand;
|
|
|
|
GdkPixmap *iconXpm;
|
|
|
|
GdkBitmap *maskXpm;
|
|
|
|
GdkPixmap *iconXpmOpen;
|
|
|
|
GdkBitmap *maskXpmOpen;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _AddressObject AddressObject;
|
|
|
|
struct _AddressObject {
|
2001-07-03 00:29:47 +02:00
|
|
|
AddressObjectType type;
|
2001-09-02 01:48:06 +02:00
|
|
|
gchar *name;
|
2001-07-03 00:29:47 +02:00
|
|
|
};
|
|
|
|
|
2001-09-02 01:48:06 +02:00
|
|
|
typedef struct _AdapterInterface AdapterInterface;
|
|
|
|
struct _AdapterInterface {
|
2001-07-03 00:29:47 +02:00
|
|
|
AddressObject obj;
|
2001-09-02 01:48:06 +02:00
|
|
|
AddressInterface *interface;
|
|
|
|
AddressIfType interfaceType;
|
|
|
|
AddressTypeControlItem *atci;
|
|
|
|
gboolean enabled;
|
|
|
|
gboolean haveLibrary;
|
|
|
|
GtkCTreeNode *treeNode;
|
|
|
|
};
|
2001-07-03 00:29:47 +02:00
|
|
|
|
2001-09-02 01:48:06 +02:00
|
|
|
typedef struct _AdapterDSource AdapterDSource;
|
|
|
|
struct _AdapterDSource {
|
|
|
|
AddressObject obj;
|
|
|
|
AddressDataSource *dataSource;
|
|
|
|
AddressObjectType subType;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _AdapterFolder AdapterFolder;
|
|
|
|
struct _AdapterFolder {
|
|
|
|
AddressObject obj;
|
|
|
|
ItemFolder *itemFolder;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _AdapterGroup AdapterGroup;
|
|
|
|
struct _AdapterGroup {
|
|
|
|
AddressObject obj;
|
|
|
|
ItemGroup *itemGroup;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _AddressFileSelection AddressFileSelection;
|
|
|
|
struct _AddressFileSelection {
|
|
|
|
GtkWidget *fileSelector;
|
|
|
|
gboolean cancelled;
|
2001-07-03 00:29:47 +02:00
|
|
|
};
|
|
|
|
|
2001-09-02 01:48:06 +02:00
|
|
|
AdapterDSource *addressbook_create_ds_adapter ( AddressDataSource *ds,
|
|
|
|
AddressObjectType otype,
|
|
|
|
gchar *name );
|
|
|
|
|
2002-01-19 07:25:11 +01:00
|
|
|
void addressbook_ads_set_name ( AdapterDSource *adapter,
|
|
|
|
gchar *value );
|
|
|
|
|
|
|
|
ItemObjectType addressbook_type2item ( AddressObjectType abType );
|
2001-09-02 01:48:06 +02:00
|
|
|
|
2001-07-03 00:29:47 +02:00
|
|
|
#endif /* __ADDRESSITEM_H__ */
|
2001-09-02 01:48:06 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* End of Source.
|
|
|
|
*/
|
|
|
|
|