0.9.10claws5
[claws.git] / src / noticeview.h
1 /* 
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2002 Hiroyuki Yamamoto & The Sylpheed Claws 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 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 #ifndef NOTICEVIEW_H__
21 #define NOTICEVIEW_H__
22
23 typedef struct _NoticeView      NoticeView;
24
25 #include "stock_pixmap.h"
26
27 struct _NoticeView 
28 {
29         GtkWidget       *vbox;
30         GtkWidget       *hsep;
31         GtkWidget       *hbox;
32         GtkWidget       *icon;
33         GtkWidget       *text;
34         GtkWidget       *button;
35         GtkWidget       *window;
36         gboolean         visible;
37         gpointer         user_data;
38         void            (*press) (NoticeView *, gpointer user_data);
39 };
40
41 NoticeView      *noticeview_create      (MainWindow     *mainwin);
42 void             noticeview_destroy     (NoticeView     *noticeview);
43 void             noticeview_init        (NoticeView     *noticeview);
44 void             noticeview_set_icon    (NoticeView     *noticeview,
45                                          StockPixmap     icon);
46 void             noticeview_set_text    (NoticeView     *noticeview,
47                                          const gchar    *text);
48 void             noticeview_set_button_text 
49                                         (NoticeView     *noticeview,
50                                          const gchar    *text);
51 gboolean         noticeview_is_visible  (NoticeView     *noticeview);
52 void             noticeview_show        (NoticeView     *noticeview);
53 void             noticeview_hide        (NoticeView     *noticeview);
54
55 void             noticeview_set_button_press_callback
56                                         (NoticeView     *noticeview,
57                                          GtkSignalFunc   callback,
58                                          gpointer       *user_data);
59                                         
60 #endif /* NOTICEVIEW_H__ */