mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 20:38:08 +01:00
This patch is adding miniwindow apercu when the mouse is over the miniwindows. To enable it you have to run WPref, in Miscellaneous Ergonomic Preferences, check miniwindow apercus. Then, you will be able to see a screenshot of the app when the mouse is over the miniwindow.
350 lines
10 KiB
C
350 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"
|
|
|
|
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[5];
|
|
|
|
WMFrame *optF;
|
|
WMButton *bounceB;
|
|
WMButton *bounceUrgB;
|
|
WMButton *bounceRaisB;
|
|
|
|
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)
|
|
str = "corner";
|
|
if (strcasecmp(str, "corner") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->sizeP, 0);
|
|
else if (strcasecmp(str, "center") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->sizeP, 1);
|
|
else if (strcasecmp(str, "floating") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->sizeP, 2);
|
|
else if (strcasecmp(str, "line") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->sizeP, 3);
|
|
else if (strcasecmp(str, "none") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->sizeP, 4);
|
|
|
|
str = GetStringForKey("MoveDisplay");
|
|
if (!str)
|
|
str = "corner";
|
|
if (strcasecmp(str, "corner") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->posiP, 0);
|
|
else if (strcasecmp(str, "center") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->posiP, 1);
|
|
else if (strcasecmp(str, "floating") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->posiP, 2);
|
|
else if (strcasecmp(str, "none") == 0)
|
|
WMSetPopUpButtonSelectedItem(panel->posiP, 3);
|
|
|
|
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);
|
|
}
|
|
|
|
WMSetButtonSelected(panel->bounceB, GetBoolForKey("DoNotMakeAppIconsBounce"));
|
|
if (GetStringForKey("BounceAppIconsWhenUrgent"))
|
|
WMSetButtonSelected(panel->bounceUrgB, GetBoolForKey("BounceAppIconsWhenUrgent"));
|
|
WMSetButtonSelected(panel->bounceRaisB, GetBoolForKey("RaiseAppIconsWhenBouncing"));
|
|
|
|
WMSetButtonSelected(panel->ballB[0], GetBoolForKey("WindowTitleBalloons"));
|
|
WMSetButtonSelected(panel->ballB[1], GetBoolForKey("MiniwindowTitleBalloons"));
|
|
WMSetButtonSelected(panel->ballB[2], GetBoolForKey("MiniwindowApercuBalloons"));
|
|
WMSetButtonSelected(panel->ballB[3], GetBoolForKey("AppIconBalloons"));
|
|
WMSetButtonSelected(panel->ballB[4], GetBoolForKey("HelpBalloons"));
|
|
}
|
|
|
|
static void storeData(_Panel * panel)
|
|
{
|
|
char *str;
|
|
Bool lr, tb;
|
|
|
|
switch (WMGetPopUpButtonSelectedItem(panel->sizeP)) {
|
|
case 0:
|
|
str = "corner";
|
|
break;
|
|
case 1:
|
|
str = "center";
|
|
break;
|
|
case 2:
|
|
str = "floating";
|
|
break;
|
|
case 4:
|
|
str = "none";
|
|
break;
|
|
default:
|
|
str = "line";
|
|
break;
|
|
}
|
|
SetStringForKey(str, "ResizeDisplay");
|
|
|
|
switch (WMGetPopUpButtonSelectedItem(panel->posiP)) {
|
|
case 0:
|
|
str = "corner";
|
|
break;
|
|
case 1:
|
|
str = "center";
|
|
break;
|
|
case 3:
|
|
str = "none";
|
|
break;
|
|
default:
|
|
str = "floating";
|
|
break;
|
|
}
|
|
SetStringForKey(str, "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");
|
|
|
|
SetBoolForKey(WMGetButtonSelected(panel->bounceB), "DoNotMakeAppIconsBounce");
|
|
SetBoolForKey(WMGetButtonSelected(panel->bounceUrgB), "BounceAppIconsWhenUrgent");
|
|
SetBoolForKey(WMGetButtonSelected(panel->bounceRaisB), "RaiseAppIconsWhenBouncing");
|
|
SetBoolForKey(WMGetButtonSelected(panel->ballB[0]), "WindowTitleBalloons");
|
|
SetBoolForKey(WMGetButtonSelected(panel->ballB[1]), "MiniwindowTitleBalloons");
|
|
SetBoolForKey(WMGetButtonSelected(panel->ballB[2]), "MiniwindowApercuBalloons");
|
|
SetBoolForKey(WMGetButtonSelected(panel->ballB[3]), "AppIconBalloons");
|
|
SetBoolForKey(WMGetButtonSelected(panel->ballB[4]), "HelpBalloons");
|
|
}
|
|
|
|
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, 240, 60);
|
|
WMMoveWidget(panel->sizeF, 15, 10);
|
|
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, 200, 20);
|
|
WMMoveWidget(panel->sizeP, 20, 24);
|
|
WMAddPopUpButtonItem(panel->sizeP, _("Corner of screen"));
|
|
WMAddPopUpButtonItem(panel->sizeP, _("Center of screen"));
|
|
WMAddPopUpButtonItem(panel->sizeP, _("Center of resized window"));
|
|
WMAddPopUpButtonItem(panel->sizeP, _("Technical drawing-like"));
|
|
WMAddPopUpButtonItem(panel->sizeP, _("Disabled"));
|
|
|
|
WMMapSubwidgets(panel->sizeF);
|
|
|
|
/***************** Position Display ****************/
|
|
panel->posiF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->posiF, 240, 60);
|
|
WMMoveWidget(panel->posiF, 15, 75);
|
|
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, 200, 20);
|
|
WMMoveWidget(panel->posiP, 20, 24);
|
|
WMAddPopUpButtonItem(panel->posiP, _("Corner of screen"));
|
|
WMAddPopUpButtonItem(panel->posiP, _("Center of screen"));
|
|
WMAddPopUpButtonItem(panel->posiP, _("Center of resized window"));
|
|
WMAddPopUpButtonItem(panel->posiP, _("Disabled"));
|
|
|
|
WMMapSubwidgets(panel->posiF);
|
|
|
|
/***************** Balloon Text ****************/
|
|
panel->ballF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->ballF, 240, 126);
|
|
WMMoveWidget(panel->ballF, 265, 10);
|
|
WMSetFrameTitle(panel->ballF, _("Show balloon for..."));
|
|
|
|
for (i = 0; i < 5; i++) {
|
|
panel->ballB[i] = WMCreateSwitchButton(panel->ballF);
|
|
WMResizeWidget(panel->ballB[i], 210, 20);
|
|
WMMoveWidget(panel->ballB[i], 15, 16 + i * 22);
|
|
}
|
|
WMSetButtonText(panel->ballB[0], _("incomplete window titles"));
|
|
WMSetButtonText(panel->ballB[1], _("miniwindow titles"));
|
|
WMSetButtonText(panel->ballB[2], _("miniwindow apercus"));
|
|
WMSetButtonText(panel->ballB[3], _("application/dock icons"));
|
|
WMSetButtonText(panel->ballB[4], _("internal help"));
|
|
|
|
WMMapSubwidgets(panel->ballF);
|
|
|
|
/***************** Options ****************/
|
|
panel->optF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->optF, 240, 91);
|
|
WMMoveWidget(panel->optF, 265, 136);
|
|
WMSetFrameTitle(panel->optF, _("AppIcon bouncing"));
|
|
|
|
panel->bounceB = WMCreateSwitchButton(panel->optF);
|
|
WMResizeWidget(panel->bounceB, 210, 25);
|
|
WMMoveWidget(panel->bounceB, 15, 14);
|
|
WMSetButtonText(panel->bounceB, _("Disable AppIcon bounce."));
|
|
|
|
panel->bounceUrgB = WMCreateSwitchButton(panel->optF);
|
|
WMResizeWidget(panel->bounceUrgB, 210, 28);
|
|
WMMoveWidget(panel->bounceUrgB, 15, 37);
|
|
WMSetButtonText(panel->bounceUrgB, _("Bounce AppIcon when the application wants attention."));
|
|
WMSetButtonSelected(panel->bounceUrgB, True); /* defaults to true */
|
|
|
|
panel->bounceRaisB = WMCreateSwitchButton(panel->optF);
|
|
WMResizeWidget(panel->bounceRaisB, 210, 23);
|
|
WMMoveWidget(panel->bounceRaisB, 15, 65);
|
|
WMSetButtonText(panel->bounceRaisB, _("Raise AppIcons when bouncing."));
|
|
|
|
WMMapSubwidgets(panel->optF);
|
|
|
|
/***************** Workspace border ****************/
|
|
panel->borderF = WMCreateFrame(panel->box);
|
|
WMResizeWidget(panel->borderF, 240, 82);
|
|
WMMoveWidget(panel->borderF, 15, 145);
|
|
WMSetFrameTitle(panel->borderF, _("Workspace border"));
|
|
|
|
panel->borderS = WMCreateSlider(panel->borderF);
|
|
WMResizeWidget(panel->borderS, 80, 15);
|
|
WMMoveWidget(panel->borderS, 20, 20);
|
|
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, 20);
|
|
|
|
panel->lrB = WMCreateSwitchButton(panel->borderF);
|
|
WMMoveWidget(panel->lrB, 20, 40);
|
|
WMResizeWidget(panel->lrB, 100, 30);
|
|
WMSetButtonText(panel->lrB, _("Left/Right"));
|
|
|
|
panel->tbB = WMCreateSwitchButton(panel->borderF);
|
|
WMMoveWidget(panel->tbB, 120, 40);
|
|
WMResizeWidget(panel->tbB, 100, 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;
|
|
}
|