Fix a checkhf Warning
[obnox/wireshark/wip.git] / ui_util.h
1 /* ui_util.h
2  * Declarations of UI utility routines; these routines have GUI-independent
3  * APIs, but GUI-dependent implementations, so that they can be called by
4  * GUI-independent code to affect the GUI.
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifndef __UI_UTIL_H__
28 #define __UI_UTIL_H__
29
30 #include "epan/packet_info.h"
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif /* __cplusplus */
35
36 /* gui_utils.c */
37
38 /* Set the name of the top-level window and its icon. */
39 void set_main_window_name(const gchar *);
40 /* Update the name of the main window if the user-specified decoration
41    changed. */
42 void update_main_window_title(void);
43 /* update the main window */
44 extern void main_window_update(void);
45 /* exit the main window */
46 extern void main_window_exit(void);
47 /* quit a nested main window */
48 extern void main_window_nested_quit(void);
49 /* quit the main window */
50 extern void main_window_quit(void);
51
52 /* read from a pipe (callback) */
53 typedef gboolean (*pipe_input_cb_t) (gint source, gpointer user_data);
54 /* install callback function, called if pipe input is available */
55 extern void pipe_input_set_handler(gint source, gpointer user_data, int *child_process, pipe_input_cb_t input_cb);
56
57 /* packet_list.c */
58
59 void new_packet_list_clear(void);
60 void new_packet_list_freeze(void);
61 void new_packet_list_recreate_visible_rows(void);
62 void new_packet_list_thaw(void);
63 void new_packet_list_next(void);
64 void new_packet_list_prev(void);
65 guint new_packet_list_append(column_info *cinfo, frame_data *fdata, packet_info *pinfo);
66 frame_data * new_packet_list_get_row_data(gint row);
67 void new_packet_list_set_selected_row(gint row);
68 void new_packet_list_enable_color(gboolean enable);
69 void new_packet_list_queue_draw(void);
70 void new_packet_list_select_first_row(void);
71 void new_packet_list_select_last_row(void);
72 void new_packet_list_moveto_end(void);
73 gboolean new_packet_list_check_end(void);
74 gboolean new_packet_list_select_row_from_data(frame_data *fdata_needle);
75 void new_packet_list_resize_column(gint col);
76
77 #ifdef __cplusplus
78 }
79 #endif /* __cplusplus */
80
81 #endif /* __UI_UTIL_H__ */