]> git.street.me.uk Git - andy/viking.git/blame - src/preferences.h
Fix: generate doc/reference/Makefile when needed
[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
26// TODO IMPORTANT!!!! add REGISTER_GROUP !!! OR SOMETHING!!! CURRENTLY GROUPLESS!!!
27
28void a_preferences_init();
29void a_preferences_uninit();
30
31/* pref should be persistent thruout the life of the preference. */
32
a5c8699d
EB
33
34/* must call FIRST */
35void 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 */
40void a_preferences_register( VikLayerParam *pref, VikLayerParamData defaultval, const gchar *group_key );
41
8339c44d
EB
42
43void a_preferences_show_window(GtkWindow *parent);
44
45VikLayerParamData *a_preferences_get(const gchar *key);
46
45e2a963
RN
47/* Allow preferences to be manipulated externally */
48void a_preferences_run_setparam ( VikLayerParamData data, VikLayerParam *params );
49
50/* TRUE on success */
51gboolean a_preferences_save_to_file();
a5c8699d
EB
52
53
8339c44d 54#endif