mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-18 20:10:29 +01:00
The Icon preference panel have been rearranged to include a slider which controls the size of the Aperçu. This slider is also used to turn off the feature, so the related checkbox have been removed from the Misc preference panel, because it is more convenient to have the related settings at the same place. Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
356 lines
10 KiB
C
356 lines
10 KiB
C
/* Preferences.c- misc ergonomic 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"
|
|
|
|
|
|
/* Possible choices to display window information during a resize */
|
|
static const struct {
|
|
const char *db_value;
|
|
const char *label;
|
|
} resize_display[] = {
|
|
{ "corner", N_("Corner of screen") },
|
|
{ "center", N_("Center of screen") },
|
|
{ "floating", N_("Center of resized window") },
|
|
{ "line", N_("Technical drawing-like") },
|
|
{ "none", N_("Disabled") }
|
|
};
|
|
|
|
/* Possible choices to display window information while a window is being moved */
|
|
static const struct {
|
|
const char *db_value;
|
|
const char *label;
|
|
} move_display[] = {
|
|
{ "corner", N_("Corner of screen") },
|
|
{ "center", N_("Center of screen") },
|
|
{ "floating", N_("Center of resized window") },
|
|
{ "none", N_("Disabled") }
|
|
};
|
|
|
|
/* All the places where a balloon can be used to display more stuff to user */
|
|
static const struct {
|
|
const char *db_key;
|
|
const char *label;
|
|
} balloon_choices[] = {
|
|
{ "WindowTitleBalloons", N_("incomplete window titles"), },
|
|
{ "MiniwindowTitleBalloons", N_("miniwindow titles"), },
|
|
{ "AppIconBalloons", N_("application/dock icons"), },
|
|
{ "HelpBalloons", N_("internal help"), }
|
|
};
|
|
|
|
static const struct {
|
|
const char *db_key;
|
|
int default_value;
|
|
const char *label;
|
|
const char *balloon_msg;
|
|
} appicon_bouncing[] = {
|
|
{ "DoNotMakeAppIconsBounce", False, N_("Disable AppIcon bounce"),
|
|
N_("By default, the AppIcon bounces when the application is launched") },
|
|
|
|
{ "BounceAppIconsWhenUrgent", True, N_("Bounce when the application wants attention"),
|
|
NULL },
|
|
|
|
{ "RaiseAppIconsWhenBouncing", False, N_("Raise AppIcon when bouncing"),
|
|
N_("Otherwise you will not see it bouncing if\nthere is a window in front of the AppIcon") }
|
|
};
|
|
|
|
typedef struct _Panel {
|
|
WMBox *box;
|
|
|
|
char *sectionName;
|
|
|
|
char *description;
|
|
|
|
CallbackRec callbacks;
|
|
|
|
WMWidget *parent;
|
|
|
|
WMFrame *sizeF;
|
|
WMPopUpButton *sizeP;
|
|
|
|
WMFrame *posiF;
|
|
WMPopUpButton *posiP;
|
|
|
|
WMFrame *ballF;
|
|
WMButton *ballB[wlengthof_nocheck(balloon_choices)];
|
|
|
|
WMFrame *optF;
|
|
WMButton *bounceB[wlengthof_nocheck(appicon_bouncing)];
|
|
|
|
WMFrame *borderF;
|
|
WMSlider *borderS;
|
|
WMLabel *borderL;
|
|
WMButton *lrB;
|
|
WMButton *tbB;
|
|
|
|
} _Panel;
|
|
|
|
#define ICON_FILE "ergonomic"
|
|
|
|
static void borderCallback(WMWidget * w, void *data)
|
|
{
|
|
_Panel *panel = (_Panel *) data;
|
|
char buffer[64];
|
|
int i;
|
|
|
|
/* Parameter not used, but tell the compiler that it is ok */
|
|
(void) w;
|
|
|
|
i = WMGetSliderValue(panel->borderS);
|
|
|
|
if (i == 0)
|
|
sprintf(buffer, _("OFF"));
|
|
else if (i == 1)
|
|
sprintf(buffer, _("1 pixel"));
|
|
else if (i <= 4)
|
|
/* 2-4 */
|
|
sprintf(buffer, _("%i pixels"), i);
|
|
else
|
|
/* >4 */
|
|
sprintf(buffer, _("%i pixels "), i); /* note space! */
|
|
WMSetLabelText(panel->borderL, buffer);
|
|
}
|
|
|
|
static void showData(_Panel * panel)
|
|
{
|
|
char *str;
|
|
int x;
|
|
|
|
str = GetStringForKey("ResizeDisplay");
|
|
if (str != NULL) {
|
|
for (x = 0; x < wlengthof(resize_display); x++) {
|
|
if (strcasecmp(str, resize_display[x].db_value) == 0) {
|
|
WMSetPopUpButtonSelectedItem(panel->sizeP, x);
|
|
goto found_valid_resize_display;
|
|
}
|
|
}
|
|
wwarning(_("bad value \"%s\" for option %s, using default \"%s\""),
|
|
str, "ResizeDisplay", resize_display[0].db_value);
|
|
}
|
|
WMSetPopUpButtonSelectedItem(panel->sizeP, 0);
|
|
found_valid_resize_display:
|
|
|
|
str = GetStringForKey("MoveDisplay");
|
|
if (str != NULL) {
|
|
for (x = 0; x < wlengthof(move_display); x++) {
|
|
if (strcasecmp(str, move_display[x].db_value) == 0) {
|
|
WMSetPopUpButtonSelectedItem(panel->posiP, x);
|
|
goto found_valid_move_display;
|
|
}
|
|
}
|
|
wwarning(_("bad value \"%s\" for option %s, using default \"%s\""),
|
|
str, "MoveDisplay", move_display[0].db_value);
|
|
}
|
|
WMSetPopUpButtonSelectedItem(panel->posiP, 0);
|
|
found_valid_move_display:
|
|
|
|
x = GetIntegerForKey("WorkspaceBorderSize");
|
|
x = x < 0 ? 0 : x;
|
|
x = x > 5 ? 5 : x;
|
|
WMSetSliderValue(panel->borderS, x);
|
|
borderCallback(NULL, panel);
|
|
|
|
str = GetStringForKey("WorkspaceBorder");
|
|
if (!str)
|
|
str = "none";
|
|
if (strcasecmp(str, "LeftRight") == 0) {
|
|
WMSetButtonSelected(panel->lrB, True);
|
|
} else if (strcasecmp(str, "TopBottom") == 0) {
|
|
WMSetButtonSelected(panel->tbB, True);
|
|
} else if (strcasecmp(str, "AllDirections") == 0) {
|
|
WMSetButtonSelected(panel->tbB, True);
|
|
WMSetButtonSelected(panel->lrB, True);
|
|
}
|
|
|
|
for (x = 0; x < wlengthof(appicon_bouncing); x++) {
|
|
if (GetStringForKey(appicon_bouncing[x].db_key))
|
|
WMSetButtonSelected(panel->bounceB[x], GetBoolForKey(appicon_bouncing[x].db_key));
|
|
}
|
|
|
|
for (x = 0; x < wlengthof(balloon_choices); x++)
|
|
WMSetButtonSelected(panel->ballB[x], GetBoolForKey(balloon_choices[x].db_key));
|
|
}
|
|
|
|
static void storeData(_Panel * panel)
|
|
{
|
|
char *str;
|
|
Bool lr, tb;
|
|
int i;
|
|
|
|
i = WMGetPopUpButtonSelectedItem(panel->sizeP);
|
|
SetStringForKey(resize_display[i].db_value, "ResizeDisplay");
|
|
|
|
i = WMGetPopUpButtonSelectedItem(panel->posiP);
|
|
SetStringForKey(move_display[i].db_value, "MoveDisplay");
|
|
|
|
lr = WMGetButtonSelected(panel->lrB);
|
|
tb = WMGetButtonSelected(panel->tbB);
|
|
if (lr && tb)
|
|
str = "AllDirections";
|
|
else if (lr)
|
|
str = "LeftRight";
|
|
else if (tb)
|
|
str = "TopBottom";
|
|
else
|
|
str = "None";
|
|
SetStringForKey(str, "WorkspaceBorder");
|
|
SetIntegerForKey(WMGetSliderValue(panel->borderS), "WorkspaceBorderSize");
|
|
|
|
for (i = 0; i < wlengthof(appicon_bouncing); i++)
|
|
SetBoolForKey(WMGetButtonSelected(panel->bounceB[i]), appicon_bouncing[i].db_key);
|
|
|
|
for (i = 0; i < wlengthof(balloon_choices); i++)
|
|
SetBoolForKey(WMGetButtonSelected(panel->ballB[i]), balloon_choices[i].db_key);
|
|
}
|
|
|
|
static void createPanel(Panel * p)
|
|
{
|
|
_Panel *panel = (_Panel *) p;
|
|
int i;
|
|
|
|
panel->box = WMCreateBox(panel->parent);
|
|
WMSetViewExpandsToParent(WMWidgetView(panel->box), 2, 2, 2, 2);
|
|
|
|
/***************** Size Display ****************/
|
|
panel->sizeF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->sizeF, 255, 52);
|
|
WMMoveWidget(panel->sizeF, 15, 7);
|
|
WMSetFrameTitle(panel->sizeF, _("Size Display"));
|
|
|
|
WMSetBalloonTextForView(_("The position or style of the window size\n"
|
|
"display that's shown when a window is resized."), WMWidgetView(panel->sizeF));
|
|
|
|
panel->sizeP = WMCreatePopUpButton(panel->sizeF);
|
|
WMResizeWidget(panel->sizeP, 227, 20);
|
|
WMMoveWidget(panel->sizeP, 14, 20);
|
|
for (i = 0; i < wlengthof(resize_display); i++)
|
|
WMAddPopUpButtonItem(panel->sizeP, _(resize_display[i].label));
|
|
|
|
WMMapSubwidgets(panel->sizeF);
|
|
|
|
/***************** Position Display ****************/
|
|
panel->posiF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->posiF, 255, 52);
|
|
WMMoveWidget(panel->posiF, 15, 66);
|
|
WMSetFrameTitle(panel->posiF, _("Position Display"));
|
|
|
|
WMSetBalloonTextForView(_("The position or style of the window position\n"
|
|
"display that's shown when a window is moved."), WMWidgetView(panel->posiF));
|
|
|
|
panel->posiP = WMCreatePopUpButton(panel->posiF);
|
|
WMResizeWidget(panel->posiP, 227, 20);
|
|
WMMoveWidget(panel->posiP, 14, 20);
|
|
for (i = 0; i < wlengthof(move_display); i++)
|
|
WMAddPopUpButtonItem(panel->posiP, _(move_display[i].label));
|
|
|
|
WMMapSubwidgets(panel->posiF);
|
|
|
|
/***************** Balloon Text ****************/
|
|
panel->ballF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->ballF, 220, 130);
|
|
WMMoveWidget(panel->ballF, 285, 7);
|
|
WMSetFrameTitle(panel->ballF, _("Show balloon for..."));
|
|
|
|
for (i = 0; i < wlengthof(balloon_choices); i++) {
|
|
panel->ballB[i] = WMCreateSwitchButton(panel->ballF);
|
|
WMResizeWidget(panel->ballB[i], 198, 20);
|
|
WMMoveWidget(panel->ballB[i], 11, 20 + i * 26);
|
|
WMSetButtonText(panel->ballB[i], _(balloon_choices[i].label));
|
|
}
|
|
|
|
WMMapSubwidgets(panel->ballF);
|
|
|
|
/***************** Options ****************/
|
|
panel->optF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->optF, 255, 94);
|
|
WMMoveWidget(panel->optF, 15, 125);
|
|
WMSetFrameTitle(panel->optF, _("AppIcon bouncing"));
|
|
|
|
for (i = 0; i < wlengthof(appicon_bouncing); i++) {
|
|
panel->bounceB[i] = WMCreateSwitchButton(panel->optF);
|
|
WMResizeWidget(panel->bounceB[i], 237, 26);
|
|
WMMoveWidget(panel->bounceB[i], 9, 14 + i * 25);
|
|
WMSetButtonText(panel->bounceB[i], _(appicon_bouncing[i].label));
|
|
|
|
if (appicon_bouncing[i].default_value)
|
|
WMSetButtonSelected(panel->bounceB[i], True);
|
|
|
|
if (appicon_bouncing[i].balloon_msg)
|
|
WMSetBalloonTextForView(_(appicon_bouncing[i].balloon_msg),
|
|
WMWidgetView(panel->bounceB[i]));
|
|
}
|
|
|
|
WMMapSubwidgets(panel->optF);
|
|
|
|
/***************** Workspace border ****************/
|
|
panel->borderF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->borderF, 220, 75);
|
|
WMMoveWidget(panel->borderF, 285, 144);
|
|
WMSetFrameTitle(panel->borderF, _("Workspace border"));
|
|
|
|
panel->borderS = WMCreateSlider(panel->borderF);
|
|
WMResizeWidget(panel->borderS, 80, 15);
|
|
WMMoveWidget(panel->borderS, 11, 22);
|
|
WMSetSliderMinValue(panel->borderS, 0);
|
|
WMSetSliderMaxValue(panel->borderS, 5);
|
|
WMSetSliderAction(panel->borderS, borderCallback, panel);
|
|
|
|
panel->borderL = WMCreateLabel(panel->borderF);
|
|
WMResizeWidget(panel->borderL, 100, 15);
|
|
WMMoveWidget(panel->borderL, 105, 22);
|
|
|
|
panel->lrB = WMCreateSwitchButton(panel->borderF);
|
|
WMMoveWidget(panel->lrB, 11, 40);
|
|
WMResizeWidget(panel->lrB, 95, 30);
|
|
WMSetButtonText(panel->lrB, _("Left/Right"));
|
|
|
|
panel->tbB = WMCreateSwitchButton(panel->borderF);
|
|
WMMoveWidget(panel->tbB, 110, 40);
|
|
WMResizeWidget(panel->tbB, 105, 30);
|
|
WMSetButtonText(panel->tbB, _("Top/Bottom"));
|
|
|
|
WMMapSubwidgets(panel->borderF);
|
|
|
|
WMRealizeWidget(panel->box);
|
|
WMMapSubwidgets(panel->box);
|
|
|
|
showData(panel);
|
|
}
|
|
|
|
Panel *InitPreferences(WMWidget *parent)
|
|
{
|
|
_Panel *panel;
|
|
|
|
panel = wmalloc(sizeof(_Panel));
|
|
|
|
panel->sectionName = _("Miscellaneous Ergonomic Preferences");
|
|
panel->description = _("Various settings like balloon text, geometry\n" "displays etc.");
|
|
|
|
panel->parent = parent;
|
|
|
|
panel->callbacks.createWidgets = createPanel;
|
|
panel->callbacks.updateDomain = storeData;
|
|
|
|
AddSection(panel, ICON_FILE);
|
|
|
|
return panel;
|
|
}
|