Get the build going.
[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 /** This highlights the field in the proto tree that is at position byte
106  *
107  * @param tvb the current tvbuff
108  * @param byte the byte offset within the packet to highlight
109  * @param tree_view the current tree_view
110  * @param tree the current tree
111  * @return TRUE if highlighting was successful
112  */
113 #if GTK_MAJOR_VERSION < 2
114 gboolean
115 highlight_field(tvbuff_t *tvb, gint byte, GtkCTree *ctree,
116                 proto_tree *tree);
117 #else
118 gboolean
119 highlight_field(tvbuff_t *tvb, gint byte, GtkTreeView *tree_view,
120                 proto_tree *tree);
121 #endif
122
123 /** Callback for "Export Selected Packet Bytes" operation.
124  *
125  * @param w unused
126  * @param data unused
127  */
128 extern void savehex_cb(GtkWidget * w, gpointer data);
129
130 /** Format of packet data to copy to clipboard.
131  *  Lower nibble holds data type, next nibble holds flags.
132  */
133 typedef enum {
134     CD_ALLINFO,     /* All information - columated hex with text in separate column */
135     CD_TEXTONLY,    /* Printable characters */
136     CD_HEX,         /* Hex, space separated, no linebreaks */
137     CD_HEXCOLUMNS,  /* Like "All Information" but with no ASCII */
138     CD_BINARY,      /* Raw binary octets */
139
140     CD_TYPEMASK = 0x0000FFFF,          /* Mask for extracting type */
141     CD_FLAGSMASK = 0xFFFF0000,         /* Mask for extracting flags */
142
143     CD_FLAGS_SELECTEDONLY = 0x00010000 /* Copy only selected bytes */
144 } copy_data_type;
145
146
147 /** Callback for "Copy packet bytes to clipboard" operation.
148  *
149  * @param w unused
150  * @param data unused
151  */
152 extern void copy_hex_cb(GtkWidget * w, gpointer data, copy_data_type data_type);
153
154 /** Redraw a given byte view window.
155  *
156  * @param bv the byte view
157  * @param pd the packet data
158  * @param fd the current fame
159  * @param finfo the current field info
160  * @param len the byte view length
161  */
162 extern void packet_hex_print(GtkWidget *bv, const guint8 *pd, frame_data *fd,
163                  field_info *finfo, guint len);
164
165 /**
166  * Redraw the text using the saved information. Usually called if
167  * the preferences have changed.
168  *
169  * @param bv the byte view
170  */
171 extern void packet_hex_reprint(GtkWidget *bv);
172
173 #if GTK_MAJOR_VERSION < 2
174 /** Set a new font for all protocol trees.
175  *
176  * @param font the new font
177  */
178 extern void set_ptree_font_all(GdkFont *font);
179 #else
180 /** Set a new font for all protocol trees.
181  *
182  * @param font the new font
183  */
184 extern void set_ptree_font_all(PangoFontDescription *font);
185
186 /** Find field in tree view by field_info.
187  *
188  * @param tree_view the tree view to look at
189  * @param finfo the field info the look for
190  * @return the path to the field
191  */
192 extern GtkTreePath *tree_find_by_field_info(GtkTreeView *tree_view, field_info *finfo);
193 #endif
194
195 /** Create a new tree view (packet details).
196  *
197  * @param prefs current preferences
198  * @param tree_view_p fill in the new tree view
199  * @return the new scrolled window (parent of the tree view)
200  */
201 extern GtkWidget * main_tree_view_new(e_prefs *prefs, GtkWidget **tree_view_p);
202
203 /** Clear and redraw the whole tree view.
204  *
205  * @param protocol_tree the currently dissected protocol tree
206  * @param tree_view the tree view to redraw
207  */
208 extern void proto_tree_draw(proto_tree *protocol_tree, GtkWidget *tree_view);
209
210 /** Expand the whole tree view.
211  *
212  * @param protocol_tree the currently dissected protocol tree
213  * @param tree_view the tree view to redraw
214  */
215 extern void expand_all_tree(proto_tree *protocol_tree, GtkWidget *tree_view);
216
217 /** Collapse the whole tree view.
218  *
219  * @param protocol_tree the currently dissected protocol tree
220  * @param tree_view the tree view to redraw
221  */
222 extern void collapse_all_tree(proto_tree *protocol_tree, GtkWidget *tree_view);
223
224 /** Gdk button click appeared, select the byte view from that position.
225  * 
226  * @param widget the tree view
227  * @param event the button event clicked
228  * @return TRUE if could be selected
229  */
230 extern gboolean tree_view_select(GtkWidget *widget, GdkEventButton *event);
231
232 /** Set the selection mode of all packet tree windows.
233  *
234  * @param val GTK_SELECTION_SINGLE if TRUE, GTK_SELECTION_BROWSE if FALSE
235  */
236 extern void set_ptree_sel_browse_all(gboolean val);
237
238
239 /** init the expert colors */
240 extern void proto_draw_colors_init(void);
241
242 /** the expert colors */
243 extern GdkColor expert_color_chat;
244 extern GdkColor expert_color_note;
245 extern GdkColor expert_color_warn;
246 extern GdkColor expert_color_error;
247
248 #endif