2012-11-29 [colin] 3.9.0cvs30
[claws.git] / src / textview.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail 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 3 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, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifndef __TEXTVIEW_H__
21 #define __TEXTVIEW_H__
22
23 #ifdef HAVE_CONFIG_H
24 #include "claws-features.h"
25 #endif
26
27 #include <glib.h>
28 #include <gtk/gtk.h>
29
30 typedef struct _ClickableText   ClickableText;
31 struct _ClickableText
32 {
33         gchar *uri;
34
35         gchar *filename;
36
37         gpointer data;
38         gint data_len;
39
40         guint start;
41         guint end;
42         
43         gboolean is_quote;
44         gint quote_level;
45         gboolean q_expanded;
46         gchar *fg_color;
47 };
48
49
50 #include "viewtypes.h"
51 #include "procmime.h"
52
53 struct _TextView
54 {
55         GtkWidget *vbox;
56         GtkWidget *scrolledwin;
57         GtkWidget *text;
58
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;
66
67         gboolean default_text;
68         gboolean is_in_signature;
69         gboolean is_diff;
70         
71         GSList *uri_list;
72         gint body_pos;
73
74         MessageView *messageview;
75         gint last_buttonpress;
76
77         ClickableText *uri_hover;
78         GtkTextIter uri_hover_start_iter;
79         GtkTextIter uri_hover_end_iter;
80         GtkWidget *image;
81         gboolean loading;
82         gboolean stop_loading;
83         gint prev_quote_level;
84 };
85
86 TextView *textview_create               (void);
87 void textview_init                      (TextView       *textview);
88 void textview_reflect_prefs             (TextView       *textview);
89
90 void textview_show_part         (TextView       *textview,
91                                  MimeInfo       *mimeinfo,
92                                  FILE           *fp);
93 void textview_show_error        (TextView       *textview);
94 void textview_show_info         (TextView       *textview,
95                                  const gchar    *info_str);
96 void textview_show_mime_part    (TextView       *textview,
97                                  MimeInfo       *partinfo);
98 void textview_clear             (TextView       *textview);
99 void textview_destroy           (TextView       *textview);
100 void textview_set_font          (TextView       *textview,
101                                  const gchar    *codeset);
102 void textview_set_text          (TextView       *textview,
103                                  const gchar    *text);
104 void textview_set_position      (TextView       *textview,
105                                  gint            pos);
106 void textview_scroll_one_line   (TextView       *textview,
107                                  gboolean        up);
108 gboolean textview_scroll_page   (TextView       *textview,
109                                  gboolean        up);
110 void textview_scroll_max        (TextView       *textview,
111                                  gboolean        up);
112
113 gboolean textview_search_string                 (TextView       *textview,
114                                                  const gchar    *str,
115                                                  gboolean        case_sens);
116 gboolean textview_search_string_backward        (TextView       *textview,
117                                                  const gchar    *str,
118                                                  gboolean        case_sens);
119 void textview_cursor_wait(TextView *textview);
120 void textview_cursor_normal(TextView *textview);
121 void textview_show_icon(TextView *textview, const gchar *stock_id);
122 void textview_get_selection_offsets     (TextView       *textview, 
123                                          gint           *sel_start, 
124                                          gint           *sel_end);
125 gboolean textview_uri_security_check    (TextView       *textview, 
126                                          ClickableText  *uri);
127 gchar *textview_get_visible_uri         (TextView       *textview, 
128                                          ClickableText  *uri);
129
130 #define TEXTVIEW_INSERT(str) \
131         gtk_text_buffer_insert_with_tags_by_name \
132                                 (buffer, &iter, str, -1,\
133                                  "header", NULL)
134
135 #define TEXTVIEW_INSERT_BOLD(str) \
136         gtk_text_buffer_insert_with_tags_by_name \
137                                 (buffer, &iter, str, -1,\
138                                  "header", "header_title", NULL)
139
140 #define TEXTVIEW_INSERT_LINK(str, fname, udata) {                               \
141         ClickableText *uri;                                                     \
142         uri = g_new0(ClickableText, 1);                                 \
143         uri->uri = g_strdup("");                                        \
144         uri->start = gtk_text_iter_get_offset(&iter);                   \
145         gtk_text_buffer_insert_with_tags_by_name                        \
146                                 (buffer, &iter, str, -1,                \
147                                  "link", "header_title", "header",      \
148                                  NULL);                                 \
149         uri->end = gtk_text_iter_get_offset(&iter);                     \
150         uri->filename = fname?g_strdup(fname):NULL;                     \
151         uri->data = udata;                                              \
152         textview->uri_list =                                            \
153                 g_slist_prepend(textview->uri_list, uri);               \
154 }
155
156 #endif /* __TEXTVIEW_H__ */