fix maximize when dock is set 'on top' and it should be covered
[wmaker-crm.git] / WPrefs.app / Expert.c
blob888ccaa19233114d16ae9fec6935d3b9c3fb2766
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 */
84 { N_("Enable window snapping."),
85 /* default: */ False, OPTION_WMAKER, "WindowSnapping" },
87 { N_("Return maximized windows to original geometry when moved."),
88 /* default: */ False, OPTION_WMAKER, "UnmaximizeOnMove" }
93 typedef struct _Panel {
94 WMBox *box;
95 char *sectionName;
97 char *description;
99 CallbackRec callbacks;
101 WMWidget *parent;
103 WMButton *swi[sizeof(expert_options) / sizeof(expert_options[0])];
105 } _Panel;
107 #define ICON_FILE "expert"
110 static void createPanel(Panel *p)
112 _Panel *panel = (_Panel *) p;
113 WMScrollView *sv;
114 WMFrame *f;
115 WMUserDefaults *udb;
116 int i, state;
118 panel->box = WMCreateBox(panel->parent);
119 WMSetViewExpandsToParent(WMWidgetView(panel->box), 2, 2, 2, 2);
121 sv = WMCreateScrollView(panel->box);
122 WMResizeWidget(sv, 500, 215);
123 WMMoveWidget(sv, 12, 10);
124 WMSetScrollViewRelief(sv, WRSunken);
125 WMSetScrollViewHasVerticalScroller(sv, True);
126 WMSetScrollViewHasHorizontalScroller(sv, False);
128 f = WMCreateFrame(panel->box);
129 WMResizeWidget(f, 495, wlengthof(expert_options) * 25 + 8);
130 WMSetFrameRelief(f, WRFlat);
132 udb = WMGetStandardUserDefaults();
133 for (i = 0; i < wlengthof(expert_options); i++) {
134 panel->swi[i] = WMCreateSwitchButton(f);
135 WMResizeWidget(panel->swi[i], FRAME_WIDTH - 40, 25);
136 WMMoveWidget(panel->swi[i], 5, 5 + i * 25);
138 WMSetButtonText(panel->swi[i], _(expert_options[i].label));
140 switch (expert_options[i].class) {
141 case OPTION_WMAKER:
142 if (GetStringForKey(expert_options[i].op_name))
143 state = GetBoolForKey(expert_options[i].op_name);
144 else
145 state = expert_options[i].def_state;
146 break;
148 case OPTION_WMAKER_ARRAY: {
149 char *str = GetStringForKey(expert_options[i].op_name);
150 state = expert_options[i].def_state;
151 if (str && strcasecmp(str, "None") == 0)
152 state = False;
154 break;
156 case OPTION_USERDEF:
157 state = WMGetUDBoolForKey(udb, expert_options[i].op_name);
158 break;
160 default:
161 #ifdef DEBUG
162 wwarning("export_options[%d].class = %d, this should not happen\n",
163 i, expert_options[i].class);
164 #endif
165 state = expert_options[i].def_state;
166 break;
168 WMSetButtonSelected(panel->swi[i], state);
171 WMMapSubwidgets(panel->box);
172 WMSetScrollViewContentView(sv, WMWidgetView(f));
173 WMRealizeWidget(panel->box);
176 static void storeDefaults(_Panel *panel)
178 WMUserDefaults *udb = WMGetStandardUserDefaults();
179 int i;
181 for (i = 0; i < wlengthof(expert_options); i++) {
182 switch (expert_options[i].class) {
183 case OPTION_WMAKER:
184 SetBoolForKey(WMGetButtonSelected(panel->swi[i]), expert_options[i].op_name);
185 break;
187 case OPTION_WMAKER_ARRAY:
188 if (WMGetButtonSelected(panel->swi[i])) {
189 /* check if the array was not manually modified */
190 char *str = GetStringForKey(expert_options[i].op_name);
191 if (str && strcasecmp(str, "None") == 0)
192 RemoveObjectForKey(expert_options[i].op_name);
194 else
195 SetStringForKey("None", expert_options[i].op_name);
196 break;
198 case OPTION_USERDEF:
199 WMSetUDBoolForKey(udb, WMGetButtonSelected(panel->swi[i]), expert_options[i].op_name);
200 break;
205 Panel *InitExpert(WMWidget *parent)
207 _Panel *panel;
209 panel = wmalloc(sizeof(_Panel));
211 panel->sectionName = _("Expert User Preferences");
213 panel->description = _("Options for people who know what they're doing...\n"
214 "Also has some other misc. options.");
216 panel->parent = parent;
218 panel->callbacks.createWidgets = createPanel;
219 panel->callbacks.updateDomain = storeDefaults;
221 AddSection(panel, ICON_FILE);
223 return panel;