]> git.street.me.uk Git - andy/viking.git/blame - src/preferences.h
Update French translation
[andy/viking.git] / src / preferences.h
CommitLineData
8339c44d
EB
1#ifndef __VIKING_PREFERENCES_H
2#define __VIKING_PREFERENCES_H
3
4#include "uibuilder.h"
5
6// TODO IMPORTANT!!!! add REGISTER_GROUP !!! OR SOMETHING!!! CURRENTLY GROUPLESS!!!
7
8void a_preferences_init();
9void a_preferences_uninit();
10
11/* pref should be persistent thruout the life of the preference. */
12
13 /* nothing in pref is copied neither is pref key copied, default param data yes */
14void a_preferences_register( VikLayerParam *pref, VikLayerParamData defaultval);
15
16void a_preferences_show_window(GtkWindow *parent);
17
18VikLayerParamData *a_preferences_get(const gchar *key);
19
20#endif