This commit was manufactured by cvs2svn to create branch 'gtk2'.
[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       *button2;
36         GtkWidget       *window;
37         gboolean         visible;
38         gpointer         user_data;
39         gpointer         user_data2;
40         void            (*press) (NoticeView *, gpointer user_data);
41         void            (*press2) (NoticeView *, gpointer user_data);
42 };
43
44 NoticeView      *noticeview_create      (MainWindow     *mainwin);
45 void             noticeview_destroy     (NoticeView     *noticeview);
46 void             noticeview_init        (NoticeView     *noticeview);
47 void             noticeview_set_icon    (NoticeView     *noticeview,
48                                          StockPixmap     icon);
49 void             noticeview_set_text    (NoticeView     *noticeview,
50                                          const gchar    *text);
51 void             noticeview_set_button_text 
52                                         (NoticeView     *noticeview,
53                                          const gchar    *text);
54 void             noticeview_set_2ndbutton_text 
55                                         (NoticeView     *noticeview,
56                                          const gchar    *text);
57 gboolean         noticeview_is_visible  (NoticeView     *noticeview);
58 void             noticeview_show        (NoticeView     *noticeview);
59 void             noticeview_hide        (NoticeView     *noticeview);
60
61 void             noticeview_set_button_press_callback
62                                         (NoticeView     *noticeview,
63                                          GtkSignalFunc   callback,
64                                          gpointer       *user_data);
65 void             noticeview_set_2ndbutton_press_callback
66                                         (NoticeView     *noticeview,
67                                          GtkSignalFunc   callback,
68                                          gpointer       *user_data);
69                                         
70 #endif /* NOTICEVIEW_H__ */