This commit was manufactured by cvs2svn to create tag 'LAST_STABLE'.
[claws.git] / src / messageview.h
blobdbdfa84eb9d0cb47d6dfa5d9069abffea6fd8c3e
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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.
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, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef __MESSAGEVIEW_H__
21 #define __MESSAGEVIEW_H__
23 #include <glib.h>
24 #include <gtk/gtkwidget.h>
26 typedef struct _MessageView MessageView;
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"
37 typedef enum
39 MVIEW_TEXT,
40 MVIEW_MIME
41 } MessageType;
43 struct _MessageView
45 GtkWidget *vbox;
47 MessageType type;
48 gboolean new_window;
49 GtkWidget *window;
51 /* Toolbar handlebox */
52 GtkWidget *handlebox;
53 Toolbar *toolbar;
54 GtkWidget *menubar;
56 HeaderView *headerview;
57 TextView *textview;
58 ImageView *imageview;
59 MimeView *mimeview;
60 NoticeView *noticeview;
62 MainWindow *mainwin;
64 gboolean visible;
66 /* From messageview_show */
67 gboolean all_headers;
68 MsgInfo *msginfo;
71 MessageView *messageview_create (MainWindow *mainwin);
72 MessageView *messageview_create_with_new_window (MainWindow *mainwin);
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);
83 TextView *messageview_get_current_textview (MessageView *messageview);
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 GList *messageview_get_msgview_list (void);
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);
98 gboolean messageview_is_visible (MessageView *messageview);
100 void messageview_add_toolbar (MessageView *msgview,
101 GtkWidget *vbox);
102 void messageview_reflect_prefs_pixmap_theme (void);
103 #endif /* __MESSAGEVIEW_H__ */