2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2011 Hiroyuki Yamamoto and the Claws Mail team
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.
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, see <http://www.gnu.org/licenses/>.
20 #ifndef __TEXTVIEW_H__
21 #define __TEXTVIEW_H__
30 typedef struct _TextView TextView;
31 typedef struct _ClickableText ClickableText;
50 #include "messageview.h"
56 GtkWidget *scrolledwin;
59 GtkUIManager *ui_manager;
60 GtkActionGroup *link_action_group;
61 GtkWidget *link_popup_menu;
62 GtkActionGroup *mail_action_group;
63 GtkWidget *mail_popup_menu;
64 GtkActionGroup *file_action_group;
65 GtkWidget *file_popup_menu;
67 gboolean default_text;
68 gboolean is_in_signature;
73 MessageView *messageview;
74 gint last_buttonpress;
76 ClickableText *uri_hover;
77 GtkTextIter uri_hover_start_iter;
78 GtkTextIter uri_hover_end_iter;
81 gboolean stop_loading;
82 gint prev_quote_level;
85 TextView *textview_create (void);
86 void textview_init (TextView *textview);
87 void textview_reflect_prefs (TextView *textview);
89 void textview_show_part (TextView *textview,
92 void textview_show_error (TextView *textview);
93 void textview_show_mime_part (TextView *textview,
95 void textview_clear (TextView *textview);
96 void textview_destroy (TextView *textview);
97 void textview_set_font (TextView *textview,
98 const gchar *codeset);
99 void textview_set_text (TextView *textview,
101 void textview_set_position (TextView *textview,
103 void textview_scroll_one_line (TextView *textview,
105 gboolean textview_scroll_page (TextView *textview,
107 void textview_scroll_max (TextView *textview,
110 gboolean textview_search_string (TextView *textview,
113 gboolean textview_search_string_backward (TextView *textview,
116 void textview_cursor_wait(TextView *textview);
117 void textview_cursor_normal(TextView *textview);
118 void textview_show_icon(TextView *textview, const gchar *stock_id);
119 void textview_get_selection_offsets (TextView *textview,
122 gboolean textview_uri_security_check (TextView *textview,
124 gchar *textview_get_visible_uri (TextView *textview,
127 #define TEXTVIEW_INSERT(str) \
128 gtk_text_buffer_insert_with_tags_by_name \
129 (buffer, &iter, str, -1,\
132 #define TEXTVIEW_INSERT_BOLD(str) \
133 gtk_text_buffer_insert_with_tags_by_name \
134 (buffer, &iter, str, -1,\
135 "header", "header_title", NULL)
137 #define TEXTVIEW_INSERT_LINK(str, fname, udata) { \
138 ClickableText *uri; \
139 uri = g_new0(ClickableText, 1); \
140 uri->uri = g_strdup(""); \
141 uri->start = gtk_text_iter_get_offset(&iter); \
142 gtk_text_buffer_insert_with_tags_by_name \
143 (buffer, &iter, str, -1, \
144 "link", "header_title", "header", \
146 uri->end = gtk_text_iter_get_offset(&iter); \
147 uri->filename = fname?g_strdup(fname):NULL; \
149 textview->uri_list = \
150 g_slist_prepend(textview->uri_list, uri); \
153 #endif /* __TEXTVIEW_H__ */