- Replaced all free() with wfree() where appropriate
[wmaker-crm.git] / WPrefs.app / MenuPreferences.c
blob1f8dc4957c64a5357bc37c3c5e213ab2e21c7a6d
1 /* MenuPreferences.c- menu related preferences
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;
29 char *sectionName;
31 char *description;
33 CallbackRec callbacks;
35 WMWindow *win;
37 WMFrame *scrF;
38 WMButton *scrB[5];
40 WMFrame *aliF;
41 WMButton *aliyB;
42 WMButton *alinB;
44 WMFrame *optF;
45 WMButton *autoB;
46 WMButton *wrapB;
48 } _Panel;
52 #define ICON_FILE "menuprefs"
53 #define SPEED_IMAGE "speed%i"
54 #define SPEED_IMAGE_S "speed%is"
56 #define MENU_ALIGN1 "menualign1"
57 #define MENU_ALIGN2 "menualign2"
60 static void
61 showData(_Panel *panel)
63 WMPerformButtonClick(panel->scrB[GetSpeedForKey("MenuScrollSpeed")]);
65 if (GetBoolForKey("AlignSubmenus"))
66 WMPerformButtonClick(panel->aliyB);
67 else
68 WMPerformButtonClick(panel->alinB);
70 WMSetButtonSelected(panel->wrapB, GetBoolForKey("WrapMenus"));
72 WMSetButtonSelected(panel->autoB, GetBoolForKey("ScrollableMenus"));
76 static void
77 storeData(_Panel *panel)
79 int i;
81 for (i=0; i<5; i++) {
82 if (WMGetButtonSelected(panel->scrB[i]))
83 break;
85 SetSpeedForKey(i, "MenuScrollSpeed");
87 SetBoolForKey(WMGetButtonSelected(panel->aliyB), "AlignSubmenus");
89 SetBoolForKey(WMGetButtonSelected(panel->wrapB), "WrapMenus");
90 SetBoolForKey(WMGetButtonSelected(panel->autoB), "ScrollableMenus");
94 static void
95 createPanel(Panel *p)
97 _Panel *panel = (_Panel*)p;
98 WMScreen *scr = WMWidgetScreen(panel->win);
100 WMPixmap *icon;
101 int i;
102 char *buf1, *buf2;
103 char *path;
105 panel->frame = WMCreateFrame(panel->win);
106 WMResizeWidget(panel->frame, FRAME_WIDTH, FRAME_HEIGHT);
107 WMMoveWidget(panel->frame, FRAME_LEFT, FRAME_TOP);
110 /***************** Menu Scroll Speed ****************/
111 panel->scrF = WMCreateFrame(panel->frame);
112 WMResizeWidget(panel->scrF, 235, 90);
113 WMMoveWidget(panel->scrF, 25, 20);
114 WMSetFrameTitle(panel->scrF, _("Menu Scrolling Speed"));
117 buf1 = wmalloc(strlen(SPEED_IMAGE)+1);
118 buf2 = wmalloc(strlen(SPEED_IMAGE_S)+1);
119 for (i = 0; i < 5; i++) {
120 panel->scrB[i] = WMCreateCustomButton(panel->scrF, WBBStateChangeMask);
121 WMResizeWidget(panel->scrB[i], 40, 40);
122 WMMoveWidget(panel->scrB[i], 15+(40*i), 30);
123 WMSetButtonBordered(panel->scrB[i], False);
124 WMSetButtonImagePosition(panel->scrB[i], WIPImageOnly);
125 if (i > 0) {
126 WMGroupButtons(panel->scrB[0], panel->scrB[i]);
128 sprintf(buf1, SPEED_IMAGE, i);
129 sprintf(buf2, SPEED_IMAGE_S, i);
130 path = LocateImage(buf1);
131 if (path) {
132 icon = WMCreatePixmapFromFile(scr, path);
133 if (icon) {
134 WMSetButtonImage(panel->scrB[i], icon);
135 WMReleasePixmap(icon);
136 } else {
137 wwarning(_("could not load icon file %s"), path);
139 wfree(path);
141 path = LocateImage(buf2);
142 if (path) {
143 icon = WMCreatePixmapFromFile(scr, path);
144 if (icon) {
145 WMSetButtonAltImage(panel->scrB[i], icon);
146 WMReleasePixmap(icon);
147 } else {
148 wwarning(_("could not load icon file %s"), path);
150 wfree(path);
153 wfree(buf1);
154 wfree(buf2);
156 WMMapSubwidgets(panel->scrF);
158 /***************** Submenu Alignment ****************/
160 panel->aliF = WMCreateFrame(panel->frame);
161 WMResizeWidget(panel->aliF, 220, 90);
162 WMMoveWidget(panel->aliF, 280, 20);
163 WMSetFrameTitle(panel->aliF, _("Submenu Alignment"));
165 panel->alinB = WMCreateButton(panel->aliF, WBTOnOff);
166 WMResizeWidget(panel->alinB, 48, 48);
167 WMMoveWidget(panel->alinB, 56, 25);
168 WMSetButtonImagePosition(panel->alinB, WIPImageOnly);
169 path = LocateImage(MENU_ALIGN1);
170 if (path) {
171 icon = WMCreatePixmapFromFile(scr, path);
172 if (icon) {
173 WMSetButtonImage(panel->alinB, icon);
174 WMReleasePixmap(icon);
175 } else {
176 wwarning(_("could not load icon file %s"), path);
178 wfree(path);
180 panel->aliyB = WMCreateButton(panel->aliF, WBTOnOff);
181 WMResizeWidget(panel->aliyB, 48, 48);
182 WMMoveWidget(panel->aliyB, 120, 25);
183 WMSetButtonImagePosition(panel->aliyB, WIPImageOnly);
184 path = LocateImage(MENU_ALIGN2);
185 if (path) {
186 icon = WMCreatePixmapFromFile(scr, path);
187 if (icon) {
188 WMSetButtonImage(panel->aliyB, icon);
189 WMReleasePixmap(icon);
190 } else {
191 wwarning(_("could not load icon file %s"), path);
193 wfree(path);
195 WMGroupButtons(panel->alinB, panel->aliyB);
197 WMMapSubwidgets(panel->aliF);
199 /***************** Options ****************/
200 panel->optF = WMCreateFrame(panel->frame);
201 WMResizeWidget(panel->optF, 475, 80);
202 WMMoveWidget(panel->optF, 25, 130);
204 panel->wrapB = WMCreateSwitchButton(panel->optF);
205 WMResizeWidget(panel->wrapB, 440, 32);
206 WMMoveWidget(panel->wrapB, 25, 8);
207 WMSetButtonText(panel->wrapB, _("Always open submenus inside the screen, instead of scrolling.\nNote: this is annoying."));
209 panel->autoB = WMCreateSwitchButton(panel->optF);
210 WMResizeWidget(panel->autoB, 440, 20);
211 WMMoveWidget(panel->autoB, 25, 45);
212 WMSetButtonText(panel->autoB, _("Scroll off-screen menus when pointer is moved over them."));
214 WMMapSubwidgets(panel->optF);
216 WMRealizeWidget(panel->frame);
217 WMMapSubwidgets(panel->frame);
219 showData(panel);
224 Panel*
225 InitMenuPreferences(WMScreen *scr, WMWindow *win)
227 _Panel *panel;
229 panel = wmalloc(sizeof(_Panel));
230 memset(panel, 0, sizeof(_Panel));
232 panel->sectionName = _("Menu Preferences");
234 panel->description = _("Menu usability related options. Scrolling speed,\n"
235 "alignment of submenus etc.");
237 panel->win = win;
239 panel->callbacks.createWidgets = createPanel;
240 panel->callbacks.updateDomain = storeData;
242 AddSection(panel, ICON_FILE);
244 return panel;