Fix some bugs, DisableMiniwindows, _KWM_WIN_ICON_GEOMETRY..
[wmaker-crm.git] / WPrefs.app / Expert.c
blobdfaaf445666424580701de3dff0a23340cd61615
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 CallbackRec callbacks;
32 WMWindow *win;
34 WMButton *swi[5];
36 } _Panel;
40 #define ICON_FILE "expert"
43 static void
44 showData(_Panel *panel)
46 WMUserDefaults *udb = WMGetStandardUserDefaults();
48 WMSetButtonSelected(panel->swi[0], GetBoolForKey("DisableMiniwindows"));
49 WMSetButtonSelected(panel->swi[1], WMGetUDBoolForKey(udb, "NoXSetStuff"));
50 WMSetButtonSelected(panel->swi[2], GetBoolForKey("SaveSessionOnExit"));
51 WMSetButtonSelected(panel->swi[3], GetBoolForKey("UseSaveUnders"));
52 WMSetButtonSelected(panel->swi[4], GetBoolForKey("DisableBlinking"));
56 static void
57 createPanel(Panel *p)
59 _Panel *panel = (_Panel*)p;
60 int i;
62 panel->frame = WMCreateFrame(panel->win);
63 WMResizeWidget(panel->frame, FRAME_WIDTH, FRAME_HEIGHT);
64 WMMoveWidget(panel->frame, FRAME_LEFT, FRAME_TOP);
66 for (i=0; i<5; i++) {
67 panel->swi[i] = WMCreateSwitchButton(panel->frame);
68 WMResizeWidget(panel->swi[i], FRAME_WIDTH-40, 25);
69 WMMoveWidget(panel->swi[i], 20, 20+i*25);
72 WMSetButtonText(panel->swi[0], _("Disable miniwindows (icons for miniaturized windows). For use with KDE/GNOME."));
73 WMSetButtonText(panel->swi[1], _("Do not set non-WindowMaker specific parameters (do not use xset)"));
74 WMSetButtonText(panel->swi[2], _("Automatically save session when exiting WindowMaker"));
75 WMSetButtonText(panel->swi[3], _("Use SaveUnder in window frames, icons, menus and other objects"));
76 WMSetButtonText(panel->swi[4], _("Disable cycling color highlighting of icons."));
78 WMRealizeWidget(panel->frame);
79 WMMapSubwidgets(panel->frame);
81 showData(panel);
85 static void
86 storeDefaults(_Panel *panel)
88 WMUserDefaults *udb = WMGetStandardUserDefaults();
90 SetBoolForKey(WMGetButtonSelected(panel->swi[0]), "DisableMiniwindows");
92 WMSetUDBoolForKey(udb, WMGetButtonSelected(panel->swi[1]), "NoXSetStuff");
94 SetBoolForKey(WMGetButtonSelected(panel->swi[2]), "SaveSessionOnExit");
95 SetBoolForKey(WMGetButtonSelected(panel->swi[3]), "UseSaveUnders");
96 SetBoolForKey(WMGetButtonSelected(panel->swi[4]), "DisableBlinking");
100 Panel*
101 InitExpert(WMScreen *scr, WMWindow *win)
103 _Panel *panel;
105 panel = wmalloc(sizeof(_Panel));
106 memset(panel, 0, sizeof(_Panel));
108 panel->sectionName = _("Expert User Preferences");
110 panel->win = win;
112 panel->callbacks.createWidgets = createPanel;
113 panel->callbacks.updateDomain = storeDefaults;
115 AddSection(panel, ICON_FILE);
117 return panel;