1 /* MenuPreferences.c- menu related preferences
3 * WPrefs - Window Maker Preferences Program
5 * Copyright (c) 1998 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
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
26 typedef struct _Panel
{
33 CallbackRec callbacks
;
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"
61 showData(_Panel
*panel
)
63 WMPerformButtonClick(panel
->scrB
[GetSpeedForKey("MenuScrollSpeed")]);
65 if (GetBoolForKey("AlignSubmenus"))
66 WMPerformButtonClick(panel
->aliyB
);
68 WMPerformButtonClick(panel
->alinB
);
70 WMSetButtonSelected(panel
->wrapB
, GetBoolForKey("WrapMenus"));
72 WMSetButtonSelected(panel
->autoB
, GetBoolForKey("ScrollableMenus"));
77 storeData(_Panel
*panel
)
82 if (WMGetButtonSelected(panel
->scrB
[i
]))
85 SetSpeedForKey(i
, "MenuScrollSpeed");
87 SetBoolForKey(WMGetButtonSelected(panel
->aliyB
), "AlignSubmenus");
89 SetBoolForKey(WMGetButtonSelected(panel
->wrapB
), "WrapMenus");
90 SetBoolForKey(WMGetButtonSelected(panel
->autoB
), "ScrollableMenus");
97 _Panel
*panel
= (_Panel
*)p
;
98 WMScreen
*scr
= WMWidgetScreen(panel
->win
);
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
);
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
);
132 icon
= WMCreatePixmapFromFile(scr
, path
);
134 WMSetButtonImage(panel
->scrB
[i
], icon
);
135 WMReleasePixmap(icon
);
137 wwarning(_("could not load icon file %s"), path
);
141 path
= LocateImage(buf2
);
143 icon
= WMCreatePixmapFromFile(scr
, path
);
145 WMSetButtonAltImage(panel
->scrB
[i
], icon
);
146 WMReleasePixmap(icon
);
148 wwarning(_("could not load icon file %s"), path
);
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
);
171 icon
= WMCreatePixmapFromFile(scr
, path
);
173 WMSetButtonImage(panel
->alinB
, icon
);
174 WMReleasePixmap(icon
);
176 wwarning(_("could not load icon file %s"), 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
);
186 icon
= WMCreatePixmapFromFile(scr
, path
);
188 WMSetButtonImage(panel
->aliyB
, icon
);
189 WMReleasePixmap(icon
);
191 wwarning(_("could not load icon file %s"), 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
);
225 InitMenuPreferences(WMScreen
*scr
, WMWindow
*win
)
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.");
239 panel
->callbacks
.createWidgets
= createPanel
;
240 panel
->callbacks
.updateDomain
= storeData
;
242 AddSection(panel
, ICON_FILE
);