Set proper logical id for "Invitation" string to mail_fi_invitation.
[modest] / src / gtk / modest-shell.h
index e96d34e..1861f8f 100644 (file)
@@ -32,7 +32,8 @@
 
 #include <glib-object.h>
 #include <gtk/gtk.h>
-#include <modest-window.h>
+#include <widgets/modest-window.h>
+#include <modest-shell-banner.h>
 
 G_BEGIN_DECLS
 
@@ -52,7 +53,7 @@ struct _ModestShell {
 };
 
 struct _ModestShellClass {
-       GtkWindow parent_class;
+       GtkWindowClass parent_class;
 };
 
 
@@ -60,11 +61,16 @@ struct _ModestShellClass {
 GType        modest_shell_get_type    (void) G_GNUC_CONST;
 
 /* typical parameter-less _new function */
-GtkWindow*    modest_shell_new  (void);
+GtkWidget*    modest_shell_new  (void);
 
 ModestWindow *modest_shell_peek_window (ModestShell *shell);
 gboolean modest_shell_delete_window (ModestShell *shell, ModestWindow *window);
 void modest_shell_add_window (ModestShell *shell, ModestWindow *window);
+gint modest_shell_count_windows (ModestShell *shell);
+
+void modest_shell_set_title (ModestShell *shell, ModestWindow *window, const gchar *title);
+void modest_shell_show_progress (ModestShell *shell, ModestWindow *window, gboolean show);
+void modest_shell_add_banner (ModestShell *shell, ModestShellBanner *banner);
 
 
 G_END_DECLS