Commit 32350 replaced the self written FindZ.cmake by cmakes
[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 #ifdef NEW_PACKET_LIST
31 #include "epan/packet_info.h"
32 #else
33 #include "color.h"
34 #endif
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif /* __cplusplus */
39
40 /* gui_utils.c */
41
42 /* Set the name of the top-level window and its icon. */
43 void set_main_window_name(const gchar *);
44 /* Update the name of the main window if the user-specified decoration
45    changed. */
46 void update_main_window_name(void);
47 /* update the main window */
48 extern void main_window_update(void);
49 /* exit the main window */
50 extern void main_window_exit(void);
51 /* quit a nested main window */
52 extern void main_window_nested_quit(void);
53 /* quit the main window */
54 extern void main_window_quit(void);
55
56 /* read from a pipe (callback) */
57 typedef gboolean (*pipe_input_cb_t) (gint source, gpointer user_data);
58 /* install callback function, called if pipe input is available */
59 extern void pipe_input_set_handler(gint source, gpointer user_data, int *child_process, pipe_input_cb_t input_cb);
60
61 /* packet_list.c */
62
63 #ifdef NEW_PACKET_LIST
64 void new_packet_list_clear(void);
65 void new_packet_list_freeze(void);
66 void new_packet_list_recreate_visible_rows(void);
67 void new_packet_list_thaw(void);
68 void new_packet_list_next(void);
69 void new_packet_list_prev(void);
70 guint new_packet_list_append(column_info *cinfo, frame_data *fdata, packet_info *pinfo);
71 frame_data * new_packet_list_get_row_data(gint row);
72 void new_packet_list_set_selected_row(gint row);
73 void new_packet_list_enable_color(gboolean enable);
74 void new_packet_list_queue_draw(void);
75 void new_packet_list_select_first_row(void);
76 void new_packet_list_select_last_row(void);
77 void new_packet_list_moveto_end(void);
78 gboolean new_packet_list_check_end(void);
79 gint new_packet_list_find_row_from_data(gpointer data, gboolean select);
80 void new_packet_list_resize_column(gint col);
81 #else
82 /* packet list related functions */
83 void packet_list_clear(void);
84 void packet_list_freeze(void);
85 void packet_list_thaw(void);
86 void packet_list_next(void);
87 void packet_list_prev(void);
88 void packet_list_select_row(gint);
89 void packet_list_moveto_end(void);
90 gint packet_list_append(const gchar *text[], gpointer data);
91 void packet_list_set_colors(gint, color_t *, color_t *);
92 gint packet_list_find_row_from_data(gpointer);
93 void packet_list_set_text(gint, gint, const gchar *);
94 void packet_list_set_time_width(gint, gint);
95 gpointer packet_list_get_row_data(gint);
96 void packet_list_set_selected_row(gint);
97 gint packet_list_get_sort_column(void);
98 void packet_list_set_sort_column(void);
99 gboolean packet_list_check_end(void);
100
101 #endif /* NEW_PACKET_LIST */
102
103 #ifdef __cplusplus
104 }
105 #endif /* __cplusplus */
106
107 #endif /* __UI_UTIL_H__ */