9
|
1 /*
|
|
2 * GQview
|
|
3 * (C) 2004 John Ellis
|
|
4 *
|
|
5 * Author: John Ellis
|
|
6 *
|
|
7 * This software is released under the GNU General Public License (GNU GPL).
|
|
8 * Please read the included file COPYING for more information.
|
|
9 * This software comes with no warranty of any kind, use at your own risk!
|
|
10 */
|
|
11
|
|
12 #ifndef LAYOUT_CONFIG_H
|
|
13 #define LAYOUT_CONFIG_H
|
|
14
|
|
15
|
|
16 #include "layout.h"
|
|
17
|
|
18
|
|
19 GtkWidget *layout_config_new(void);
|
|
20
|
|
21 void layout_config_set(GtkWidget *widget, gint style, const gchar *order);
|
|
22 gchar *layout_config_get(GtkWidget *widget, gint *style);
|
|
23
|
|
24
|
|
25 gchar *layout_config_order_to_text(gint a, gint b, gint c);
|
|
26 void layout_config_order_from_text(const gchar *text, gint *a, gint *b, gint *c);
|
|
27
|
|
28 void layout_config_parse(gint style, const gchar *order,
|
|
29 LayoutLocation *a, LayoutLocation *b, LayoutLocation *c);
|
|
30
|
|
31
|
|
32 #endif
|
|
33
|