Don't destroy something if it doesn't exist.
[obnox/wireshark/wip.git] / gtk / proto_draw.h
1 /* proto_draw.h
2  * Definitions for GTK+ packet display structures and routines
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __GTKPACKET_H__
26 #define __GTKPACKET_H__
27
28 /** @file
29  *  Packet tree and details panes.
30  *  @ingroup main_window_group
31  */
32
33 /** Create byte views in the main window.
34  */
35 void add_main_byte_views(epan_dissect_t *edt);
36
37 /** Display the protocol tree in the main window.
38  */
39 void main_proto_tree_draw(proto_tree *protocol_tree);
40
41 /** Clear the hex dump and protocol tree panes.
42  */
43 void clear_tree_and_hex_views(void);
44
45
46 /** Get the current text notebook page of the packet details notebook.
47  *
48  * @param nb_ptr the notebook widget
49  * @return the notebook page
50  */
51 extern GtkWidget *get_notebook_bv_ptr(GtkWidget *nb_ptr);
52
53 /**
54  * Get the data and length for a byte view, given the byte view page widget.
55  *
56  * @param byte_view the byte view to look at
57  * @param data_len set "*data_len" to the length
58  * @return the pointer, or NULL on error
59  */
60 extern const guint8 *get_byte_view_data_and_length(GtkWidget *byte_view,
61                                                    guint *data_len);
62
63 /** Set the current text page of the notebook to the window that
64  * refers to a particular tvbuff.
65  *
66  * @param nb_ptr the byte view notebook
67  * @param tvb the tvbuff to look at
68  */
69 extern void set_notebook_page(GtkWidget *nb_ptr, tvbuff_t *tvb);
70
71 /** Redraw a given byte view window.
72  *
73  * @param nb_ptr the byte view notebook
74  * @param fd selected frame
75  * @param finfo selected field_info
76  */
77 extern void redraw_hex_dump(GtkWidget *nb_ptr, frame_data *fd, field_info *finfo);
78
79 /** Redraw all byte view windows. */
80 extern void redraw_hex_dump_all(void);
81
82 /** Create a new byte view (packet details pane).
83  *
84  * @return the new byte view
85  */
86 extern GtkWidget *byte_view_new(void);
87
88 /** Clear and fill all the byte view notebook tabs.
89  *
90  * @param edt current dissections
91  * @param tree_view the corresponding packet tree
92  * @param nb_ptr the byte view notebook
93  */
94 extern void add_byte_views(epan_dissect_t *edt, GtkWidget *tree_view,
95                            GtkWidget *nb_ptr);
96
97 /** Gdk button click appeared, select the byte view from that position.
98  * 
99  * @param widget the byte view
100  * @param event the button event clicked
101  * @return TRUE if could be selected
102  */
103 extern gboolean byte_view_select(GtkWidget *widget, GdkEventButton *event);
104
105 /** Callback for "Export Selected Packet Bytes" operation.
106  *
107  * @param w unused
108  * @param data unused
109  */
110 extern void savehex_cb(GtkWidget * w, gpointer data);
111
112 /** Callback for "Copy packet bytes to clipboard" operation.
113  *
114  * @param w unused
115  * @param data unused
116  */
117 extern void copy_hex_cb(GtkWidget * w, gpointer data, int data_type);
118
119 #if GTK_MAJOR_VERSION < 2
120 /** Redraw a given byte view window.
121  *
122  * @param bv the byte view
123  * @param pd the packet data
124  * @param fd the current fame
125  * @param finfo the current field info
126  * @param len the byte view length
127  */
128 extern void packet_hex_print(GtkText *bv, const guint8 *pd, frame_data *fd,
129                  field_info *finfo, guint len);
130
131 /**
132  * Redraw the text using the saved information. Usually called if
133  * the preferences have changed.
134  *
135  * @param bv the byte view
136  */
137 extern void packet_hex_reprint(GtkText *bv);
138
139 /** Set a new font for all protocol trees.
140  *
141  * @param font the new font
142  */
143 extern void set_ptree_font_all(GdkFont *font);
144 #else
145 /** Redraw a given byte view window.
146  *
147  * @param bv the byte view
148  * @param pd the packet data
149  * @param fd the current fame
150  * @param finfo the current field info
151  * @param len the byte view length
152  */
153 extern void packet_hex_print(GtkTextView *bv, const guint8 *pd, frame_data *fd,
154                  field_info *finfo, guint len);
155
156 /**
157  * Redraw the text using the saved information. Usually called if
158  * the preferences have changed.
159  *
160  * @param bv the byte view
161  */
162 extern void packet_hex_reprint(GtkTextView *bv);
163
164 /** Set a new font for all protocol trees.
165  *
166  * @param font the new font
167  */
168 extern void set_ptree_font_all(PangoFontDescription *font);
169
170 /** Find field in tree view by field_info.
171  *
172  * @param tree_view the tree view to look at
173  * @param finfo the field info the look for
174  * @return the path to the field
175  */
176 extern GtkTreePath *tree_find_by_field_info(GtkTreeView *tree_view, field_info *finfo);
177 #endif
178
179 /** Create a new tree view (packet details).
180  *
181  * @param prefs current preferences
182  * @param tree_view_p fill in the new tree view
183  * @return the new scrolled window (parent of the tree view)
184  */
185 extern GtkWidget * main_tree_view_new(e_prefs *prefs, GtkWidget **tree_view_p);
186
187 /** Clear and redraw the whole tree view.
188  *
189  * @param protocol_tree the currently dissected protocol tree
190  * @param tree_view the tree view to redraw
191  */
192 extern void proto_tree_draw(proto_tree *protocol_tree, GtkWidget *tree_view);
193
194 /** Expand the whole tree view.
195  *
196  * @param protocol_tree the currently dissected protocol tree
197  * @param tree_view the tree view to redraw
198  */
199 extern void expand_all_tree(proto_tree *protocol_tree, GtkWidget *tree_view);
200
201 /** Collapse the whole tree view.
202  *
203  * @param protocol_tree the currently dissected protocol tree
204  * @param tree_view the tree view to redraw
205  */
206 extern void collapse_all_tree(proto_tree *protocol_tree, GtkWidget *tree_view);
207
208 /** Gdk button click appeared, select the byte view from that position.
209  * 
210  * @param widget the tree view
211  * @param event the button event clicked
212  * @return TRUE if could be selected
213  */
214 extern gboolean tree_view_select(GtkWidget *widget, GdkEventButton *event);
215
216 /** Set the selection mode of all packet tree windows.
217  *
218  * @param val GTK_SELECTION_SINGLE if TRUE, GTK_SELECTION_BROWSE if FALSE
219  */
220 extern void set_ptree_sel_browse_all(gboolean val);
221
222
223 /** init the expert colors */
224 extern void proto_draw_colors_init(void);
225
226 /** the expert colors */
227 extern GdkColor expert_color_chat;
228 extern GdkColor expert_color_note;
229 extern GdkColor expert_color_warn;
230 extern GdkColor expert_color_error;
231
232 #endif