2006-02-16 [cleroy] 2.0.0cvs59
[claws.git] / src / statusbar.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <glib.h>
25 #include <glib/gi18n.h>
26 #include <gtk/gtkstatusbar.h>
27 #include <gtk/gtkprogressbar.h>
28 #include <stdarg.h>
29
30 #include "mainwindow.h"
31 #include "statusbar.h"
32 #include "gtkutils.h"
33 #include "utils.h"
34 #include "log.h"
35 #include "hooks.h"
36
37 #define BUFFSIZE 1024
38
39 static GList *statusbar_list = NULL;
40 gint statusbar_puts_all_hook_id = -1;
41
42 GtkWidget *statusbar_create(void)
43 {
44         GtkWidget *statusbar;
45
46         statusbar = gtk_statusbar_new();
47         gtk_widget_set_size_request(statusbar, 1, -1);
48         statusbar_list = g_list_append(statusbar_list, statusbar);
49         gtk_statusbar_set_has_resize_grip(GTK_STATUSBAR(statusbar), 
50                                           FALSE);
51
52         return statusbar;
53 }
54
55 void statusbar_puts(GtkStatusbar *statusbar, const gchar *str)
56 {
57         gint cid;
58         gchar *buf;
59         gchar *tmp;
60
61         tmp = g_strdup(str);
62         strretchomp(tmp);
63         buf = trim_string(tmp, 76);
64         g_free(tmp);
65
66         cid = gtk_statusbar_get_context_id(statusbar, "Standard Output");
67         gtk_statusbar_pop(statusbar, cid);
68         gtk_statusbar_push(statusbar, cid, buf);
69         gtkut_widget_draw_now(GTK_WIDGET(statusbar));
70
71         g_free(buf);
72 }
73
74 void statusbar_puts_all(const gchar *str)
75 {
76         GList *cur;
77
78         for (cur = statusbar_list; cur != NULL; cur = cur->next)
79                 statusbar_puts(GTK_STATUSBAR(cur->data), str);
80 }
81
82 void statusbar_print(GtkStatusbar *statusbar, const gchar *format, ...)
83 {
84         va_list args;
85         gchar buf[BUFFSIZE];
86
87         va_start(args, format);
88         g_vsnprintf(buf, sizeof(buf), format, args);
89         va_end(args);
90
91         statusbar_puts(statusbar, buf);
92 }
93
94 void statusbar_print_all(const gchar *format, ...)
95 {
96         va_list args;
97         gchar buf[BUFFSIZE];
98         GList *cur;
99
100         va_start(args, format);
101         g_vsnprintf(buf, sizeof(buf), format, args);
102         va_end(args);
103
104         for (cur = statusbar_list; cur != NULL; cur = cur->next)
105                 statusbar_puts(GTK_STATUSBAR(cur->data), buf);
106 }
107
108 void statusbar_pop_all(void)
109 {
110         GList *cur;
111         gint cid;
112
113         for (cur = statusbar_list; cur != NULL; cur = cur->next) {
114                 cid = gtk_statusbar_get_context_id(GTK_STATUSBAR(cur->data),
115                                                    "Standard Output");
116                 gtk_statusbar_pop(GTK_STATUSBAR(cur->data), cid);
117         }
118 }
119
120 gboolean statusbar_puts_all_hook (gpointer source, gpointer data)
121 {
122         LogText *logtext = (LogText *) source;
123
124         g_return_val_if_fail(logtext != NULL, TRUE);
125         g_return_val_if_fail(logtext->text != NULL, TRUE);
126
127         statusbar_pop_all();
128         if (logtext->type == LOG_NORMAL) {
129                 statusbar_puts_all(logtext->text + LOG_TIME_LEN);
130         } else if (logtext->type == LOG_MSG) {
131                 statusbar_puts_all(logtext->text);
132         }
133
134         return FALSE;
135 }
136
137 void statusbar_verbosity_set(gboolean verbose)
138 {
139         if (verbose && (statusbar_puts_all_hook_id == -1)) {
140                 statusbar_puts_all_hook_id =
141                         hooks_register_hook(LOG_APPEND_TEXT_HOOKLIST, statusbar_puts_all_hook, NULL);
142         } else if (!verbose && (statusbar_puts_all_hook_id != -1)) {
143                 hooks_unregister_hook(LOG_APPEND_TEXT_HOOKLIST, statusbar_puts_all_hook_id);
144                 statusbar_puts_all_hook_id = -1;
145                 statusbar_pop_all();
146         }
147 }
148
149 void statusbar_progress_all (gint done, gint total, gint step) 
150 {
151         gchar buf[32];
152         g_snprintf(buf, sizeof(buf), "%d / %d", done, total);
153         if (total && done % step == 0) {
154                 gtk_progress_bar_set_text
155                         (GTK_PROGRESS_BAR(mainwindow_get_mainwindow()->progressbar), buf);
156                 gtk_progress_bar_set_fraction
157                         (GTK_PROGRESS_BAR(mainwindow_get_mainwindow()->progressbar),
158                          (gfloat)done / (gfloat)total);
159         } else if (total == 0) {
160                 gtk_progress_bar_set_text
161                         (GTK_PROGRESS_BAR(mainwindow_get_mainwindow()->progressbar), "");
162                 gtk_progress_bar_set_fraction
163                         (GTK_PROGRESS_BAR(mainwindow_get_mainwindow()->progressbar), 0.0);
164         }
165         
166 }