b7e4917caf
* src/compose.c * src/folder.c * src/imap.c * src/inc.c * src/main.c * src/mainwindow.c * src/news.c * src/send.c * src/statusbar.[ch] * src/common/hooks.c * src/common/log.[ch] o handle verbose logging in statusbar directly in statusbar code and common code does not need any knowledge about a statusbar o remove direct calls to statusbar_(puts|pop)_all functions
157 lines
3.7 KiB
C
157 lines
3.7 KiB
C
/*
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
|
* Copyright (C) 1999,2000 Hiroyuki Yamamoto
|
|
*
|
|
* 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
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* 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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <glib.h>
|
|
#include <gtk/gtkstatusbar.h>
|
|
#include <stdarg.h>
|
|
|
|
#include "intl.h"
|
|
#include "statusbar.h"
|
|
#include "gtkutils.h"
|
|
#include "utils.h"
|
|
#include "log.h"
|
|
#include "hooks.h"
|
|
|
|
#define BUFFSIZE 1024
|
|
|
|
static GList *statusbar_list = NULL;
|
|
gint statusbar_puts_all_hook_id = -1;
|
|
|
|
GtkWidget *statusbar_create(void)
|
|
{
|
|
GtkWidget *statusbar;
|
|
|
|
statusbar = gtk_statusbar_new();
|
|
|
|
statusbar_list = g_list_append(statusbar_list, statusbar);
|
|
|
|
return statusbar;
|
|
}
|
|
|
|
void statusbar_puts(GtkStatusbar *statusbar, const gchar *str)
|
|
{
|
|
gint cid;
|
|
gchar *buf;
|
|
|
|
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);
|
|
}
|
|
|
|
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);
|
|
|
|
g_free(buf);
|
|
}
|
|
|
|
void statusbar_puts_all(const gchar *str)
|
|
{
|
|
GList *cur;
|
|
|
|
for (cur = statusbar_list; cur != NULL; cur = cur->next)
|
|
statusbar_puts(GTK_STATUSBAR(cur->data), str);
|
|
}
|
|
|
|
void statusbar_print(GtkStatusbar *statusbar, const gchar *format, ...)
|
|
{
|
|
va_list args;
|
|
gchar buf[BUFFSIZE];
|
|
|
|
va_start(args, format);
|
|
g_vsnprintf(buf, sizeof(buf), format, args);
|
|
va_end(args);
|
|
|
|
statusbar_puts(statusbar, buf);
|
|
}
|
|
|
|
void statusbar_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);
|
|
}
|
|
|
|
void statusbar_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);
|
|
}
|
|
}
|
|
|
|
gboolean statusbar_puts_all_hook (gpointer source, gpointer data)
|
|
{
|
|
LogText *logtext = (LogText *) source;
|
|
|
|
g_return_val_if_fail(logtext != NULL, TRUE);
|
|
g_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();
|
|
}
|
|
}
|