1 |
cebix |
1.1 |
/* |
2 |
|
|
* prefs.h - Preferences handling |
3 |
|
|
* |
4 |
cebix |
1.2 |
* Basilisk II (C) 1997-2000 Christian Bauer |
5 |
cebix |
1.1 |
* |
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 PREFS_H |
22 |
|
|
#define PREFS_H |
23 |
|
|
|
24 |
|
|
#include <stdio.h> |
25 |
|
|
|
26 |
|
|
extern void PrefsInit(void); |
27 |
|
|
extern void PrefsExit(void); |
28 |
|
|
|
29 |
|
|
extern void AddPlatformPrefsDefaults(void); |
30 |
|
|
|
31 |
|
|
// Preferences loading/saving |
32 |
|
|
extern void LoadPrefs(void); |
33 |
|
|
extern void SavePrefs(void); |
34 |
|
|
|
35 |
|
|
extern void LoadPrefsFromStream(FILE *f); |
36 |
|
|
extern void SavePrefsToStream(FILE *f); |
37 |
|
|
|
38 |
|
|
// Public preferences access functions |
39 |
|
|
extern void PrefsAddString(const char *name, const char *s); |
40 |
|
|
extern void PrefsAddBool(const char *name, bool b); |
41 |
|
|
extern void PrefsAddInt16(const char *name, int16 val); |
42 |
|
|
extern void PrefsAddInt32(const char *name, int32 val); |
43 |
|
|
|
44 |
|
|
extern void PrefsReplaceString(const char *name, const char *s, int index = 0); |
45 |
|
|
extern void PrefsReplaceBool(const char *name, bool b); |
46 |
|
|
extern void PrefsReplaceInt16(const char *name, int16 val); |
47 |
|
|
extern void PrefsReplaceInt32(const char *name, int32 val); |
48 |
|
|
|
49 |
|
|
extern const char *PrefsFindString(const char *name, int index = 0); |
50 |
|
|
extern bool PrefsFindBool(const char *name); |
51 |
|
|
extern int16 PrefsFindInt16(const char *name); |
52 |
|
|
extern int32 PrefsFindInt32(const char *name); |
53 |
|
|
|
54 |
|
|
extern void PrefsRemoveItem(const char *name, int index = 0); |
55 |
|
|
|
56 |
|
|
|
57 |
|
|
/* |
58 |
|
|
* Definition of preferences items |
59 |
|
|
*/ |
60 |
|
|
|
61 |
|
|
// Item types |
62 |
|
|
enum prefs_type { |
63 |
|
|
TYPE_STRING, // char[] |
64 |
|
|
TYPE_BOOLEAN, // bool |
65 |
|
|
TYPE_INT16, // int16 |
66 |
|
|
TYPE_INT32, // int32 |
67 |
|
|
TYPE_ANY, // Wildcard for find_node |
68 |
|
|
TYPE_END = TYPE_ANY // Terminator for prefs_desc list |
69 |
|
|
}; |
70 |
|
|
|
71 |
|
|
// Item descriptor |
72 |
|
|
struct prefs_desc { |
73 |
|
|
const char *name; // Name of keyword |
74 |
|
|
prefs_type type; // Type (see above) |
75 |
|
|
bool multiple; // Can this item occur multiple times (only for TYPE_STRING)? |
76 |
|
|
}; |
77 |
|
|
|
78 |
|
|
// List of common preferences items (those which exist on all platforms) |
79 |
|
|
extern prefs_desc common_prefs_items[]; |
80 |
|
|
|
81 |
|
|
// List of platform-specific preferences items |
82 |
|
|
extern prefs_desc platform_prefs_items[]; |
83 |
|
|
|
84 |
|
|
#endif |