0.8.6claws77
[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 #include "log.h"
33 #include "hooks.h"
34
35 #define BUFFSIZE 1024
36
37 static GList *statusbar_list = NULL;
38 gboolean statusbar_puts_all_hook (gpointer source, gpointer data);
39
40 GtkWidget *statusbar_create(void)
41 {
42         GtkWidget *statusbar;
43
44         statusbar = gtk_statusbar_new();
45         
46         if(statusbar_list == NULL)
47                 hooks_register_hook(STATUSBAR_PUTS_ALL_HOOKLIST, statusbar_puts_all_hook, NULL);
48
49         statusbar_list = g_list_append(statusbar_list, statusbar);
50
51         return statusbar;
52 }
53
54 gboolean statusbar_puts_all_hook (gpointer source, gpointer data)
55 {
56         LogText *logtext = (LogText *) source;
57
58         g_return_val_if_fail(logtext != NULL, NULL);
59
60         statusbar_puts_all(logtext->text);
61
62         return FALSE;
63 }
64
65 void statusbar_puts(GtkStatusbar *statusbar, const gchar *str)
66 {
67         gint cid;
68         gchar *buf;
69
70         buf = g_strdup(str);
71         strretchomp(buf);
72         if (strlen(buf) > 76) {
73                 wchar_t *wbuf;
74
75                 wbuf = strdup_mbstowcs(buf);
76
77                 if (wcslen(wbuf) > 60) {
78                         gchar *tmp;
79
80                         g_free(buf);
81                         wbuf[60] = (wchar_t)0;
82                         tmp = strdup_wcstombs(wbuf);
83                         buf = g_strconcat(tmp, "...", NULL);
84                         g_free(tmp);
85                 }
86
87                 g_free(wbuf);
88         }
89
90         cid = gtk_statusbar_get_context_id(statusbar, "Standard Output");
91         gtk_statusbar_pop(statusbar, cid);
92         gtk_statusbar_push(statusbar, cid, buf);
93         gtkut_widget_wait_for_draw(GTK_WIDGET(statusbar)->parent);
94
95         g_free(buf);
96 }
97
98 void statusbar_puts_all(const gchar *str)
99 {
100         GList *cur;
101
102         for (cur = statusbar_list; cur != NULL; cur = cur->next)
103                 statusbar_puts(GTK_STATUSBAR(cur->data), str);
104 }
105
106 void statusbar_print(GtkStatusbar *statusbar, const gchar *format, ...)
107 {
108         va_list args;
109         gchar buf[BUFFSIZE];
110
111         va_start(args, format);
112         g_vsnprintf(buf, sizeof(buf), format, args);
113         va_end(args);
114
115         statusbar_puts(statusbar, buf);
116 }
117
118 void statusbar_print_all(const gchar *format, ...)
119 {
120         va_list args;
121         gchar buf[BUFFSIZE];
122         GList *cur;
123
124         va_start(args, format);
125         g_vsnprintf(buf, sizeof(buf), format, args);
126         va_end(args);
127
128         for (cur = statusbar_list; cur != NULL; cur = cur->next)
129                 statusbar_puts(GTK_STATUSBAR(cur->data), buf);
130 }
131
132 void statusbar_pop_all(void)
133 {
134         GList *cur;
135         gint cid;
136
137         for (cur = statusbar_list; cur != NULL; cur = cur->next) {
138                 cid = gtk_statusbar_get_context_id(GTK_STATUSBAR(cur->data),
139                                                    "Standard Output");
140                 gtk_statusbar_pop(GTK_STATUSBAR(cur->data), cid);
141         }
142 }