claws-mail/src/addressitem.h
Paul Mangan 6bbfc1f66d 2005-08-17 [paul] 1.9.13cvs34
patches by colin:
	* src/addressbook.c
	* src/addressitem.h
		Add an edit button for contacts, fix selections
		of gtksctree items
	* src/editaddress.c
		Change labels, let Save be always possible in the
		email and user atributes tabs
	* src/folderview.c
		fix sort issues
	* src/summaryview.c
		select next item instead of the displayed one
		after deletion

	* src/gtk/progressdialog.c
		use prefs_common.enable_rules_hint
2005-08-17 09:29:17 +00:00

165 lines
4 KiB
C

/*
* 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.
*/
/*
* Address item data. Shared among GUI components only.
*/
#ifndef __ADDRESSITEM_H__
#define __ADDRESSITEM_H__
#include <glib.h>
#include <gtk/gtkwidget.h>
#include <gtk/gtkctree.h>
#include "compose.h"
#include "addrindex.h"
#define ADDRESS_OBJECT(obj) ((AddressObject *)obj)
#define ADDRESS_OBJECT_TYPE(obj) (ADDRESS_OBJECT(obj)->type)
#define ADDRESS_OBJECT_NAME(obj) (ADDRESS_OBJECT(obj)->name)
#define ADAPTER_INTERFACE(obj) ((AdapterInterface *)obj)
#define ADAPTER_FOLDER(obj) ((AdapterFolder *)obj)
#define ADAPTER_GROUP(obj) ((AdapterGroup *)obj)
#define ADAPTER_DSOURCE(obj) ((AdapterDSource *)obj)
typedef enum {
ADDR_NONE,
ADDR_ITEM_PERSON,
ADDR_ITEM_EMAIL,
ADDR_ITEM_FOLDER,
ADDR_ITEM_GROUP,
ADDR_INTERFACE,
ADDR_DATASOURCE,
ADDR_BOOK, /* Sub-type */
ADDR_VCARD, /* Sub-type */
ADDR_JPILOT, /* Sub-type */
ADDR_CATEGORY, /* Sub-type */
ADDR_LDAP, /* Sub-type */
ADDR_LDAP_QUERY /* Sub-type */
} AddressObjectType;
typedef struct _AddressBook_win AddressBook_win;
struct _AddressBook_win
{
GtkWidget *window;
GtkWidget *menubar;
GtkWidget *ctree;
GtkWidget *ctree_swin;
GtkWidget *clist;
GtkWidget *entry;
GtkWidget *label;
GtkWidget *statusbar;
GtkWidget *edit_btn;
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 {
AddressObjectType type;
gchar *name;
};
typedef struct _AdapterInterface AdapterInterface;
struct _AdapterInterface {
AddressObject obj;
AddressInterface *interface;
AddressIfType interfaceType;
AddressTypeControlItem *atci;
gboolean enabled;
gboolean haveLibrary;
GtkCTreeNode *treeNode;
};
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;
};
AdapterDSource *addressbook_create_ds_adapter ( AddressDataSource *ds,
AddressObjectType otype,
gchar *name );
void addressbook_ads_set_name ( AdapterDSource *adapter,
gchar *value );
ItemObjectType addressbook_type2item ( AddressObjectType abType );
#endif /* __ADDRESSITEM_H__ */
/*
* End of Source.
*/