mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-18 20:10:29 +01:00
This reduce the risk to miss something in case the array they refer to gets updated, because with the macro the proper number of element will be evaluated by the compiler automatically. Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
235 lines
6.3 KiB
C
235 lines
6.3 KiB
C
/* MenuPreferences.c- menu related preferences
|
|
*
|
|
* WPrefs - Window Maker Preferences Program
|
|
*
|
|
* Copyright (c) 1998-2003 Alfredo K. Kojima
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include "WPrefs.h"
|
|
|
|
typedef struct _Panel {
|
|
WMBox *box;
|
|
|
|
char *sectionName;
|
|
|
|
char *description;
|
|
|
|
CallbackRec callbacks;
|
|
|
|
WMWidget *parent;
|
|
|
|
WMFrame *scrF;
|
|
WMButton *scrB[5];
|
|
|
|
WMFrame *aliF;
|
|
WMButton *aliyB;
|
|
WMButton *alinB;
|
|
|
|
WMFrame *optF;
|
|
WMButton *autoB;
|
|
WMButton *autoC;
|
|
WMButton *wrapB;
|
|
|
|
} _Panel;
|
|
|
|
#define ICON_FILE "menuprefs"
|
|
#define SPEED_IMAGE "speed%i"
|
|
#define SPEED_IMAGE_S "speed%is"
|
|
|
|
#define MENU_ALIGN1 "menualign1"
|
|
#define MENU_ALIGN2 "menualign2"
|
|
|
|
static void showData(_Panel * panel)
|
|
{
|
|
WMPerformButtonClick(panel->scrB[GetSpeedForKey("MenuScrollSpeed")]);
|
|
|
|
if (GetBoolForKey("AlignSubmenus"))
|
|
WMPerformButtonClick(panel->aliyB);
|
|
else
|
|
WMPerformButtonClick(panel->alinB);
|
|
|
|
WMSetButtonSelected(panel->wrapB, GetBoolForKey("WrapMenus"));
|
|
|
|
WMSetButtonSelected(panel->autoB, GetBoolForKey("ScrollableMenus"));
|
|
|
|
WMSetButtonSelected(panel->autoC, GetBoolForKey("ViKeyMenus"));
|
|
}
|
|
|
|
static void storeData(_Panel * panel)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < wlengthof(panel->scrB); i++) {
|
|
if (WMGetButtonSelected(panel->scrB[i]))
|
|
break;
|
|
}
|
|
SetSpeedForKey(i, "MenuScrollSpeed");
|
|
|
|
SetBoolForKey(WMGetButtonSelected(panel->aliyB), "AlignSubmenus");
|
|
|
|
SetBoolForKey(WMGetButtonSelected(panel->wrapB), "WrapMenus");
|
|
SetBoolForKey(WMGetButtonSelected(panel->autoB), "ScrollableMenus");
|
|
SetBoolForKey(WMGetButtonSelected(panel->autoC), "ViKeyMenus");
|
|
}
|
|
|
|
static void createPanel(Panel * p)
|
|
{
|
|
_Panel *panel = (_Panel *) p;
|
|
WMScreen *scr = WMWidgetScreen(panel->parent);
|
|
WMPixmap *icon;
|
|
int i;
|
|
char *buf1, *buf2;
|
|
char *path;
|
|
|
|
panel->box = WMCreateBox(panel->parent);
|
|
WMSetViewExpandsToParent(WMWidgetView(panel->box), 2, 2, 2, 2);
|
|
|
|
/***************** Menu Scroll Speed ****************/
|
|
panel->scrF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->scrF, 235, 90);
|
|
WMMoveWidget(panel->scrF, 25, 20);
|
|
WMSetFrameTitle(panel->scrF, _("Menu Scrolling Speed"));
|
|
|
|
buf1 = wmalloc(strlen(SPEED_IMAGE) + 1);
|
|
buf2 = wmalloc(strlen(SPEED_IMAGE_S) + 1);
|
|
for (i = 0; i < wlengthof(panel->scrB); i++) {
|
|
panel->scrB[i] = WMCreateCustomButton(panel->scrF, WBBStateChangeMask);
|
|
WMResizeWidget(panel->scrB[i], 40, 40);
|
|
WMMoveWidget(panel->scrB[i], 15 + (40 * i), 30);
|
|
WMSetButtonBordered(panel->scrB[i], False);
|
|
WMSetButtonImagePosition(panel->scrB[i], WIPImageOnly);
|
|
if (i > 0) {
|
|
WMGroupButtons(panel->scrB[0], panel->scrB[i]);
|
|
}
|
|
sprintf(buf1, SPEED_IMAGE, i);
|
|
sprintf(buf2, SPEED_IMAGE_S, i);
|
|
path = LocateImage(buf1);
|
|
if (path) {
|
|
icon = WMCreatePixmapFromFile(scr, path);
|
|
if (icon) {
|
|
WMSetButtonImage(panel->scrB[i], icon);
|
|
WMReleasePixmap(icon);
|
|
} else {
|
|
wwarning(_("could not load icon file %s"), path);
|
|
}
|
|
wfree(path);
|
|
}
|
|
path = LocateImage(buf2);
|
|
if (path) {
|
|
icon = WMCreatePixmapFromFile(scr, path);
|
|
if (icon) {
|
|
WMSetButtonAltImage(panel->scrB[i], icon);
|
|
WMReleasePixmap(icon);
|
|
} else {
|
|
wwarning(_("could not load icon file %s"), path);
|
|
}
|
|
wfree(path);
|
|
}
|
|
}
|
|
wfree(buf1);
|
|
wfree(buf2);
|
|
|
|
WMMapSubwidgets(panel->scrF);
|
|
|
|
/***************** Submenu Alignment ****************/
|
|
|
|
panel->aliF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->aliF, 220, 90);
|
|
WMMoveWidget(panel->aliF, 280, 20);
|
|
WMSetFrameTitle(panel->aliF, _("Submenu Alignment"));
|
|
|
|
panel->alinB = WMCreateButton(panel->aliF, WBTOnOff);
|
|
WMResizeWidget(panel->alinB, 48, 48);
|
|
WMMoveWidget(panel->alinB, 56, 25);
|
|
WMSetButtonImagePosition(panel->alinB, WIPImageOnly);
|
|
path = LocateImage(MENU_ALIGN1);
|
|
if (path) {
|
|
icon = WMCreatePixmapFromFile(scr, path);
|
|
if (icon) {
|
|
WMSetButtonImage(panel->alinB, icon);
|
|
WMReleasePixmap(icon);
|
|
} else {
|
|
wwarning(_("could not load icon file %s"), path);
|
|
}
|
|
wfree(path);
|
|
}
|
|
panel->aliyB = WMCreateButton(panel->aliF, WBTOnOff);
|
|
WMResizeWidget(panel->aliyB, 48, 48);
|
|
WMMoveWidget(panel->aliyB, 120, 25);
|
|
WMSetButtonImagePosition(panel->aliyB, WIPImageOnly);
|
|
path = LocateImage(MENU_ALIGN2);
|
|
if (path) {
|
|
icon = WMCreatePixmapFromFile(scr, path);
|
|
if (icon) {
|
|
WMSetButtonImage(panel->aliyB, icon);
|
|
WMReleasePixmap(icon);
|
|
} else {
|
|
wwarning(_("could not load icon file %s"), path);
|
|
}
|
|
wfree(path);
|
|
}
|
|
WMGroupButtons(panel->alinB, panel->aliyB);
|
|
|
|
WMMapSubwidgets(panel->aliF);
|
|
|
|
/***************** Options ****************/
|
|
panel->optF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->optF, 475, 96);
|
|
WMMoveWidget(panel->optF, 25, 120);
|
|
|
|
panel->wrapB = WMCreateSwitchButton(panel->optF);
|
|
WMResizeWidget(panel->wrapB, 440, 32);
|
|
WMMoveWidget(panel->wrapB, 25, 8);
|
|
WMSetButtonText(panel->wrapB, _("Always open submenus inside the screen, instead of scrolling."));
|
|
|
|
panel->autoB = WMCreateSwitchButton(panel->optF);
|
|
WMResizeWidget(panel->autoB, 440, 32);
|
|
WMMoveWidget(panel->autoB, 25, 34);
|
|
WMSetButtonText(panel->autoB, _("Scroll off-screen menus when pointer is moved over them."));
|
|
panel->autoC = WMCreateSwitchButton(panel->optF);
|
|
WMResizeWidget(panel->autoC, 440, 32);
|
|
WMMoveWidget(panel->autoC, 25, 58);
|
|
WMSetButtonText(panel->autoC, _("Use h/j/k/l keys to select menu options."));
|
|
|
|
WMMapSubwidgets(panel->optF);
|
|
|
|
WMRealizeWidget(panel->box);
|
|
WMMapSubwidgets(panel->box);
|
|
|
|
showData(panel);
|
|
}
|
|
|
|
Panel *InitMenuPreferences(WMWidget *parent)
|
|
{
|
|
_Panel *panel;
|
|
|
|
panel = wmalloc(sizeof(_Panel));
|
|
|
|
panel->sectionName = _("Menu Preferences");
|
|
|
|
panel->description = _("Menu usability related options. Scrolling speed,\n" "alignment of submenus etc.");
|
|
|
|
panel->parent = parent;
|
|
|
|
panel->callbacks.createWidgets = createPanel;
|
|
panel->callbacks.updateDomain = storeData;
|
|
|
|
AddSection(panel, ICON_FILE);
|
|
|
|
return panel;
|
|
}
|