Have the time field in the Graph Analyzis windos use the same time format as used...
[metze/wireshark/wip.git] / ui / gtk / packet_win.h
1 /* packet_win.h
2  * Declarations for popping a window to display current packet
3  *
4  * Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
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 __PACKET_WIN_H__
28 #define __PACKET_WIN_H__
29
30 /** @file
31  *  Pop up a window to display the current packet only.
32  */
33
34 /** Create a new packet window.
35  *
36  * @param widget parent widget (unused)
37  */
38 extern void new_packet_window(GtkWidget *widget, gboolean editable);
39
40 /** Destroy all popup packet windows.
41  */
42 void destroy_packet_wins(void);
43
44 /** Redraw the packet bytes panes of all packet windows. */
45 void redraw_packet_bytes_packet_wins(void);
46
47 #endif