Document hidden pref 'warn_sending_many_recipients_num'
[claws.git] / src / statusbar.h
blob5b6626797cb14661d1cf1c16a861fdac4cce8092
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2013 Hiroyuki Yamamoto and the Claws Mail team
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 3 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef __STATUSBAR_H__
21 #define __STATUSBAR_H__
23 #include <glib.h>
24 #include <gtk/gtk.h>
26 GtkWidget *statusbar_create (void);
27 void statusbar_puts (GtkStatusbar *statusbar,
28 const gchar *str);
29 void statusbar_puts_all (const gchar *str);
30 void statusbar_print (GtkStatusbar *statusbar,
31 const gchar *format, ...)
32 G_GNUC_PRINTF(2, 3);
33 void statusbar_print_all (const gchar *format, ...)
34 G_GNUC_PRINTF(1, 2);
35 void statusbar_pop_all (void);
37 #define statuswindow_print_all statusbar_print_all
38 #define statuswindow_pop_all statusbar_pop_all
40 void statusbar_verbosity_set (gboolean verbose);
42 void statusbar_progress_all (gint done, gint total, gint step);
43 #define STATUSBAR_PUSH(mainwin, str) \
44 { \
45 if (mainwin->statusbar) \
46 gtk_statusbar_push(GTK_STATUSBAR(mainwin->statusbar), \
47 mainwin->folderview_cid, str); \
48 if (mainwin->hbox_stat) \
49 gtkut_widget_draw_now(mainwin->hbox_stat); \
52 #define STATUSBAR_POP(mainwin) \
53 { \
54 if (mainwin->statusbar) \
55 gtk_statusbar_pop(GTK_STATUSBAR(mainwin->statusbar), \
56 mainwin->folderview_cid); \
59 #endif /* __STATUSBAR_H__ */