Add preference to allow disabling automatic drafting of encrypted
[claws.git] / src / noticeview.h
1 /* 
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2002-2012 Hiroyuki Yamamoto & The Claws Mail 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 3 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, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifndef NOTICEVIEW_H__
21 #define NOTICEVIEW_H__
22
23 #include "viewtypes.h"
24 #include "stock_pixmap.h"
25
26 struct _NoticeView 
27 {
28         GtkWidget       *vbox;
29         GtkWidget       *hsep;
30         GtkWidget       *hbox;
31         GtkWidget       *icon;
32         GtkWidget       *text;
33         GtkWidget       *button;
34         GtkWidget       *button2;
35         GtkWidget       *window;
36         gboolean         visible;
37         gpointer         user_data;
38         gpointer         user_data2;
39         void            (*press) (NoticeView *, gpointer user_data);
40         void            (*press2) (NoticeView *, gpointer user_data);
41         gboolean         icon_clickable;
42         GtkWidget       *evtbox;
43 #if !GTK_CHECK_VERSION(2,12,0)
44         GtkTooltips *tooltips;
45 #endif
46 };
47
48 NoticeView      *noticeview_create      (MainWindow     *mainwin);
49 void             noticeview_destroy     (NoticeView     *noticeview);
50 void             noticeview_init        (NoticeView     *noticeview);
51 void             noticeview_set_icon    (NoticeView     *noticeview,
52                                          StockPixmap     icon);
53 void             noticeview_set_text    (NoticeView     *noticeview,
54                                          const gchar    *text);
55 void             noticeview_set_button_text 
56                                         (NoticeView     *noticeview,
57                                          const gchar    *text);
58 void             noticeview_set_2ndbutton_text 
59                                         (NoticeView     *noticeview,
60                                          const gchar    *text);
61 gboolean         noticeview_is_visible  (NoticeView     *noticeview);
62 void             noticeview_show        (NoticeView     *noticeview);
63 void             noticeview_hide        (NoticeView     *noticeview);
64
65 void             noticeview_set_button_press_callback
66                                         (NoticeView     *noticeview,
67                                          void           (*callback)(void),
68                                          gpointer       *user_data);
69 void             noticeview_set_2ndbutton_press_callback
70                                         (NoticeView     *noticeview,
71                                          void           (*callback)(void),
72                                          gpointer       *user_data);
73 void             noticeview_set_icon_clickable
74                                         (NoticeView     *noticeview,
75                                          gboolean        setting);                      
76 void             noticeview_set_tooltip
77                                         (NoticeView     *noticeview,
78                                          const gchar    *text);                 
79 #endif /* NOTICEVIEW_H__ */