]> git.street.me.uk Git - andy/viking.git/blob - src/preferences.h
Fix waypoints may not be drawn when created by paste of a text location.
[andy/viking.git] / src / preferences.h
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2007, Evan Battaglia <gtoevan@gmx.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21 #ifndef __VIKING_PREFERENCES_H
22 #define __VIKING_PREFERENCES_H
23
24 #include "uibuilder.h"
25
26 G_BEGIN_DECLS
27
28 // TODO IMPORTANT!!!! add REGISTER_GROUP !!! OR SOMETHING!!! CURRENTLY GROUPLESS!!!
29
30 void a_preferences_init();
31 void a_preferences_uninit();
32
33 /* pref should be persistent thruout the life of the preference. */
34
35
36 /* must call FIRST */
37 void a_preferences_register_group ( const gchar *key, const gchar *name );
38
39 /* nothing in pref is copied neither but pref itself is copied. (TODO: COPY EVERYTHING IN PREF WE NEED, IF ANYTHING),
40    so pref key is not copied. default param data IS copied. */
41 /* group field (integer) will be overwritten */
42 void a_preferences_register( VikLayerParam *pref, VikLayerParamData defaultval, const gchar *group_key );
43
44
45 void a_preferences_show_window(GtkWindow *parent);
46
47 VikLayerParamData *a_preferences_get(const gchar *key);
48
49 /* Allow preferences to be manipulated externally */
50 void a_preferences_run_setparam ( VikLayerParamData data, VikLayerParam *vlparams );
51
52 gboolean a_preferences_save_to_file();
53
54
55 G_END_DECLS
56
57 #endif