WPrefs: More moving around of options and tweaks to layout
[wmaker-crm.git] / WPrefs.app / Expert.c
blobf897384d08436fdd574178d92bfba560b288d044
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 10
26 #else
27 #define NUMITEMS 9
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("CycleActiveHeadOnly"));
58 WMSetButtonSelected(panel->swi[8], GetBoolForKey("ShowClipTitle"));
59 #ifdef XKB_MODELOCK
60 WMSetButtonSelected(panel->swi[9], GetBoolForKey("KbdModeLock"));
61 #endif /* XKB_MODELOCK */
64 static void createPanel(Panel * p)
66 _Panel *panel = (_Panel *) p;
67 WMScrollView *sv;
68 WMFrame *f;
69 int i;
71 panel->box = WMCreateBox(panel->parent);
72 WMSetViewExpandsToParent(WMWidgetView(panel->box), 2, 2, 2, 2);
74 sv = WMCreateScrollView(panel->box);
75 WMResizeWidget(sv, 500, 215);
76 WMMoveWidget(sv, 12, 10);
77 WMSetScrollViewRelief(sv, WRSunken);
78 WMSetScrollViewHasVerticalScroller(sv, True);
79 WMSetScrollViewHasHorizontalScroller(sv, False);
81 f = WMCreateFrame(panel->box);
82 WMResizeWidget(f, 495, NUMITEMS * 25 + 8);
83 WMSetFrameRelief(f, WRFlat);
85 for (i = 0; i < NUMITEMS; i++) {
86 panel->swi[i] = WMCreateSwitchButton(f);
87 WMResizeWidget(panel->swi[i], FRAME_WIDTH - 40, 25);
88 WMMoveWidget(panel->swi[i], 5, 5 + i * 25);
91 WMSetButtonText(panel->swi[0],
92 _("Disable miniwindows (icons for minimized windows). For use with KDE/GNOME."));
93 WMSetButtonText(panel->swi[1], _("Do not set non-WindowMaker specific parameters (do not use xset)."));
94 WMSetButtonText(panel->swi[2], _("Automatically save session when exiting Window Maker."));
95 WMSetButtonText(panel->swi[3], _("Use SaveUnder in window frames, icons, menus and other objects."));
96 WMSetButtonText(panel->swi[4], _("Disable confirmation panel for the Kill command."));
97 WMSetButtonText(panel->swi[5], _("Disable selection animation for selected icons."));
98 WMSetButtonText(panel->swi[6], _("Smooth font edges (needs restart)."));
99 WMSetButtonText(panel->swi[7], _("Cycle windows only on the active head."));
100 WMSetButtonText(panel->swi[8], _("Show workspace title on Clip."));
101 #ifdef XKB_MODELOCK
102 WMSetButtonText(panel->swi[9], _("Enable keyboard language switch button in window titlebars."));
103 #endif /* XKB_MODELOCK */
105 /* If the item is default true, enable the button here */
106 WMSetButtonEnabled(panel->swi[6], True);
107 WMSetButtonEnabled(panel->swi[8], True);
109 WMMapSubwidgets(panel->box);
110 WMSetScrollViewContentView(sv, WMWidgetView(f));
111 WMRealizeWidget(panel->box);
113 showData(panel);
116 static void storeDefaults(_Panel * panel)
118 WMUserDefaults *udb = WMGetStandardUserDefaults();
120 SetBoolForKey(WMGetButtonSelected(panel->swi[0]), "DisableMiniwindows");
122 WMSetUDBoolForKey(udb, WMGetButtonSelected(panel->swi[1]), "NoXSetStuff");
124 SetBoolForKey(WMGetButtonSelected(panel->swi[2]), "SaveSessionOnExit");
125 SetBoolForKey(WMGetButtonSelected(panel->swi[3]), "UseSaveUnders");
126 SetBoolForKey(WMGetButtonSelected(panel->swi[4]), "DontConfirmKill");
127 SetBoolForKey(WMGetButtonSelected(panel->swi[5]), "DisableBlinking");
128 SetBoolForKey(WMGetButtonSelected(panel->swi[6]), "AntialiasedText");
129 SetBoolForKey(WMGetButtonSelected(panel->swi[7]), "CycleActiveHeadOnly");
130 SetBoolForKey(WMGetButtonSelected(panel->swi[8]), "ShowClipTitle");
131 #ifdef XKB_MODELOCK
132 SetBoolForKey(WMGetButtonSelected(panel->swi[9]), "KbdModeLock");
133 #endif /* XKB_MODELOCK */
136 Panel *InitExpert(WMScreen * scr, WMWidget * parent)
138 _Panel *panel;
140 panel = wmalloc(sizeof(_Panel));
142 panel->sectionName = _("Expert User Preferences");
144 panel->description = _("Options for people who know what they're doing...\n"
145 "Also has some other misc. options.");
147 panel->parent = parent;
149 panel->callbacks.createWidgets = createPanel;
150 panel->callbacks.updateDomain = storeDefaults;
152 AddSection(panel, ICON_FILE);
154 return panel;