]> git.street.me.uk Git - andy/viking.git/blob - src/preferences.h
Improve key binding for Mercator Mode -> ctrl+m
[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 // TODO IMPORTANT!!!! add REGISTER_GROUP !!! OR SOMETHING!!! CURRENTLY GROUPLESS!!!
27
28 void a_preferences_init();
29 void a_preferences_uninit();
30
31 /* pref should be persistent thruout the life of the preference. */
32
33
34 /* must call FIRST */
35 void a_preferences_register_group ( const gchar *key, const gchar *name );
36
37 /* nothing in pref is copied neither but pref itself is copied. (TODO: COPY EVERYTHING IN PREF WE NEED, IF ANYTHING),
38    so pref key is not copied. default param data IS copied. */
39 /* group field (integer) will be overwritten */
40 void a_preferences_register( VikLayerParam *pref, VikLayerParamData defaultval, const gchar *group_key );
41
42
43 void a_preferences_show_window(GtkWindow *parent);
44
45 VikLayerParamData *a_preferences_get(const gchar *key);
46
47 /* Allow preferences to be manipulated externally */
48 void a_preferences_run_setparam ( VikLayerParamData data, VikLayerParam *params );
49
50 /* TRUE on success */
51 gboolean a_preferences_save_to_file();
52
53
54 #endif