* replace 'Wating...' with logical id
[modest] / src / modest-ui-actions.h
index c47c66a..c4f5e33 100644 (file)
@@ -67,7 +67,30 @@ void     modest_ui_actions_on_prev          (GtkAction *action, ModestWindow *ma
 
 void     modest_ui_actions_on_message_details (GtkAction *action, ModestWindow *win);
 
-void    modest_ui_actions_toggle_view       (GtkAction *action, ModestMainWindow *main_window);
+
+/**
+ * modest_ui_actions_toggle_folders_view:
+ * @action: the #GtkAction
+ * @main_window: the #ModestMainWindow
+ * 
+ * this action switches between split view (with a folders pane at the
+ * left) and simple view without the left pane with the folders and
+ * accounts. Maybe it's only useful for Maemo code, but as it uses
+ * generic code could be used also by the GNOME UI
+ **/
+void    modest_ui_actions_toggle_folders_view       (GtkAction *action, 
+                                                     ModestMainWindow *main_window);
+
+/**
+ * modest_ui_actions_toggle_folders_view:
+ * @action: the #GtkAction
+ * @main_window: the #ModestMainWindow
+ * 
+ * this action shows or hides the column titles of the header list
+ * view. It also enables the two lines rendering for the treeview rows
+ **/
+void    modest_ui_actions_toggle_header_list_view    (GtkAction *action, 
+                                                      ModestMainWindow *main_window);
 
 /* Widget actions */
 void     modest_ui_actions_on_header_selected          (ModestHeaderView *folder_view, 
@@ -165,11 +188,13 @@ void     modest_ui_actions_on_zoom_minus (GtkAction *action,
 
 void     modest_ui_actions_on_toggle_fullscreen    (GtkToggleAction *toggle,
                                                    ModestWindow *window);
+
+void     modest_ui_actions_on_change_fullscreen    (GtkAction *action,
+                                                   ModestWindow *window);
+
 void     modest_ui_actions_on_paste                    (GtkAction *action,
                                                        ModestWindow *window);
 
-void     modest_ui_actions_on_change_fullscreen    (GtkAction *toggle,
-                                                   ModestWindow *window);
 void     modest_ui_actions_on_select_all               (GtkAction *action,
                                                        ModestWindow *window);
 
@@ -183,6 +208,33 @@ void     modest_ui_actions_on_change_zoom              (GtkRadioAction *action,
                                                        GtkRadioAction *selected,
                                                        ModestWindow *window);
 
+void     modest_ui_actions_msg_edit_on_change_priority (GtkRadioAction *action,
+                                                       GtkRadioAction *selected,
+                                                       ModestWindow *window);
+
+/**
+ * modest_ui_actions_on_toggle_toolbar:
+ * @toggle: 
+ * @window: 
+ * 
+ * Hides/Shows the toolbars of the #ModestWindow instances
+ **/
+void     modest_ui_actions_on_toggle_toolbar           (GtkToggleAction *toggle, 
+                                                       ModestWindow *window);
+
+/**
+ * modest_ui_actions_on_folder_display_name_changed:
+ * @folder_view: a #ModestFolderView
+ * @display_name: the new window title
+ * @window: a #GtkWindow
+ * 
+ * Sets the title of the window to the value specified by
+ * display_name. This function is used typically as a callback to the
+ * "folder-display-name-changed" signal from the #ModestFolderView
+ **/
+void     modest_ui_actions_on_folder_display_name_changed (ModestFolderView *folder_view,
+                                                          const gchar *display_name,
+                                                          GtkWindow *window);
 
 G_END_DECLS
 #endif /* __MODEST_UI_ACTIONS_H__ */