Have the time field in the Graph Analyzis windos use the same time format as used...
[metze/wireshark/wip.git] / gtk / profile_dlg.h
1 /* profile_dlg.h
2  * Definitions for dialog box for profiles editing.
3  * Stig Bjorlykke <stig@bjorlykke.org>, 2008
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifndef __PROFILE_DLG_H__
27 #define __PROFILE_DLG_H__
28
29 /** @file
30  * "Configuration Profiles" dialog box
31  * @ingroup dialog_group
32  */
33
34 /** User requested the "Configuration Profiles" popup menu.
35  *
36  * @param w parent widget
37  * @param event button event
38  * @param user_data pointer to user_data (unused)
39  */
40 gboolean profile_show_popup_cb(GtkWidget *w _U_, GdkEvent *event, gpointer user_data _U_);
41
42 /** User requested to create a new profile.
43  *
44  * @param w parent widget (unused)
45  * @param data pointer to user_data (unused)
46  */
47 void profile_new_cb (GtkWidget *w _U_, gpointer data _U_);
48
49 /** User requested to delete the current profile.
50  *
51  * @param w parent widget (unused)
52  * @param data pointer to user_data (unused)
53  */
54 void profile_delete_cb (GtkWidget *w _U_, gpointer data _U_);
55
56 /** User requested to edit the current profile.
57  *
58  * @param w parent widget (unused)
59  * @param data pointer to user_data (unused)
60  */
61 void profile_edit_cb (GtkWidget *w _U_, gpointer data _U_);
62
63 /** User requested the "Configuration Profiles" dialog box by menu or toolbar.
64  *
65  * @param widget parent widget
66  */
67 void profile_dialog_cb(GtkWidget *widget);
68
69 #endif /* profile_dlg.h */