sync with 0.4.65cvs11
[claws.git] / src / statusbar.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999,2000 Hiroyuki Yamamoto
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <glib.h>
25 #include <gtk/gtkstatusbar.h>
26 #include <stdarg.h>
27
28 #include "intl.h"
29 #include "statusbar.h"
30 #include "gtkutils.h"
31 #include "utils.h"
32
33 #define BUFFSIZE 1024
34
35 static GList *statusbar_list = NULL;
36
37 GtkWidget *statusbar_create(void)
38 {
39         GtkWidget *statusbar;
40
41         statusbar = gtk_statusbar_new();
42         statusbar_list = g_list_append(statusbar_list, statusbar);
43
44         return statusbar;
45 }
46
47 void statusbar_puts(GtkStatusbar *statusbar, const gchar *str)
48 {
49         gint cid;
50         gchar *buf;
51
52         buf = g_strdup(str);
53         strretchomp(buf);
54         if (strlen(buf) > 76) {
55                 wchar_t *wbuf;
56
57                 wbuf = strdup_mbstowcs(buf);
58
59                 if (wcslen(wbuf) > 60) {
60                         gchar *tmp;
61
62                         g_free(buf);
63                         wbuf[60] = (wchar_t)0;
64                         tmp = strdup_wcstombs(wbuf);
65                         buf = g_strconcat(tmp, "...", NULL);
66                         g_free(tmp);
67                 }
68
69                 g_free(wbuf);
70         }
71
72         cid = gtk_statusbar_get_context_id(statusbar, "Standard Output");
73         gtk_statusbar_pop(statusbar, cid);
74         gtk_statusbar_push(statusbar, cid, buf);
75         gtkut_widget_wait_for_draw(GTK_WIDGET(statusbar)->parent);
76
77         g_free(buf);
78 }
79
80 void statusbar_puts_all(const gchar *str)
81 {
82         GList *cur;
83
84         for (cur = statusbar_list; cur != NULL; cur = cur->next)
85                 statusbar_puts(GTK_STATUSBAR(cur->data), str);
86 }
87
88 void statusbar_print(GtkStatusbar *statusbar, const gchar *format, ...)
89 {
90         va_list args;
91         gchar buf[BUFFSIZE];
92
93         va_start(args, format);
94         g_vsnprintf(buf, sizeof(buf), format, args);
95         va_end(args);
96
97         statusbar_puts(statusbar, buf);
98 }
99
100 void statusbar_print_all(const gchar *format, ...)
101 {
102         va_list args;
103         gchar buf[BUFFSIZE];
104         GList *cur;
105
106         va_start(args, format);
107         g_vsnprintf(buf, sizeof(buf), format, args);
108         va_end(args);
109
110         for (cur = statusbar_list; cur != NULL; cur = cur->next)
111                 statusbar_puts(GTK_STATUSBAR(cur->data), buf);
112 }
113
114 void statusbar_pop_all(void)
115 {
116         GList *cur;
117         gint cid;
118
119         for (cur = statusbar_list; cur != NULL; cur = cur->next) {
120                 cid = gtk_statusbar_get_context_id(GTK_STATUSBAR(cur->data),
121                                                    "Standard Output");
122                 gtk_statusbar_pop(GTK_STATUSBAR(cur->data), cid);
123         }
124 }