ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/prefs_unix.cpp
Revision: 1.3
Committed: 1999-10-21T16:07:34Z (24 years, 11 months ago) by cebix
Branch: MAIN
CVS Tags: snapshot-21101999
Changes since 1.2: +1 -0 lines
Log Message:
- added fbdev DGA preferences to GTK prefs editor

File Contents

# Content
1 /*
2 * prefs_unix.cpp - Preferences handling, Unix specifix stuff
3 *
4 * Basilisk II (C) 1997-1999 Christian Bauer
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 #include "sysdeps.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25
26 #include "prefs.h"
27
28
29 // Platform-specific preferences items
30 prefs_desc platform_prefs_items[] = {
31 {"keycodes", TYPE_BOOLEAN, false}, // Use keycodes rather than keysyms to decode keyboard (video_x.cpp)
32 {"keycodefile", TYPE_STRING, false}, // File name of keycode translation table (video_x.cpp)
33 {"fbdevicefile", TYPE_STRING, false}, // File name of frame buffer device specifications
34 {NULL, TYPE_END, false} // End of list
35 };
36
37
38 // Prefs file name and path
39 const char PREFS_FILE_NAME[] = ".basilisk_ii_prefs";
40 static char prefs_path[1024];
41
42
43 /*
44 * Load preferences from settings file
45 */
46
47 void LoadPrefs(void)
48 {
49 // Construct prefs path
50 prefs_path[0] = 0;
51 char *home = getenv("HOME");
52 if (home != NULL && strlen(home) < 1000) {
53 strncpy(prefs_path, home, 1000);
54 strcat(prefs_path, "/");
55 }
56 strcat(prefs_path, PREFS_FILE_NAME);
57
58 // Read preferences from settings file
59 FILE *f = fopen(prefs_path, "r");
60 if (f != NULL) {
61
62 // Prefs file found, load settings
63 LoadPrefsFromStream(f);
64 fclose(f);
65
66 } else {
67
68 // No prefs file, save defaults
69 SavePrefs();
70 }
71 }
72
73
74 /*
75 * Save preferences to settings file
76 */
77
78 void SavePrefs(void)
79 {
80 FILE *f;
81 if ((f = fopen(prefs_path, "w")) != NULL) {
82 SavePrefsToStream(f);
83 fclose(f);
84 }
85 }
86
87
88 /*
89 * Add defaults of platform-specific prefs items
90 * You may also override the defaults set in PrefsInit()
91 */
92
93 void AddPlatformPrefsDefaults(void)
94 {
95 PrefsAddBool("keycodes", false);
96 PrefsReplaceString("extfs", "/");
97 }