53e79e8209076d4b1884dfc93ea266601c600c06
[modest] / src / widgets / modest-header-view.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef __MODEST_HEADER_VIEW_H__
31 #define __MODEST_HEADER_VIEW_H__
32
33 #include <tny-folder.h>
34 #include <tny-gtk-account-list-model.h>
35 #include <tny-msg.h>
36 #include <tny-header.h>
37 #include <tny-gtk-header-list-model.h>
38
39 G_BEGIN_DECLS
40
41 /* convenience macros */
42 #define MODEST_TYPE_HEADER_VIEW             (modest_header_view_get_type())
43 #define MODEST_HEADER_VIEW(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_HEADER_VIEW,ModestHeaderView))
44 #define MODEST_HEADER_VIEW_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_HEADER_VIEW,ModestHeaderViewClass))
45 #define MODEST_IS_HEADER_VIEW(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_HEADER_VIEW))
46 #define MODEST_IS_HEADER_VIEW_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_HEADER_VIEW))
47 #define MODEST_HEADER_VIEW_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_HEADER_VIEW,ModestHeaderViewClass))
48
49 typedef struct _ModestHeaderView      ModestHeaderView;
50 typedef struct _ModestHeaderViewClass ModestHeaderViewClass;
51
52 struct _ModestHeaderView {
53          GtkTreeView parent;
54         /* insert public members, if any */
55 };
56
57 #define MODEST_HEADER_VIEW_COLUMN    "header-view-column"
58 #define MODEST_HEADER_VIEW_FLAG_SORT "header-view-flags-sort"
59
60 typedef enum _ModestHeaderViewColumn {
61         MODEST_HEADER_VIEW_COLUMN_FROM                  = 0,
62         MODEST_HEADER_VIEW_COLUMN_TO                    = 1,
63         MODEST_HEADER_VIEW_COLUMN_SUBJECT               = 2,
64         MODEST_HEADER_VIEW_COLUMN_SENT_DATE             = 3,
65         MODEST_HEADER_VIEW_COLUMN_RECEIVED_DATE         = 4,
66         MODEST_HEADER_VIEW_COLUMN_MSGTYPE               = 5,
67         MODEST_HEADER_VIEW_COLUMN_ATTACH                = 6,
68         MODEST_HEADER_VIEW_COLUMN_SIZE                  = 7,
69         MODEST_HEADER_VIEW_COLUMN_STATUS                = 8,
70
71         /*
72          * these two are for compact display on small devices,
73          * with two line display with all relevant headers
74          */
75         MODEST_HEADER_VIEW_COLUMN_COMPACT_FLAG          = 9, /* priority and attachments */
76         MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN     = 10, /* incoming mail */
77         MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT    = 11,/* outgoing mail */
78         MODEST_HEADER_VIEW_COLUMN_COMPACT_SENT_DATE     = 12,
79         MODEST_HEADER_VIEW_COLUMN_COMPACT_RECEIVED_DATE = 13,
80
81         MODEST_HEADER_VIEW_COLUMN_NUM
82         
83 } ModestHeaderViewColumn;
84
85 /*
86  * this can be extended with more style thingies,
87  * to make a small-device specific display
88  */
89 typedef enum _ModestHeaderViewStyle {
90         MODEST_HEADER_VIEW_STYLE_DETAILS   = 0, /* many columns, single line, col headers visible */
91         MODEST_HEADER_VIEW_STYLE_TWOLINES  = 1, /* two-line headers, col headers invisible */
92         
93         MODEST_HEADER_VIEW_STYLE_NUM    
94 } ModestHeaderViewStyle;
95
96 typedef enum _ModestItemType {
97         MODEST_ITEM_TYPE_MESSAGE,
98         MODEST_ITEM_TYPE_FOLDER,
99         MODEST_ITEM_TYPE_NUM
100 } ModestItemType;
101
102
103 struct _ModestHeaderViewClass {
104         GtkTreeViewClass parent_class;
105
106         void (*header_selected) (ModestHeaderView* self,
107                                  TnyHeader *header,
108                                  gpointer user_data);
109
110         void (*item_not_found) (ModestHeaderView* self,
111                                 ModestItemType type,
112                                 gpointer user_data);
113
114         void (*header_activated) (ModestHeaderView* self,
115                                   TnyHeader *header,
116                                   gpointer user_data);
117
118         /* msg == NULL implies that the operation is finished, ie.
119          * the progress indictation can be hidden */
120         void (*status_update) (ModestHeaderView* self,
121                                const gchar* msg,
122                                gint num, gint total,
123                                gpointer user_data);
124 };
125
126 /**
127  * modest_header_view_get_type:
128  * 
129  * get the GType for ModestHeaderView
130  *  
131  * Returns: the GType
132  */
133 GType        modest_header_view_get_type    (void) G_GNUC_CONST;
134
135
136 /**
137  * modest_header_view_new:
138  * @folder: a TnyMsgFolder object
139  * @style: a ModestHeaderViewColumn with the style of this listview
140  *  (   MODEST_HEADER_VIEW_STYLE_NORMAL or MODEST_HEADER_VIEW_STYLE_COMPACT)
141  * 
142  * create a new ModestHeaderView instance, based on a folder iface
143  *   
144  * Returns: a new GtkWidget (a GtkTreeView-subclass)
145  */
146 GtkWidget*   modest_header_view_new        (TnyFolder *folder,
147                                             ModestHeaderViewStyle style);
148
149 /**
150  * modest_header_view_set_folder:
151  * @self: a ModestHeaderView instance
152  * @folder: a TnyFolder object
153  * 
154  * set the folder for this ModestHeaderView
155  */
156 void         modest_header_view_set_folder (ModestHeaderView *self,
157                                             TnyFolder *folder);
158
159 /**
160  * modest_header_view_get_folder:
161  * @self: a ModestHeaderView instance
162  * 
163  * get the folder in this ModestHeaderView
164  *  
165  * Returns: the tny folder instance or NULL if there is none
166  */
167 TnyFolder *modest_header_view_get_folder (ModestHeaderView *self);
168
169
170 /**
171  * modest_header_view_set_columns:
172  * @self: a ModestHeaderView instance
173  * @columns: a list of ModestHeaderViewColumn
174  * @type: #TnyFolderType type
175  * 
176  * set the columns for this ModestHeaderView.
177  *  
178  * Returns: TRUE if it succeeded, FALSE otherwise
179  */
180 gboolean modest_header_view_set_columns (ModestHeaderView *self,
181                                          const GList *columns,
182                                          TnyFolderType type);
183 /**
184  * modest_header_view_get_columns:
185  * @self: a ModestHeaderView instance
186  * 
187  * get the GtkTreeColumns for this ModestHeaderView. Each one of the
188  * tree columns will have property  than can be retrieved
189  * with g_object_get_data MODEST_HEADER_VIEW_COLUMN (#define),
190  * and which contains the corresponding ModestHeaderViewColumn
191  *  
192  * Returns: newly allocated list of #GtkTreeViewColumns objects, or NULL in case of no columns or error
193  * You must free the list with g_list_free
194  */
195 GList*  modest_header_view_get_columns (ModestHeaderView *self);
196
197
198 /**
199  * modest_header_view_set_style:
200  * @self: a ModestHeaderView instance
201  * @style: the style for this tree view
202  * 
203  * set the style for this ModestHeaderView
204  *  
205  * Returns: TRUE if it succeeded, FALSE otherwise
206  */
207 gboolean   modest_header_view_set_style (ModestHeaderView *self,
208                                          ModestHeaderViewStyle style);
209
210 /**
211  * modest_header_view_set_folder:
212  * @self: a ModestHeaderView instance
213  * 
214  * get the style for this ModestHeaderView
215  *  
216  * Returns: the current style
217  */
218 ModestHeaderViewStyle   modest_header_view_get_style (ModestHeaderView *self);
219
220 /**
221  * modest_header_view_get_selected_headers:
222  * @self: a ModestHeaderView instance
223  * 
224  * get the list of the currently selected TnyHeader's
225  *  
226  * Returns: the list with the currently selected headers
227  */
228 TnyList* modest_header_view_get_selected_headers (ModestHeaderView *self);
229
230
231 /**
232  * modest_header_view_is_empty:
233  * @self: a valid ModestHeaderView instance
234  * 
235  * see if this header view is empty; use this function instead of
236  * using the GtkTreeView parent directly, as 'empty' in this case
237  * may mean that there is one "This is empty"-message, and of course
238  * GtkTreeView then thinks it is *not* empty
239  *  
240  * Returns: TRUE if the header view is empty, FALSE otherwise
241  */
242 gboolean  modest_header_view_is_empty (ModestHeaderView *self);
243
244
245
246 /**
247  * modest_header_view_select_next:
248  * @self: a #ModestHeaderView
249  * 
250  * Selects the header next to the current selected one
251  **/
252 void         modest_header_view_select_next          (ModestHeaderView *self);
253
254 /**
255  * modest_header_view_select_prev:
256  * @self: a #ModestHeaderView
257  * 
258  * Selects the previous header of the current selected one
259  **/
260 void         modest_header_view_select_prev          (ModestHeaderView *self);
261
262
263 /* PROTECTED method. It's useful when we want to force a given
264    selection to reload a msg. For example if we have selected a header
265    in offline mode, when Modest become online, we want to reload the
266    message automatically without an user click over the header */
267 void 
268 _modest_header_view_change_selection (GtkTreeSelection *selection,
269                                       gpointer user_data);
270
271 /**
272  * modest_header_view_get_sort_column_id:
273  * @self: a #ModestHeaderView
274  * @type: #TnyFolderType type
275  * 
276  * Gets the selected logical columnd id for sorting.
277  **/
278 gint
279 modest_header_view_get_sort_column_id (ModestHeaderView *self, TnyFolderType type);
280
281 /**
282  * modest_header_view_get_sort_type:
283  * @self: a #ModestHeaderView
284  * @type: #TnyFolderType type
285  * 
286  * Gets the selected sort type.
287  **/
288 GtkSortType
289 modest_header_view_get_sort_type (ModestHeaderView *self, TnyFolderType type);
290
291 /**
292  * modest_header_view_set_sort_params:
293  * @self: a #ModestHeaderView
294  * @sort_colid: logical column id to sort
295  * @sort_type: #GtkSortType sort type
296  * @type: #TnyFolderType type
297  * 
298  * Sets the logical columnd id and sort type for sorting operations.
299  **/
300 void
301 modest_header_view_set_sort_params (ModestHeaderView *self, guint sort_colid, GtkSortType sort_type, TnyFolderType type);
302
303 /**
304  * modest_header_view_set_sort_params:
305  * @self: a #ModestHeaderView
306  * @sort_colid: logical column id to sort
307  * @sort_type: #GtkSortType sort type
308  * 
309  * Sorts headers treeview by logical column id, @sort_colid, using a 
310  * @sort_type sorting method. In addition, new headder settings will be 
311  * stored in @self object. 
312  **/
313 void
314 modest_header_view_sort_by_column_id (ModestHeaderView *self, 
315                                       guint sort_colid,
316                                       GtkSortType sort_type);
317
318
319 G_END_DECLS
320
321
322
323 #endif /* __MODEST_HEADER_VIEW_H__ */
324