X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fwidgets%2Fmodest-wizard-dialog.c;h=c2792d15fa77a7cabf04b714cba240cdca028ad3;hb=24e392d70eda5725d60701861dc214ee7f47498c;hp=401d9228e3dd9739d07d18401a397166ab13ede6;hpb=253025cb6efd500ffa6f3a1cf1ce2eb95271e68d;p=modest diff --git a/src/widgets/modest-wizard-dialog.c b/src/widgets/modest-wizard-dialog.c index 401d922..c2792d1 100644 --- a/src/widgets/modest-wizard-dialog.c +++ b/src/widgets/modest-wizard-dialog.c @@ -41,26 +41,15 @@ */ #include -#include -#include -#include -#include -#include -#include -#include #include #ifdef HAVE_CONFIG_H #include #endif -#ifndef MODEST_TOOLKIT_GTK -#if MODEST_HILDON_API == 0 -#include -#else +#ifdef MODEST_TOOLKIT_HILDON2 #include -#endif /*MODEST_HILDON_API == 0*/ -#endif /*!MODEST_TOOLKIT_GTK*/ +#endif #include "modest-wizard-dialog.h" #include "modest-debug.h" @@ -265,16 +254,11 @@ init (ModestWizardDialog *wizard_dialog) #ifdef MODEST_TOOLKIT_GTK priv->image = gtk_image_new_from_stock (GTK_STOCK_PREFERENCES, GTK_ICON_SIZE_DIALOG); #else /*MODEST_TOOLKIT_GTK*/ -#if MODEST_HILDON_API == 0 - priv->image = gtk_image_new_from_icon_name ("qgn_widg_wizard", - HILDON_ICON_SIZE_WIDG_WIZARD); -#else static int icon_size = 0; if (!icon_size) icon_size = gtk_icon_size_register("modest_wizard", 50, 50); priv->image = gtk_image_new_from_icon_name ("qgn_widg_wizard", icon_size); -#endif /*MODEST_HILDON_API == 0*/ #endif /*!MODEST_TOOLKIT_GTK*/ #endif /*MODEST_TOOLKIT_HILDON2 */ /* Default values for user provided properties */ @@ -490,48 +474,33 @@ create_title (ModestWizardDialog *wizard_dialog) gchar *str = NULL; ModestWizardDialogPrivate *priv = NULL; GtkNotebook *notebook = NULL; + gint pages, current; + const gchar *steps; g_return_if_fail (MODEST_IS_WIZARD_DIALOG(wizard_dialog)); g_return_if_fail (wizard_dialog->priv != NULL); - priv = wizard_dialog->priv; + priv = wizard_dialog->priv; notebook = priv->notebook; if (!notebook) return; /* Get page information, we'll need that when creating title */ - gint pages = gtk_notebook_get_n_pages (notebook); + pages = gtk_notebook_get_n_pages (notebook); if (pages == 0) - return; - - gint current = gtk_notebook_get_current_page (priv->notebook); + return; + + current = gtk_notebook_get_current_page (priv->notebook); if (current < 0) - current = 0; - - /* the welcome title on the initial page */ - /* This is the standard wizard title, with, e.g., 1/4 at the end, - * but the Modest UI spec does not want this. */ - /* - if (current == 0) { - str = g_strdup_printf (_HL("ecdg_ti_wizard_welcome"), - priv->wizard_name, pages); - } else { - */ - const gchar *steps = gtk_notebook_get_tab_label_text (notebook, - gtk_notebook_get_nth_page (notebook, current)); - - /* This is the standard wizard title, with, e.g., 1/4 at the end, - * but the Modest UI spec does not want this. - */ - /* - str = g_strdup_printf (_HL("ecdg_ti_wizard_step"), - priv->wizard_name, current + 1, pages, steps); - */ - - str = g_strdup_printf ((steps&&*steps)?_HL("%s: %s"):_HL("%s"), - priv->wizard_name, steps); - /* } */ + current = 0; + + steps = gtk_notebook_get_tab_label_text (notebook, + gtk_notebook_get_nth_page (notebook, current)); + + str = g_strdup_printf ((steps&&*steps)?_HL("%s%s %s"):_HL("%s"), + priv->wizard_name, _HL("ecdg_ti_caption_separator"), + steps); /* Update the dialog to display the generated title */ gtk_window_set_title (GTK_WINDOW (wizard_dialog), str);