1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* eab-destination.h
*
* Copyright (C) 2001-2003 Ximian, Inc.
*
* Authors: Jon Trowbridge <trow@ximian.com>
* Chris Toshok <toshok@ximian.com>
*/
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* 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.
*/
#ifndef __E_DESTINATION_H__
#define __E_DESTINATION_H__
#include <glib.h>
#include <glib-object.h>
#include <libebook/e-contact.h>
#include <libebook/e-book.h>
#include <libxml/tree.h>
#define EAB_TYPE_DESTINATION (eab_destination_get_type ())
#define EAB_DESTINATION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EAB_TYPE_DESTINATION, EABDestination))
#define EAB_DESTINATION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EAB_TYPE_DESTINATION, EABDestinationClass))
#define EAB_IS_DESTINATION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EAB_TYPE_DESTINATION))
#define EAB_IS_DESTINATION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EAB_TYPE_DESTINATION))
#define EAB_DESTINATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EAB_TYPE_DESTINATION, EABDestinationClass))
typedef struct _EABDestination EABDestination;
typedef struct _EABDestinationClass EABDestinationClass;
typedef void (*EABDestinationContactCallback) (EABDestination *dest, EContact *contact, gpointer closure);
struct _EABDestinationPrivate;
struct _EABDestination {
GObject object;
struct _EABDestinationPrivate *priv;
};
struct _EABDestinationClass {
GObjectClass parent_class;
void (*changed) (EABDestination *dest);
void (*contact_loaded) (EABDestination *dest);
};
GType eab_destination_get_type (void);
EABDestination *eab_destination_new (void);
void eab_destination_changed (EABDestination *);
EABDestination *eab_destination_copy (const EABDestination *);
void eab_destination_clear (EABDestination *);
gboolean eab_destination_is_empty (const EABDestination *);
gboolean eab_destination_equal (const EABDestination *a, const EABDestination *b);
void eab_destination_set_contact (EABDestination *, EContact *contact, gint email_num);
void eab_destination_set_name (EABDestination *, const gchar *name);
void eab_destination_set_email (EABDestination *, const gchar *email);
void eab_destination_set_html_mail_pref (EABDestination *, gboolean);
gboolean eab_destination_contains_contact (const EABDestination *);
gboolean eab_destination_is_auto_recipient (const EABDestination *);
void eab_destination_set_auto_recipient (EABDestination *, gboolean value);
void eab_destination_use_contact (EABDestination *, EABDestinationContactCallback cb, gpointer closure);
EContact *eab_destination_get_contact (const EABDestination *);
gint eab_destination_get_email_num (const EABDestination *);
const gchar *eab_destination_get_name (const EABDestination *); /* "Jane Smith" */
const gchar *eab_destination_get_email (const EABDestination *); /* "jane@assbarn.com" */
const gchar *eab_destination_get_address (const EABDestination *);; /* "Jane Smith <jane@assbarn.com>" (or a comma-sep set of such for a list) */
void eab_destination_set_raw (EABDestination *, const gchar *free_form_string);
const gchar *eab_destination_get_textrep (const EABDestination *, gboolean include_email); /* "Jane Smith" or "jane@assbarn.com" */
gboolean eab_destination_is_evolution_list (const EABDestination *);
gboolean eab_destination_list_show_addresses (const EABDestination *);
/* If true, they want HTML mail. */
gboolean eab_destination_get_html_mail_pref (const EABDestination *);
void eab_destination_load_contact (EABDestination *, EBook *);
void eab_destination_load_contact_delayed (EABDestination *, EBook *, gint delay); /* delay < 0: "default" */
void eab_destination_cancel_contact_load (EABDestination *);
gboolean eab_destination_unload_contact (EABDestination *);
gchar *eab_destination_get_address_textv (EABDestination **);
gchar *eab_destination_export (const EABDestination *);
EABDestination *eab_destination_import (const gchar *str);
gchar *eab_destination_exportv (EABDestination **);
EABDestination **eab_destination_importv (const gchar *str);
EABDestination **eab_destination_list_to_vector_sized (GList *, int n);
EABDestination **eab_destination_list_to_vector (GList *);
void eab_destination_freev (EABDestination **);
void eab_destination_touch (EABDestination *);
void eab_destination_touchv (EABDestination **);
#endif /* __EAB_DESTINATION_H__ */
|