2011-10-07 [colin] 3.7.10cvs21
[claws.git] / src / statusbar.c
index df55616a948f5ba64a3b5cf0c080744f78591cce..020031e8b6c31c6f1be822a3b55f2fd2b9ed27f3 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999,2000 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2011 Hiroyuki Yamamoto and the Claws Mail team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
@@ -13,8 +13,8 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 #ifdef HAVE_CONFIG_H
 #endif
 
 #include <glib.h>
-#include <gtk/gtkstatusbar.h>
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
 #include <stdarg.h>
 
-#include "intl.h"
+#include "mainwindow.h"
 #include "statusbar.h"
 #include "gtkutils.h"
 #include "utils.h"
+#include "log.h"
+#include "hooks.h"
+
+#ifdef MAEMO
+#ifdef CHINOOK
+#include <hildon/hildon-banner.h>
+#else
+#include <hildon-widgets/hildon-banner.h>
+#endif
+#endif
+
 
 #define BUFFSIZE 1024
 
 static GList *statusbar_list = NULL;
+gint statusbar_puts_all_hook_id = -1;
 
 GtkWidget *statusbar_create(void)
 {
        GtkWidget *statusbar;
+       GtkWidget *child;
+       GtkWidget *parent;
+       GtkWidget *hbox;
 
        statusbar = gtk_statusbar_new();
+       gtk_widget_set_size_request(statusbar, 1, -1);
        statusbar_list = g_list_append(statusbar_list, statusbar);
+#if !GTK_CHECK_VERSION(3, 0, 0)
+       gtk_statusbar_set_has_resize_grip(GTK_STATUSBAR(statusbar), 
+                                         FALSE);
+#else
+       gtk_window_set_has_resize_grip(GTK_WINDOW(statusbar), 
+                                         FALSE);
+#endif
+       gtk_container_set_border_width(GTK_CONTAINER(statusbar), 1);
+#if GTK_CHECK_VERSION (2, 19, 1)
+       child = gtk_statusbar_get_message_area(GTK_STATUSBAR(statusbar));
+#else
+       child = GTK_STATUSBAR(statusbar)->label;
+#endif
+       parent = gtk_widget_get_parent(child);
+       gtk_container_remove(GTK_CONTAINER(parent), g_object_ref(child));
+       hbox = gtk_hbox_new(FALSE, 0);
+       gtk_container_add(GTK_CONTAINER(parent), hbox);
+       gtk_widget_show(hbox);
+       gtk_box_pack_start(GTK_BOX(hbox), child, TRUE, TRUE, 0);
+       g_object_unref(child);  
 
        return statusbar;
 }
@@ -48,31 +85,17 @@ void statusbar_puts(GtkStatusbar *statusbar, const gchar *str)
 {
        gint cid;
        gchar *buf;
+       gchar *tmp;
 
-       buf = g_strdup(str);
-       strretchomp(buf);
-       if (strlen(buf) > 76) {
-               wchar_t *wbuf;
-
-               wbuf = strdup_mbstowcs(buf);
-
-               if (wcslen(wbuf) > 60) {
-                       gchar *tmp;
-
-                       g_free(buf);
-                       wbuf[60] = (wchar_t)0;
-                       tmp = strdup_wcstombs(wbuf);
-                       buf = g_strconcat(tmp, "...", NULL);
-                       g_free(tmp);
-               }
-
-               g_free(wbuf);
-       }
+       tmp = g_strdup(str);
+       strretchomp(tmp);
+       buf = trim_string(tmp, 76);
+       g_free(tmp);
 
        cid = gtk_statusbar_get_context_id(statusbar, "Standard Output");
        gtk_statusbar_pop(statusbar, cid);
        gtk_statusbar_push(statusbar, cid, buf);
-       gtkut_widget_wait_for_draw(GTK_WIDGET(statusbar)->parent);
+       gtkut_widget_draw_now(GTK_WIDGET(statusbar));
 
        g_free(buf);
 }
@@ -97,6 +120,69 @@ void statusbar_print(GtkStatusbar *statusbar, const gchar *format, ...)
        statusbar_puts(statusbar, buf);
 }
 
