fixed msg texts
[wmaker-crm.git] / WPrefs.app / Expert.c
blob504a4e5f4a703d9f7b4f2f41e3cc0b37d48a5b90
1 /* Expert.c- expert user options
2 *
3 * WPrefs - Window Maker Preferences Program
4 *
5 * Copyright (c) 1998 Alfredo K. Kojima
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 * USA.
24 #include "WPrefs.h"
26 typedef struct _Panel {
27 WMFrame *frame;
28 char *sectionName;
30 char *description;
32 CallbackRec callbacks;
34 WMWindow *win;
36 WMButton *swi[8];
38 } _Panel;
42 #define ICON_FILE "expert"
45 static void
46 showData(_Panel *panel)
48 WMUserDefaults *udb = WMGetStandardUserDefaults();
50 WMSetButtonSelected(panel->swi[0], GetBoolForKey("DisableMiniwindows"));
51 WMSetButtonSelected(panel->swi[1], WMGetUDBoolForKey(udb, "NoXSetStuff"));
52 WMSetButtonSelected(panel->swi[2], GetBoolForKey("SaveSessionOnExit"));
53 WMSetButtonSelected(panel->swi[3], GetBoolForKey("UseSaveUnders"));
54 WMSetButtonSelected(panel->swi[4], GetBoolForKey("WindozeCycling"));
55 WMSetButtonSelected(panel->swi[5], GetBoolForKey("DontConfirmKill"));
56 WMSetButtonSelected(panel->swi[6], GetBoolForKey("DisableBlinking"));
60 static void
61 createPanel(Panel *p)
63 _Panel *panel = (_Panel*)p;
64 int i;
66 panel->frame = WMCreateFrame(panel->win);
67 WMResizeWidget(panel->frame, FRAME_WIDTH, FRAME_HEIGHT);
68 WMMoveWidget(panel->frame, FRAME_LEFT, FRAME_TOP);
70 for (i=0; i<7; i++) {
71 panel->swi[i] = WMCreateSwitchButton(panel->frame);
72 WMResizeWidget(panel->swi[i], FRAME_WIDTH-40, 25);
73 WMMoveWidget(panel->swi[i], 20, 20+i*25);
76 WMSetButtonText(panel->swi[0], _("Disable miniwindows (icons for miniaturized windows). For use with KDE/GNOME."));
77 WMSetButtonText(panel->swi[1], _("Do not set non-WindowMaker specific parameters (do not use xset)"));
78 WMSetButtonText(panel->swi[2], _("Automatically save session when exiting WindowMaker"));
79 WMSetButtonText(panel->swi[3], _("Use SaveUnder in window frames, icons, menus and other objects"));
80 WMSetButtonText(panel->swi[4], _("Use Windoze style cycling"));
81 WMSetButtonText(panel->swi[5], _("Disable confirmation panel for the Kill command"));
82 WMSetButtonText(panel->swi[6], _("Disable cycling color highlighting of icons"));
84 WMRealizeWidget(panel->frame);
85 WMMapSubwidgets(panel->frame);
87 showData(panel);
91 static void
92 storeDefaults(_Panel *panel)
94 WMUserDefaults *udb = WMGetStandardUserDefaults();
96 SetBoolForKey(WMGetButtonSelected(panel->swi[0]), "DisableMiniwindows");
98 WMSetUDBoolForKey(udb, WMGetButtonSelected(panel->swi[1]), "NoXSetStuff");
100 SetBoolForKey(WMGetButtonSelected(panel->swi[2]), "SaveSessionOnExit");
101 SetBoolForKey(WMGetButtonSelected(panel->swi[3]), "UseSaveUnders");
102 SetBoolForKey(WMGetButtonSelected(panel->swi[4]), "WindowsCycling");
103 SetBoolForKey(WMGetButtonSelected(panel->swi[5]), "DontConfirmKill");
104 SetBoolForKey(WMGetButtonSelected(panel->swi[6]), "DisableBlinking");
108 Panel*
109 InitExpert(WMScreen *scr, WMWindow *win)
111 _Panel *panel;
113 panel = wmalloc(sizeof(_Panel));
114 memset(panel, 0, sizeof(_Panel));
116 panel->sectionName = _("Expert User Preferences");
118 panel->description = _("Options for people who know what they're doing...\n"
119 "Also have some other misc. options.");
121 panel->win = win;
123 panel->callbacks.createWidgets = createPanel;
124 panel->callbacks.updateDomain = storeDefaults;
126 AddSection(panel, ICON_FILE);
128 return panel;