5d539fcaba770566d547545bcec9c9bef9bde0fc
[wmaker-crm.git] / WPrefs.app / Expert.c
blob5d539fcaba770566d547545bcec9c9bef9bde0fc
1 /* Expert.c- expert user options
3 * WPrefs - Window Maker Preferences Program
5 * Copyright (c) 1998-2003 Alfredo K. Kojima
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 along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "WPrefs.h"
24 #ifdef XKB_MODELOCK
25 #define NUMITEMS 12
26 #else
27 #define NUMITEMS 11
28 #endif
30 typedef struct _Panel {
31 WMBox *box;
32 char *sectionName;
34 char *description;
36 CallbackRec callbacks;
38 WMWidget *parent;
40 WMButton *swi[NUMITEMS];
42 } _Panel;
44 #define ICON_FILE "expert"
46 static void 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("DontConfirmKill"));
55 WMSetButtonSelected(panel->swi[5], GetBoolForKey("DisableBlinking"));
56 WMSetButtonSelected(panel->swi[6], GetBoolForKey("AntialiasedText"));
57 WMSetButtonSelected(panel->swi[7], GetBoolForKey("SingleClickLaunch"));
58 WMSetButtonSelected(panel->swi[8], GetBoolForKey("CycleActiveHeadOnly"));
59 WMSetButtonSelected(panel->swi[9], GetBoolForKey("ShowClipTitle"));
60 WMSetButtonSelected(panel->swi[10], GetBoolForKey("OpaqueMoveResizeKeyboard"));
61 #ifdef XKB_MODELOCK
62 WMSetButtonSelected(panel->swi[11], GetBoolForKey("KbdModeLock"));
63 #endif /* XKB_MODELOCK */
66 static void createPanel(Panel * p)
68 _Panel *panel = (_Panel *) p;
69 WMScrollView *sv;
70 WMFrame *f;
71 int i;
73 panel->box = WMCreateBox(panel->parent);
74 WMSetViewExpandsToParent(WMWidgetView(panel->box), 2, 2, 2, 2);
76 sv = WMCreateScrollView(panel->box);
77 WMResizeWidget(sv, 500, 215);
78 WMMoveWidget(sv, 12, 10);
79 WMSetScrollViewRelief(sv, WRSunken);
80 WMSetScrollViewHasVerticalScroller(sv, True);
81 WMSetScrollViewHasHorizontalScroller(sv, False);
83 f = WMCreateFrame(panel->box);
84 WMResizeWidget(f, 495, NUMITEMS * 25 + 8);
85 WMSetFrameRelief(f, WRFlat);
87 for (i = 0; i < NUMITEMS; i++) {
88 panel->swi[i] = WMCreateSwitchButton(f);
89 WMResizeWidget(panel->swi[i], FRAME_WIDTH - 40, 25);
90 WMMoveWidget(panel->swi[i], 5, 5 + i * 25);
93 WMSetButtonText(panel->swi[0],
94 _("Disable miniwindows (icons for minimized windows). For use with KDE/GNOME."));
95 WMSetButtonText(panel->swi[1], _("Do not set non-WindowMaker specific parameters (do not use xset)."));
96 WMSetButtonText(panel->swi[2], _("Automatically save session when exiting Window Maker."));
97 WMSetButtonText(panel->swi[3], _("Use SaveUnder in window frames, icons, menus and other objects."));
98 WMSetButtonText(panel->swi[4], _("Disable confirmation panel for the Kill command."));
99 WMSetButtonText(panel->swi[5], _("Disable selection animation for selected icons."));
100 WMSetButtonText(panel->swi[6], _("Smooth font edges (needs restart)."));
101 WMSetButtonText(panel->swi[7], _("Launch applications and restore windows with a single click."));
102 WMSetButtonText(panel->swi[8], _("Cycle windows only on the active head."));
103 WMSetButtonText(panel->swi[9], _("Show workspace title on Clip."));
104 WMSetButtonText(panel->swi[10], _("Opaque Move,Resize with keyboard."));
105 #ifdef XKB_MODELOCK
106 WMSetButtonText(panel->swi[11], _("Enable keyboard language switch button in window titlebars."));
107 #endif /* XKB_MODELOCK */
109 /* If the item is default true, enable the button here */
110 WMSetButtonEnabled(panel->swi[6], True);
111 WMSetButtonEnabled(panel->swi[9], True);
113 WMMapSubwidgets(panel->box);
114 WMSetScrollViewContentView(sv, WMWidgetView(f));
115 WMRealizeWidget(panel->box);
117 showData(panel);
120 static void storeDefaults(_Panel * panel)
122 WMUserDefaults *udb = WMGetStandardUserDefaults();
124 SetBoolForKey(WMGetButtonSelected(panel->swi[0]), "DisableMiniwindows");
126 WMSetUDBoolForKey(udb, WMGetButtonSelected(panel->swi[1]), "NoXSetStuff");
128 SetBoolForKey(WMGetButtonSelected(panel->swi[2]), "SaveSessionOnExit");
129 SetBoolForKey(WMGetButtonSelected(panel->swi[3]), "UseSaveUnders");
130 SetBoolForKey(WMGetButtonSelected(panel->swi[4]), "DontConfirmKill");
131 SetBoolForKey(WMGetButtonSelected(panel->swi[5]), "DisableBlinking");
132 SetBoolForKey(WMGetButtonSelected(panel->swi[6]), "AntialiasedText");
133 SetBoolForKey(WMGetButtonSelected(panel->swi[7]), "SingleClickLaunch");
134 SetBoolForKey(WMGetButtonSelected(panel->swi[8]), "CycleActiveHeadOnly");
135 SetBoolForKey(WMGetButtonSelected(panel->swi[9]), "ShowClipTitle");
136 SetBoolForKey(WMGetButtonSelected(panel->swi[10]), "OpaqueMoveResizeKeyboard");
137 #ifdef XKB_MODELOCK
138 SetBoolForKey(WMGetButtonSelected(panel->swi[11]), "KbdModeLock");
139 #endif /* XKB_MODELOCK */
142 Panel *InitExpert(WMScreen * scr, WMWidget * parent)
144 _Panel *panel;
146 panel = wmalloc(sizeof(_Panel));
148 panel->sectionName = _("Expert User Preferences");
150 panel->description = _("Options for people who know what they're doing...\n"
151 "Also has some other misc. options.");
153 panel->parent = parent;
155 panel->callbacks.createWidgets = createPanel;
156 panel->callbacks.updateDomain = storeDefaults;
158 AddSection(panel, ICON_FILE);
160 return panel;