+#ifdef MAEMO
+static GSList *banner_texts = NULL;
+static GtkWidget *banner = NULL;
+void statuswindow_print_all(const gchar *format, ...)
+{
+       va_list args;
+       gchar buf[BUFFSIZE];
+       GList *cur;
+
+       va_start(args, format);
+       g_vsnprintf(buf, sizeof(buf), format, args);
+       va_end(args);
+
+       for (cur = statusbar_list; cur != NULL; cur = cur->next)
+               statusbar_puts(GTK_STATUSBAR(cur->data), buf);
+       if (mainwindow_get_mainwindow()) {
+               if (banner != NULL) {
+                       gchar *last_text = (gchar *)banner_texts->data;
+                       if (!strcmp2(last_text, buf))
+                               return;
+               }
+               statusbar_pop_all();
+               if (banner == NULL) {
+                       banner = hildon_banner_show_animation(
+                               mainwindow_get_mainwindow()->window,
+                               NULL,
+                               buf);
+                       g_object_ref(banner);
+                       banner_texts = g_slist_prepend(banner_texts, g_strdup(buf));
+               } else {
+                       hildon_banner_set_text(HILDON_BANNER(banner), buf);
+                       banner_texts = g_slist_prepend(banner_texts, g_strdup(buf));
+               }
+       }
+}
+
+void statuswindow_pop_all(void)
+{
+       GList *cur;
+       gint cid;
+
+       for (cur = statusbar_list; cur != NULL; cur = cur->next) {
+               cid = gtk_statusbar_get_context_id(GTK_STATUSBAR(cur->data),
+                                                  "Standard Output");
+               gtk_statusbar_pop(GTK_STATUSBAR(cur->data), cid);
+       }
+       if (banner && banner_texts) {
+               gchar *old_text = (gchar *)banner_texts->data;
+               gchar *prev_text = NULL;
+               banner_texts = g_slist_remove(banner_texts, old_text);  
+               g_free(old_text);
+               if (banner_texts) {
+                       prev_text = (gchar *)banner_texts->data;
+                       hildon_banner_set_text(HILDON_BANNER(banner), prev_text);
+               } else {
+                       gtk_widget_destroy(banner);
+                       g_object_unref(banner);
+                       banner = NULL;
+               }
+       }
+}
+#endif
+
 void statusbar_print_all(const gchar *format, ...)
 {
        va_list args;
@@ -122,3 +208,58 @@ void statusbar_pop_all(void)
                gtk_statusbar_pop(GTK_STATUSBAR(cur->data), cid);
        }
 }
+
+static gboolean statusbar_puts_all_hook (gpointer source, gpointer data)
+{
+       LogText *logtext = (LogText *) source;
+
+       cm_return_val_if_fail(logtext != NULL, TRUE);
+       cm_return_val_if_fail(logtext->text != NULL, TRUE);
+
+       statusbar_pop_all();
+       if (logtext->type == LOG_NORMAL) {
+               statusbar_puts_all(logtext->text + LOG_TIME_LEN);
+       } else if (logtext->type == LOG_MSG) {
+               statusbar_puts_all(logtext->text);
+       }
+
+       return FALSE;
+}
+
+void statusbar_verbosity_set(gboolean verbose)
+{
+       if (verbose && (statusbar_puts_all_hook_id == -1)) {
+               statusbar_puts_all_hook_id =
+                       hooks_register_hook(LOG_APPEND_TEXT_HOOKLIST, statusbar_puts_all_hook, NULL);
+       } else if (!verbose && (statusbar_puts_all_hook_id != -1)) {
+               hooks_unregister_hook(LOG_APPEND_TEXT_HOOKLIST, statusbar_puts_all_hook_id);
+               statusbar_puts_all_hook_id = -1;
+               statusbar_pop_all();
+       }
+}
+
+void statusbar_progress_all (gint done, gint total, gint step) 
+{
+       GtkProgressBar *progressbar = GTK_PROGRESS_BAR(
+                                       mainwindow_get_mainwindow()->progressbar);
+       gchar buf[32];
+       
+       if (total && done % step == 0) {
+#ifdef GENERIC_UMPC
+               /* use a more compact format */
+               const gchar *format = "%d/%d";
+#else
+               const gchar *format = "%d / %d";
+#endif
+               g_snprintf(buf, sizeof(buf), format, done, total);
+               gtk_progress_bar_set_text(progressbar, buf);
+               gtk_progress_bar_set_fraction(progressbar,
+                        (total == 0) ? 0 : (gfloat)done / (gfloat)total);
+               if (!gtkut_widget_get_visible(GTK_WIDGET(progressbar)))
+                       gtk_widget_show(GTK_WIDGET(progressbar));
+       } else if (total == 0) {
+               gtk_progress_bar_set_text(progressbar, "");
+               gtk_progress_bar_set_fraction(progressbar, 0.0);
+               gtk_widget_hide(GTK_WIDGET(progressbar));
+       }
+}