WPrefs: add expert option to disable switch panel
[wmaker-crm.git] / WPrefs.app / Expert.c
blob8cf5d6d9aa3546de1752cf0f491f67369681de44
1 /* Expert.c- expert user options
3 * WPrefs - Window Maker Preferences Program
5 * Copyright (c) 2014 Window Maker Team
6 * Copyright (c) 1998-2003 Alfredo K. Kojima
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "WPrefs.h"
25 /* This structure containts the list of all the check-buttons to display in the
26 * expert tab of the window with the corresponding information for effect
28 static const struct {
29 const char *label; /* Text displayed to user */
31 int def_state; /* True/False: the default value, if not defined in current config */
33 enum {
34 OPTION_WMAKER,
35 OPTION_WMAKER_ARRAY,
36 OPTION_USERDEF
37 } class;
39 const char *op_name; /* The identifier for the option in the config file */
41 } expert_options[] = {
43 { N_("Disable miniwindows (icons for minimized windows). For use with KDE/GNOME."),
44 /* default: */ False, OPTION_WMAKER, "DisableMiniwindows" },
46 { N_("Do not set non-WindowMaker specific parameters (do not use xset)."),
47 /* default: */ False, OPTION_USERDEF, "NoXSetStuff" },
49 { N_("Automatically save session when exiting Window Maker."),
50 /* default: */ False, OPTION_WMAKER, "SaveSessionOnExit" },
52 { N_("Use SaveUnder in window frames, icons, menus and other objects."),
53 /* default: */ False, OPTION_WMAKER, "UseSaveUnders" },
55 { N_("Disable confirmation panel for the Kill command."),
56 /* default: */ False, OPTION_WMAKER, "DontConfirmKill" },
58 { N_("Disable selection animation for selected icons."),
59 /* default: */ False, OPTION_WMAKER, "DisableBlinking" },
61 { N_("Smooth font edges (needs restart)."),
62 /* default: */ True, OPTION_WMAKER, "AntialiasedText" },
64 { N_("Cycle windows only on the active head."),
65 /* default: */ False, OPTION_WMAKER, "CycleActiveHeadOnly" },
67 { N_("Ignore minimized windows when cycling."),
68 /* default: */ False, OPTION_WMAKER, "CycleIgnoreMinimized" },
70 { N_("Show switch panel when cycling windows."),
71 /* default: */ True, OPTION_WMAKER_ARRAY, "SwitchPanelImages" },
73 { N_("Show workspace title on Clip."),
74 /* default: */ True, OPTION_WMAKER, "ShowClipTitle" },
76 { N_("Highlight the icon of the application when it has the focus."),
77 /* default: */ True, OPTION_WMAKER, "HighlightActiveApp" },
79 #ifdef XKB_MODELOCK
80 { N_("Enable keyboard language switch button in window titlebars."),
81 /* default: */ False, OPTION_WMAKER, "KbdModeLock" }
82 #endif /* XKB_MODELOCK */
87 typedef struct _Panel {
88 WMBox *box;
89 char *sectionName;
91 char *description;
93 CallbackRec callbacks;
95 WMWidget *parent;
97 WMButton *swi[sizeof(expert_options) / sizeof(expert_options[0])];
99 } _Panel;
101 #define ICON_FILE "expert"
104 static void createPanel(Panel *p)
106 _Panel *panel = (_Panel *) p;
107 WMScrollView *sv;
108 WMFrame *f;
109 WMUserDefaults *udb;
110 int i, state;
112 panel->box = WMCreateBox(panel->parent);
113 WMSetViewExpandsToParent(WMWidgetView(panel->box), 2, 2, 2, 2);
115 sv = WMCreateScrollView(panel->box);
116 WMResizeWidget(sv, 500, 215);
117 WMMoveWidget(sv, 12, 10);
118 WMSetScrollViewRelief(sv, WRSunken);
119 WMSetScrollViewHasVerticalScroller(sv, True);
120 WMSetScrollViewHasHorizontalScroller(sv, False);
122 f = WMCreateFrame(panel->box);
123 WMResizeWidget(f, 495, wlengthof(expert_options) * 25 + 8);
124 WMSetFrameRelief(f, WRFlat);
126 udb = WMGetStandardUserDefaults();
127 for (i = 0; i < wlengthof(expert_options); i++) {
128 panel->swi[i] = WMCreateSwitchButton(f);
129 WMResizeWidget(panel->swi[i], FRAME_WIDTH - 40, 25);
130 WMMoveWidget(panel->swi[i], 5, 5 + i * 25);
132 WMSetButtonText(panel->swi[i], _(expert_options[i].label));
134 switch (expert_options[i].class) {
135 case OPTION_WMAKER:
136 if (GetStringForKey(expert_options[i].op_name))
137 state = GetBoolForKey(expert_options[i].op_name);
138 else
139 state = expert_options[i].def_state;
140 break;
142 case OPTION_WMAKER_ARRAY: {
143 char *str = GetStringForKey(expert_options[i].op_name);
144 state = expert_options[i].def_state;
145 if (str && strcasecmp(str, "None") == 0)
146 state = False;
148 break;
150 case OPTION_USERDEF:
151 state = WMGetUDBoolForKey(udb, expert_options[i].op_name);
152 break;
154 default:
155 #ifdef DEBUG
156 wwarning("export_options[%d].class = %d, this should not happen\n",
157 i, expert_options[i].class);
158 #endif
159 state = expert_options[i].def_state;
160 break;
162 WMSetButtonSelected(panel->swi[i], state);
165 WMMapSubwidgets(panel->box);
166 WMSetScrollViewContentView(sv, WMWidgetView(f));
167 WMRealizeWidget(panel->box);
170 static void storeDefaults(_Panel *panel)
172 WMUserDefaults *udb = WMGetStandardUserDefaults();
173 int i;
175 for (i = 0; i < wlengthof(expert_options); i++) {
176 switch (expert_options[i].class) {
177 case OPTION_WMAKER:
178 SetBoolForKey(WMGetButtonSelected(panel->swi[i]), expert_options[i].op_name);
179 break;
181 case OPTION_WMAKER_ARRAY:
182 if (WMGetButtonSelected(panel->swi[i])) {
183 /* check if the array was not manually modified */
184 char *str = GetStringForKey(expert_options[i].op_name);
185 if (str && strcasecmp(str, "None") == 0)
186 RemoveObjectForKey(expert_options[i].op_name);
188 else
189 SetStringForKey("None", expert_options[i].op_name);
190 break;
192 case OPTION_USERDEF:
193 WMSetUDBoolForKey(udb, WMGetButtonSelected(panel->swi[i]), expert_options[i].op_name);
194 break;
199 Panel *InitExpert(WMWidget *parent)
201 _Panel *panel;
203 panel = wmalloc(sizeof(_Panel));
205 panel->sectionName = _("Expert User Preferences");
207 panel->description = _("Options for people who know what they're doing...\n"
208 "Also has some other misc. options.");
210 panel->parent = parent;
212 panel->callbacks.createWidgets = createPanel;
213 panel->callbacks.updateDomain = storeDefaults;
215 AddSection(panel, ICON_FILE);
217 return panel;