aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-attachment-bar.h
blob: a9b06552769b5e0b048f922c8b50e9177c78534e (plain) (blame)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>  
 *
 *
 * Authors:
 *      Ettore Perazzoli <ettore@ximian.com>
 *      Srinivasa Ragavan <sragavan@novell.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifndef E_ATTACHMENT_BAR_H
#define E_ATTACHMENT_BAR_H

#include <gtk/gtk.h>
#include <libgnomeui/gnome-icon-list.h>

#include <camel/camel-multipart.h>
#include "e-attachment.h"

#define E_TYPE_ATTACHMENT_BAR \
    (e_attachment_bar_get_type ())
#define E_ATTACHMENT_BAR(obj) \
    (G_TYPE_CHECK_INSTANCE_CAST \
    ((obj), E_TYPE_ATTACHMENT_BAR, EAttachmentBar))
#define E_ATTACHMENT_BAR_CLASS(cls) \
    (G_TYPE_CHECK_CLASS_CAST \
    ((cls), E_TYPE_ATTACHMENT_BAR, EAttachmentBarClass))
#define E_IS_ATTACHMENT_BAR(obj) \
    (G_TYPE_CHECK_INSTANCE_TYPE \
    ((obj), E_TYPE_ATTACHMENT_BAR))
#define E_IS_ATTACHMENT_BAR_CLASS(cls) \
    (G_TYPE_CHECK_CLASS_TYPE \
    ((cls), E_TYPE_ATTACHMENT_BAR))
#define E_ATTACHMENT_BAR_GET_CLASS(obj) \
    (G_TYPE_INSTANCE_GET_CLASS \
    ((obj), E_TYPE_ATTACHMENT_BAR, EAttachmentBarClass))

G_BEGIN_DECLS

typedef struct _EAttachmentBar EAttachmentBar;
typedef struct _EAttachmentBarClass EAttachmentBarClass;
typedef struct _EAttachmentBarPrivate EAttachmentBarPrivate;

struct _EAttachmentBar {
    GnomeIconList parent;
    gboolean expand;
    EAttachmentBarPrivate *priv;
};

struct _EAttachmentBarClass {
    GnomeIconListClass parent_class;

    /* Signals */
    void        (*changed)      (EAttachmentBar *bar);
    void        (*update_actions)   (EAttachmentBar *bar);
};

GType       e_attachment_bar_get_type   (void);
GtkWidget * e_attachment_bar_new        (void);
void        e_attachment_bar_to_multipart   (EAttachmentBar *bar,
                         CamelMultipart *multipart,
                         const gchar *default_charset);
guint       e_attachment_bar_get_num_attachments
                        (EAttachmentBar *bar);
void        e_attachment_bar_attach     (EAttachmentBar *bar,
                         const gchar *filename,
                         const gchar *disposition);
void        e_attachment_bar_attach_mime_part
                        (EAttachmentBar *bar,
                         CamelMimePart *part);
gint        e_attachment_bar_get_download_count
                        (EAttachmentBar *bar);
void        e_attachment_bar_attach_remote_file
                        (EAttachmentBar *bar,
                         const gchar *url,
                         const gchar *disposition);
GSList *    e_attachment_bar_get_attachment (EAttachmentBar *bar,
                         gint id);
void        e_attachment_bar_add_attachment (EAttachmentBar *bar,
                         EAttachment *attachment);
GSList *    e_attachment_bar_get_parts  (EAttachmentBar *bar);
GSList *    e_attachment_bar_get_selected   (EAttachmentBar *bar);
void        e_attachment_bar_set_width  (EAttachmentBar *bar,
                         gint bar_width);
GSList *    e_attachment_bar_get_all_attachments
                        (EAttachmentBar *bar);
void        e_attachment_bar_create_attachment_cache
                        (EAttachment *attachment);
GtkAction * e_attachment_bar_recent_action_new
                        (EAttachmentBar *bar, 
                         const gchar *action_name,
                         const gchar *action_label);
void        e_attachment_bar_add_attachment_silent
                        (EAttachmentBar *bar,
                         EAttachment *attachment);
void        e_attachment_bar_refresh    (EAttachmentBar *bar);
gint        e_attachment_bar_file_chooser_dialog_run
                        (EAttachmentBar *attachment_bar,
                         GtkWidget *dialog);
void        e_attachment_bar_update_actions (EAttachmentBar *attachment_bar);
const gchar *   e_attachment_bar_get_background_filename
                        (EAttachmentBar *attachment_bar);
void        e_attachment_bar_set_background_filename
                        (EAttachmentBar *attachment_bar,
                         const gchar *background_filename);
const gchar *   e_attachment_bar_get_background_options
                        (EAttachmentBar *attachment_bar);
void        e_attachment_bar_set_background_options
                        (EAttachmentBar *attachment_bar,
                         const gchar *background_options);
const gchar *   e_attachment_bar_get_current_folder
                        (EAttachmentBar *attachment_bar);
void        e_attachment_bar_set_current_folder
                        (EAttachmentBar *attachment_bar,
                         const gchar *current_folder);
gboolean    e_attachment_bar_get_editable   (EAttachmentBar *attachment_bar);
void        e_attachment_bar_set_editable   (EAttachmentBar *attachment_bar,
                         gboolean editable);
GtkUIManager *  e_attachment_bar_get_ui_manager (EAttachmentBar *attachment_bar);
GtkAction * e_attachment_bar_get_action (EAttachmentBar *attachment_bar,
                         const gchar *action_name);
GtkActionGroup *e_attachment_bar_get_action_group
                        (EAttachmentBar *attachment_bar,
                         const gchar *group_name);

G_END_DECLS

#endif /* E_ATTACHMENT_BAR_H */