X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fwidgets%2Fmodest-folder-view.h;h=0a243f80e71ff75a552cac7818e5decd57ab615a;hp=76186ce2f894e712ddfef051aec5f831da4a103c;hb=0e7f532ff5a83941dec7a9ab31affbca1a65baa6;hpb=c5637dfb0beccca9e090c874336a387277433ab6 diff --git a/src/widgets/modest-folder-view.h b/src/widgets/modest-folder-view.h index 76186ce..0a243f8 100644 --- a/src/widgets/modest-folder-view.h +++ b/src/widgets/modest-folder-view.h @@ -45,6 +45,11 @@ G_BEGIN_DECLS #define MODEST_IS_FOLDER_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_FOLDER_VIEW)) #define MODEST_FOLDER_VIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_FOLDER_VIEW,ModestFolderViewClass)) +typedef enum _ModestFolderViewStyle { + MODEST_FOLDER_VIEW_STYLE_SHOW_ALL, + MODEST_FOLDER_VIEW_STYLE_SHOW_ONE +} ModestFolderViewStyle; + typedef struct _ModestFolderView ModestFolderView; typedef struct _ModestFolderViewClass ModestFolderViewClass; @@ -138,6 +143,105 @@ gboolean modest_folder_view_update_model (ModestFolderView *self, **/ const gchar* modest_folder_view_get_selected_display_name (ModestFolderView *self); + +/** + * modest_folder_view_set_style: + * @self: a #ModestFolderView + * @style: a #ModestFolderViewStyle + * + * Sets the folder view style. There are currently two available, + * MODEST_FOLDER_VIEW_STYLE_SHOW_ALL shows all the active accounts, + * and MODEST_FOLDER_VIEW_STYLE_SHOW_ONE (Maemo style) shows the local + * account the mmc and only one of the available active server + * accounts + + **/ +void modest_folder_view_set_style (ModestFolderView *self, + ModestFolderViewStyle style); + +/** + * modest_folder_view_set_account_id_of_visible_server_account: + * @self: a #ModestFolderView + * @account_id: the remote server account id + * + * sets the server account id (value returned by tny_account_get_id()) + * to the string passed as argument. The remote server with the + * specified id will be the unique visible account if the folder view + * is configured in MODEST_FOLDER_VIEW_STYLE_SHOW_ONE + **/ +void modest_folder_view_set_account_id_of_visible_server_account (ModestFolderView *self, + const gchar *account_id); + +/** + * modest_folder_view_get_account_id_of_visible_server_account: + * @self: a #ModestFolderView + * + * gets the account id of the currently visible server account id + * + * Return value: the visible server account id or NULL if none set + **/ +const gchar* modest_folder_view_get_account_id_of_visible_server_account (ModestFolderView *self); + + +void modest_folder_view_select_first_inbox_or_local (ModestFolderView *self); + +/** + * modest_folder_view_copy_selection: + * @self: a #ModestFolderView + * + * Stores a #TnyList of selected folders in the own clibpoard of + * @self folder view. + **/ +void +modest_folder_view_copy_selection (ModestFolderView *folder_view); + +/** + * modest_folder_view_cut_selection: + * @self: a #ModestFolderView + * + * Stores a #TnyList of selected folders in the own clibpoard of + * @self folder view and filter them into folders tree model to + * hide these rows in treeview. + **/ +void +modest_folder_view_cut_selection (ModestFolderView *folder_view); + + +/** + * modest_folder_view_select_folder + * @self: a #ModestFolderView + * @folder: a #TnyFolder + * @after_change: should we select directly (TRUE), or after the first change to the view (FALSE) + * + * select the given TnyFolder in the folder; + * return TRUE if it succeeded, FALSE otherwise. + **/ +gboolean modest_folder_view_select_folder (ModestFolderView *self, TnyFolder *folder, gboolean after_change); + +/** + * modest_folder_view_paste_selection: + * @self: a #ModestFolderView + * @folders: ouput parameter with a #TnyList of folders which will be returned. + * @delete: output parameter with indication about delete or not the selected folders. + * + * Gets the selected folders to copy/cut. + **/ +void +modest_folder_view_paste_selection (ModestFolderView *folder_view, + TnyList **folders, + gboolean *delete); + +/* + * modest_folder_view_show_non_move_folders: + * @self: a #ModestFolderView + * @show: show or hide the folders + * + * Whether to show folders where no messages can be moved to + **/ +void +modest_folder_view_show_non_move_folders (ModestFolderView *folder_view, + gboolean show); + G_END_DECLS #endif /* __MODEST_FOLDER_VIEW_H__ */