Witness: enum witness_notifyResponse_type
[wireshark-wip.git] / ui / gtk / profile_dlg.h
blobffcf8c01e697fc761f4b6c4fb21356be06f9eb50
1 /* profile_dlg.h
2 * Definitions for dialog box for profiles editing.
3 * Stig Bjorlykke <stig@bjorlykke.org>, 2008
5 * $Id$
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #ifndef __PROFILE_DLG_H__
27 #define __PROFILE_DLG_H__
29 /** @file
30 * "Configuration Profiles" dialog box
31 * @ingroup dialog_group
34 /** User requested the "Configuration Profiles" popup menu.
36 * @param w parent widget
37 * @param event button event
38 * @param user_data pointer to user_data (unused)
40 gboolean profile_show_popup_cb(GtkWidget *w _U_, GdkEvent *event, gpointer user_data _U_);
42 /** User requested to create a new profile.
44 * @param w parent widget (unused)
45 * @param data pointer to user_data (unused)
47 void profile_new_cb (GtkWidget *w _U_, gpointer data _U_);
49 /** User requested to delete the current profile.
51 * @param w parent widget (unused)
52 * @param data pointer to user_data (unused)
54 void profile_delete_cb (GtkWidget *w _U_, gpointer data _U_);
56 /** User requested to edit the current profile.
58 * @param w parent widget (unused)
59 * @param data pointer to user_data (unused)
61 void profile_rename_cb (GtkWidget *w _U_, gpointer data _U_);
63 /** User requested the "Configuration Profiles" dialog box by menu or toolbar.
65 * @param widget parent widget
67 void profile_dialog_cb(GtkWidget *widget);
69 #endif /* profile_dlg.h */