Fix the wireless settings button for AirPCap devices in the
[obnox/wireshark/wip.git] / gtk / prefs_layout.h
1 /* prefs_layout.h
2  * Definitions for layout preferences window
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __LAYOUT_PREFS_H__
26 #define __LAYOUT_PREFS_H__
27
28 /** @file
29  *  "User Interface: Layout" preferences page.
30  *  @ingroup prefs_group
31  */
32
33 /** Build a User interface layout preferences page.
34  *
35  * @return the new preferences page
36  */
37 extern GtkWidget *layout_prefs_show(void);
38
39 /** Fetch preference values from page.
40  *
41  * @param widget widget from layout_prefs_show()
42  */
43 extern void layout_prefs_fetch(GtkWidget *widget);
44
45 /** Apply preference values from page.
46  *
47  * @param widget widget from layout_prefs_show()
48  */
49 extern void layout_prefs_apply(GtkWidget *widget);
50
51 /** Destroy preference values from page.
52  *
53  * @param widget widget from layout_prefs_show()
54  */
55 extern void layout_prefs_destroy(GtkWidget *widget);
56
57 #endif