put back includes, cleaner ssl certs popups
[claws.git] / src / messageview.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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 __MESSAGEVIEW_H__
21 #define __MESSAGEVIEW_H__
22
23 #include <glib.h>
24 #include <gtk/gtkwidget.h>
25
26 typedef struct _MessageView             MessageView;
27
28 #include "mainwindow.h"
29 #include "headerview.h"
30 #include "textview.h"
31 #include "imageview.h"
32 #include "mimeview.h"
33 #include "noticeview.h"
34 #include "procmsg.h"
35 #include "toolbar.h"
36
37 typedef enum
38 {
39         MVIEW_TEXT,
40         MVIEW_MIME
41 } MessageType;
42
43 struct _MessageView
44 {
45         GtkWidget *vbox;
46         GtkWidget *menubar;
47
48         MessageType type;
49         gboolean new_window;
50         GtkWidget *window;
51
52         /* Toolbar handlebox */
53         GtkWidget *handlebox;
54         Toolbar *toolbar;
55
56         HeaderView *headerview;
57         TextView *textview;
58         ImageView *imageview;
59         MimeView *mimeview;
60         NoticeView *noticeview;
61
62         MainWindow *mainwin;
63
64         gboolean visible;
65
66         /* From messageview_show */
67         gboolean all_headers;
68         MsgInfo *msginfo;
69 };
70
71 MessageView *messageview_create                 (MainWindow     *mainwin);
72 MessageView *messageview_create_with_new_window (MainWindow     *mainwin);
73
74 void messageview_init                           (MessageView    *messageview);
75 void messageview_show                           (MessageView    *messageview,
76                                                  MsgInfo        *msginfo,
77                                                  gboolean        all_headers);
78 void messageview_clear                          (MessageView    *messageview);
79 void messageview_destroy                        (MessageView    *messageview);
80 void messageview_quote_color_set                (void);
81 void messageview_set_font                       (MessageView    *messageview);
82
83 TextView *messageview_get_current_textview      (MessageView    *messageview);
84
85 void messageview_copy_clipboard                 (MessageView    *messageview);
86 void messageview_select_all                     (MessageView    *messageview);
87 void messageview_set_position                   (MessageView    *messageview,
88                                                  gint            pos);
89 void messageview_toggle_view_real(MessageView *messageview);
90
91 gboolean messageview_search_string              (MessageView    *messageview,
92                                                  const gchar    *str,
93                                                  gboolean        case_sens);
94 gboolean messageview_search_string_backward     (MessageView    *messageview,
95                                                  const gchar    *str,
96                                                  gboolean        case_sens);
97
98 gboolean messageview_is_visible                 (MessageView    *messageview);
99
100 #endif /* __MESSAGEVIEW_H__ */