* Now header activated signal in header view also passes the path.
[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-folder-change.h>
35 #include <tny-gtk-account-list-model.h>
36 #include <tny-msg.h>
37 #include <tny-header.h>
38 #include <tny-gtk-header-list-model.h>
39 #include "modest-mail-operation.h"
40 #include "modest-header-view-observer.h"
41
42 G_BEGIN_DECLS
43
44 /* convenience macros */
45 #define MODEST_TYPE_HEADER_VIEW             (modest_header_view_get_type())
46 #define MODEST_HEADER_VIEW(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_HEADER_VIEW,ModestHeaderView))
47 #define MODEST_HEADER_VIEW_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_HEADER_VIEW,ModestHeaderViewClass))
48 #define MODEST_IS_HEADER_VIEW(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_HEADER_VIEW))
49 #define MODEST_IS_HEADER_VIEW_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_HEADER_VIEW))
50 #define MODEST_HEADER_VIEW_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_HEADER_VIEW,ModestHeaderViewClass))
51
52 typedef struct _ModestHeaderView      ModestHeaderView;
53 typedef struct _ModestHeaderViewClass ModestHeaderViewClass;
54
55 struct _ModestHeaderView {
56          GtkTreeView parent;
57         /* insert public members, if any */
58 };
59
60 #define MODEST_HEADER_VIEW_COLUMN    "header-view-column"
61 #define MODEST_HEADER_VIEW_FLAG_SORT "header-view-flags-sort"
62
63 typedef enum _ModestHeaderViewColumn {
64         MODEST_HEADER_VIEW_COLUMN_FROM,
65         MODEST_HEADER_VIEW_COLUMN_TO,
66         MODEST_HEADER_VIEW_COLUMN_SUBJECT,
67         MODEST_HEADER_VIEW_COLUMN_SENT_DATE,
68         MODEST_HEADER_VIEW_COLUMN_RECEIVED_DATE,
69         MODEST_HEADER_VIEW_COLUMN_ATTACH,
70         MODEST_HEADER_VIEW_COLUMN_SIZE,
71         MODEST_HEADER_VIEW_COLUMN_STATUS,
72
73         /*
74          * these two are for compact display on small devices,
75          * with two line display with all relevant headers
76          */
77         MODEST_HEADER_VIEW_COLUMN_COMPACT_FLAG, /* priority and attachments */
78         MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN, /* incoming mail */
79         MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT,/* outgoing mail */
80         MODEST_HEADER_VIEW_COLUMN_COMPACT_SENT_DATE,
81         MODEST_HEADER_VIEW_COLUMN_COMPACT_RECEIVED_DATE,
82
83         MODEST_HEADER_VIEW_COLUMN_NUM
84         
85 } ModestHeaderViewColumn;
86
87 /*
88  * this can be extended with more style thingies,
89  * to make a small-device specific display
90  */
91 typedef enum _ModestHeaderViewStyle {
92         MODEST_HEADER_VIEW_STYLE_DETAILS   = 0, /* many columns, single line, col headers visible */
93         MODEST_HEADER_VIEW_STYLE_TWOLINES  = 1, /* two-line headers, col headers invisible */
94         
95         MODEST_HEADER_VIEW_STYLE_NUM    
96 } ModestHeaderViewStyle;
97
98 typedef enum _ModestItemType {
99         MODEST_ITEM_TYPE_MESSAGE,
100         MODEST_ITEM_TYPE_FOLDER,
101         MODEST_ITEM_TYPE_NUM
102 } ModestItemType;
103
104
105 struct _ModestHeaderViewClass {
106         GtkTreeViewClass parent_class;
107
108         void (*header_selected) (ModestHeaderView* self,
109                                  TnyHeader *header,
110                                  gpointer user_data);
111
112         void (*item_not_found) (ModestHeaderView* self,
113                                 ModestItemType type,
114                                 gpointer user_data);
115
116         void (*header_activated) (ModestHeaderView* self,
117                                   TnyHeader *header,
118                                   GtkTreePath *path,
119                                   gpointer user_data);
120
121         void (*msg_count_changed) (ModestHeaderView* self,
122                                    TnyFolder *folder,
123                                    TnyFolderChange *change,
124                                    gpointer user_data);
125
126         void (*updating_msg_list) (ModestHeaderView *self,
127                                    gboolean starting,
128                                    gpointer user_data);
129 };
130
131 /**
132  * modest_header_view_get_type:
133  * 
134  * get the GType for ModestHeaderView
135  *  
136  * Returns: the GType
137  */
138 GType        modest_header_view_get_type    (void) G_GNUC_CONST;
139
140
141 /**
142  * modest_header_view_new:
143  * @folder: a TnyMsgFolder object
144  * @style: a ModestHeaderViewColumn with the style of this listview
145  *  (   MODEST_HEADER_VIEW_STYLE_NORMAL or MODEST_HEADER_VIEW_STYLE_COMPACT)
146  * 
147  * create a new ModestHeaderView instance, based on a folder iface
148  *   
149  * Returns: a new GtkWidget (a GtkTreeView-subclass)
150  */
151 GtkWidget*   modest_header_view_new        (TnyFolder *folder,
152                                             ModestHeaderViewStyle style);
153
154 /**
155  * modest_header_view_set_folder:
156  * @self: a ModestHeaderView instance
157  * @folder: a TnyFolder object
158  * 
159  * set the folder for this ModestHeaderView
160  */
161 void         modest_header_view_set_folder (ModestHeaderView *self,
162                                             TnyFolder *folder,
163                                             gboolean refresh,
164                                             RefreshAsyncUserCallback callback,
165                                             gpointer user_data);
166
167 /**
168  * modest_header_view_get_folder:
169  * @self: a ModestHeaderView instance
170  * 
171  * get the folder in this ModestHeaderView
172  *  
173  * Returns: the tny folder instance or NULL if there is none
174  */
175 TnyFolder *modest_header_view_get_folder (ModestHeaderView *self);
176
177
178 /**
179  * modest_header_view_set_columns:
180  * @self: a ModestHeaderView instance
181  * @columns: a list of gint ModestHeaderViewColumn column IDs, using GINT_TO_POINTER() and GPOINTER_TO_INT().
182  * @type: #TnyFolderType type
183  * 
184  * set the columns for this ModestHeaderView.
185  *  
186  * Returns: TRUE if it succeeded, FALSE otherwise
187  */
188 gboolean modest_header_view_set_columns (ModestHeaderView *self,
189                                          const GList *columns,
190                                          TnyFolderType type);
191 /**
192  * modest_header_view_get_columns:
193  * @self: a ModestHeaderView instance
194  * 
195  * get the GtkTreeColumns for this ModestHeaderView. Each one of the
196  * tree columns will have property  than can be retrieved
197  * with g_object_get_data MODEST_HEADER_VIEW_COLUMN (#define),
198  * and which contains the corresponding ModestHeaderViewColumn
199  *  
200  * Returns: newly allocated list of #GtkTreeViewColumns objects, or NULL in case of no columns or error
201  * You must free the list with g_list_free
202  */
203 GList*  modest_header_view_get_columns (ModestHeaderView *self);
204
205
206 /**
207  * modest_header_view_set_style:
208  * @self: a ModestHeaderView instance
209  * @style: the style for this tree view
210  * 
211  * set the style for this ModestHeaderView
212  *  
213  * Returns: TRUE if it succeeded, FALSE otherwise
214  */
215 gboolean   modest_header_view_set_style (ModestHeaderView *self,
216                                          ModestHeaderViewStyle style);
217
218 /**
219  * modest_header_view_set_folder:
220  * @self: a ModestHeaderView instance
221  * 
222  * get the style for this ModestHeaderView
223  *  
224  * Returns: the current style
225  */
226 ModestHeaderViewStyle   modest_header_view_get_style (ModestHeaderView *self);
227
228 /**
229  * modest_header_view_count_selected_headers:
230  * @self: a ModestHeaderView instance
231  * 
232  * Check selected headers counter. 
233  * Returns: the number of selected headers.
234  */
235 guint
236 modest_header_view_count_selected_headers (ModestHeaderView *self);
237
238 /**
239  * modest_header_view_has_selected_headers:
240  * @self: a ModestHeaderView instance
241  * 
242  * Check if any row is selected on headers tree view. 
243  * Returns: TRUE if any header is selected, FALSE otherwise.
244  */
245 gboolean
246 modest_header_view_has_selected_headers (ModestHeaderView *self);
247
248 /**
249  * modest_header_view_get_selected_headers:
250  * @self: a ModestHeaderView instance
251  * 
252  * get the list of the currently selected TnyHeader's. The list and
253  * the headers should be freed by the caller
254  *  
255  * Returns: the list with the currently selected headers
256  */
257 TnyList* modest_header_view_get_selected_headers (ModestHeaderView *self);
258
259
260 /**
261  * modest_header_view_is_empty:
262  * @self: a valid ModestHeaderView instance
263  * 
264  * see if this header view is empty; use this function instead of
265  * using the GtkTreeView parent directly, as 'empty' in this case
266  * may mean that there is one "This is empty"-message, and of course
267  * GtkTreeView then thinks it is *not* empty
268  *  
269  * Returns: TRUE if the header view is empty, FALSE otherwise
270  */
271 gboolean  modest_header_view_is_empty (ModestHeaderView *self);
272
273
274
275 /**
276  * modest_header_view_select_next:
277  * @self: a #ModestHeaderView
278  * 
279  * Selects the header next to the current selected one
280  **/
281 void         modest_header_view_select_next          (ModestHeaderView *self);
282
283 /**
284  * modest_header_view_select_prev:
285  * @self: a #ModestHeaderView
286  * 
287  * Selects the previous header of the current selected one
288  **/
289 void         modest_header_view_select_prev          (ModestHeaderView *self);
290
291
292 /* PROTECTED method. It's useful when we want to force a given
293    selection to reload a msg. For example if we have selected a header
294    in offline mode, when Modest become online, we want to reload the
295    message automatically without an user click over the header */
296 void 
297 _modest_header_view_change_selection (GtkTreeSelection *selection,
298                                       gpointer user_data);
299
300 /**
301  * modest_header_view_get_sort_column_id:
302  * @self: a #ModestHeaderView
303  * @type: #TnyFolderType type
304  * 
305  * Gets the selected logical columnd id for sorting.
306  **/
307 gint
308 modest_header_view_get_sort_column_id (ModestHeaderView *self, TnyFolderType type);
309
310 /**
311  * modest_header_view_get_sort_type:
312  * @self: a #ModestHeaderView
313  * @type: #TnyFolderType type
314  * 
315  * Gets the selected sort type.
316  **/
317 GtkSortType
318 modest_header_view_get_sort_type (ModestHeaderView *self, TnyFolderType type);
319
320 /**
321  * modest_header_view_set_sort_params:
322  * @self: a #ModestHeaderView
323  * @sort_colid: logical column id to sort
324  * @sort_type: #GtkSortType sort type
325  * @type: #TnyFolderType type
326  * 
327  * Sets the logical columnd id and sort type for sorting operations.
328  **/
329 void
330 modest_header_view_set_sort_params (ModestHeaderView *self, guint sort_colid, GtkSortType sort_type, TnyFolderType type);
331
332 /**
333  * modest_header_view_set_sort_params:
334  * @self: a #ModestHeaderView
335  * @sort_colid: logical column id to sort
336  * @sort_type: #GtkSortType sort type
337  * 
338  * Sorts headers treeview by logical column id, @sort_colid, using a 
339  * @sort_type sorting method. In addition, new headder settings will be 
340  * stored in @self object. 
341  **/
342 void
343 modest_header_view_sort_by_column_id (ModestHeaderView *self, 
344                                       guint sort_colid,
345                                       GtkSortType sort_type);
346
347 /**
348  * modest_header_view_clear:
349  * @self: a #ModestHeaderView
350  *
351  * Clear the contents of a header view. It internally calls the
352  * set_folder function with last three arguments as NULL
353  **/
354 void
355 modest_header_view_clear (ModestHeaderView *self);
356
357 /**
358  * modest_header_view_copy_selection:
359  * @self: a #ModestHeaderView
360  * 
361  * Stores a #TnyList of selected headers in the own clibpoard of 
362  * @self header view.
363  **/
364 void 
365 modest_header_view_copy_selection (ModestHeaderView *header_view);
366
367 /**
368  * modest_header_view_cut_selection:
369  * @self: a #ModestHeaderView
370  * 
371  * Stores a #TnyList of selected headers in the own clibpoard of 
372  * @self header view and filter them into headers tree model to
373  * hide these rows in treeview.
374  **/
375 void 
376 modest_header_view_cut_selection (ModestHeaderView *header_view);
377
378
379 /**
380  * modest_header_view_paste_selection:
381  * @self: a #ModestHeaderView
382  * @headers: ouput parameter with a #TnyList of headers which will be returned.
383  * @delete: output parameter with indication about delete or not the selected headers. 
384  * 
385  * Gets the selected headers to copy/cut.
386  **/
387 void
388 modest_header_view_paste_selection (ModestHeaderView *header_view,
389                                     TnyList **headers,
390                                     gboolean *delete);
391
392 void modest_header_view_refilter (ModestHeaderView *header_view);
393
394 /**
395  * modest_header_view_add_observer:
396  * @header_view: a #ModestHeaderView
397  * @observer: The observer to notify.
398  * 
399  * Registers a new observer. Warning! Each added observer object must
400  * removed using @modest_header_view_remove_observer before destroying
401  * the observer, or at least when it is under destruction. Also you
402  * should care about that the observer's #update function might be
403  * called any time until the observer is removed.
404  **/
405 void modest_header_view_add_observer(
406                 ModestHeaderView *header_view,
407                 ModestHeaderViewObserver *observer);
408
409 /**
410  * modest_header_view_remove_observer:
411  * @header_view: a #ModestHeaderView
412  * @observer: The observer to remove.
413  * 
414  * Removes exactly one observer from the notification list. If you
415  * added an observer twice, you should call this remove funtion twice
416  * as well.
417  **/
418 void modest_header_view_remove_observer(
419                 ModestHeaderView *header_view,
420                 ModestHeaderViewObserver *observer);
421
422 G_END_DECLS
423
424
425
426 #endif /* __MODEST_HEADER_VIEW_H__ */
427