]> git.street.me.uk Git - andy/viking.git/blame - src/preferences.h
Put vikutils.h into viking.h
[andy/viking.git] / src / preferences.h
CommitLineData
cd53325f
RN
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 */
8339c44d
EB
21#ifndef __VIKING_PREFERENCES_H
22#define __VIKING_PREFERENCES_H
23
24#include "uibuilder.h"
25
38052b77
RN
26G_BEGIN_DECLS
27
8339c44d
EB
28// TODO IMPORTANT!!!! add REGISTER_GROUP !!! OR SOMETHING!!! CURRENTLY GROUPLESS!!!
29
30void a_preferences_init();
31void a_preferences_uninit();
32
33/* pref should be persistent thruout the life of the preference. */
34
a5c8699d
EB
35
36/* must call FIRST */
37void 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 */
42void a_preferences_register( VikLayerParam *pref, VikLayerParamData defaultval, const gchar *group_key );
43
8339c44d
EB
44
45void a_preferences_show_window(GtkWindow *parent);
46
47VikLayerParamData *a_preferences_get(const gchar *key);
48
45e2a963 49/* Allow preferences to be manipulated externally */
c60f82df 50void a_preferences_run_setparam ( VikLayerParamData data, VikLayerParam *vlparams );
45e2a963 51
45e2a963 52gboolean a_preferences_save_to_file();
a5c8699d
EB
53
54
38052b77
RN
55G_END_DECLS
56
8339c44d 57#endif