mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-18 20:10:29 +01:00
358 lines
9.9 KiB
C
358 lines
9.9 KiB
C
/* WindowHandling.c- options for handling windows
|
|
*
|
|
* WPrefs - WindowMaker Preferences Program
|
|
*
|
|
* Copyright (c) 1998 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
* USA.
|
|
*/
|
|
|
|
|
|
#include "WPrefs.h"
|
|
|
|
typedef struct _Panel {
|
|
WMFrame *frame;
|
|
|
|
char *sectionName;
|
|
|
|
CallbackRec callbacks;
|
|
|
|
WMWindow *win;
|
|
|
|
WMFrame *placF;
|
|
WMPopUpButton *placP;
|
|
WMLabel *porigL;
|
|
WMLabel *porigvL;
|
|
WMFrame *porigF;
|
|
WMLabel *porigW;
|
|
|
|
WMSlider *vsli;
|
|
WMSlider *hsli;
|
|
|
|
WMFrame *maxiF;
|
|
WMButton *miconB;
|
|
WMButton *mdockB;
|
|
|
|
WMFrame *opaqF;
|
|
WMButton *opaqB;
|
|
|
|
WMFrame *tranF;
|
|
WMButton *tranB;
|
|
} _Panel;
|
|
|
|
|
|
#define ICON_FILE "whandling"
|
|
|
|
#define OPAQUE_MOVE_PIXMAP "opaque"
|
|
|
|
#define NON_OPAQUE_MOVE_PIXMAP "nonopaque"
|
|
|
|
|
|
#define THUMB_SIZE 16
|
|
|
|
|
|
static char *placements[] = {
|
|
"auto",
|
|
"random",
|
|
"manual",
|
|
"cascade"
|
|
};
|
|
|
|
|
|
static void
|
|
sliderCallback(WMWidget *w, void *data)
|
|
{
|
|
_Panel *panel = (_Panel*)data;
|
|
int x, y, rx, ry;
|
|
char buffer[64];
|
|
int swidth = WMGetSliderMaxValue(panel->hsli);
|
|
int sheight = WMGetSliderMaxValue(panel->vsli);
|
|
|
|
x = WMGetSliderValue(panel->hsli);
|
|
y = WMGetSliderValue(panel->vsli);
|
|
|
|
rx = x*(WMWidgetWidth(panel->porigF)-3)/swidth+2;
|
|
ry = y*(WMWidgetHeight(panel->porigF)-3)/sheight+2;
|
|
WMMoveWidget(panel->porigW, rx, ry);
|
|
|
|
sprintf(buffer, "(%i,%i)", x, y);
|
|
WMSetLabelText(panel->porigvL, buffer);
|
|
}
|
|
|
|
|
|
static int
|
|
getPlacement(char *str)
|
|
{
|
|
if (strcasecmp(str, "auto")==0 || strcasecmp(str, "smart")==0)
|
|
return 0;
|
|
else if (strcasecmp(str, "random")==0)
|
|
return 3;
|
|
else if (strcasecmp(str, "manual")==0)
|
|
return 2;
|
|
else if (strcasecmp(str, "cascade")==0)
|
|
return 1;
|
|
else
|
|
wwarning(_("bad option value %s in WindowPlacement. Using default value"),
|
|
str);
|
|
return 0;
|
|
}
|
|
|
|
|
|
static void
|
|
showData(_Panel *panel)
|
|
{
|
|
char *str;
|
|
proplist_t arr;
|
|
int x, y;
|
|
|
|
str = GetStringForKey("WindowPlacement");
|
|
|
|
WMSetPopUpButtonSelectedItem(panel->placP, getPlacement(str));
|
|
|
|
arr = GetObjectForKey("WindowPlaceOrigin");
|
|
|
|
x = 0;
|
|
y = 0;
|
|
if (arr && (!PLIsArray(arr) || PLGetNumberOfElements(arr)!=2)) {
|
|
wwarning(_("invalid data in option WindowPlaceOrigin. Using default (0,0)"));
|
|
} else {
|
|
if (arr) {
|
|
x = atoi(PLGetString(PLGetArrayElement(arr, 0)));
|
|
y = atoi(PLGetString(PLGetArrayElement(arr, 1)));
|
|
}
|
|
}
|
|
|
|
WMSetSliderValue(panel->hsli, x);
|
|
WMSetSliderValue(panel->vsli, y);
|
|
|
|
sliderCallback(NULL, panel);
|
|
|
|
WMSetButtonSelected(panel->tranB, GetBoolForKey("OnTopTransients"));
|
|
|
|
WMSetButtonSelected(panel->opaqB, GetBoolForKey("OpaqueMove"));
|
|
|
|
WMSetButtonSelected(panel->miconB, GetBoolForKey("NoWindowOverIcons"));
|
|
|
|
WMSetButtonSelected(panel->mdockB, GetBoolForKey("NoWindowUnderDock"));
|
|
}
|
|
|
|
|
|
static void
|
|
storeData(_Panel *panel)
|
|
{
|
|
proplist_t arr;
|
|
char x[16], y[16];
|
|
|
|
SetBoolForKey(WMGetButtonSelected(panel->miconB), "NoWindowOverIcons");
|
|
SetBoolForKey(WMGetButtonSelected(panel->mdockB), "NoWindowUnderDock");
|
|
SetBoolForKey(WMGetButtonSelected(panel->opaqB), "OpaqueMove");
|
|
SetBoolForKey(WMGetButtonSelected(panel->tranB), "OnTopTransients");
|
|
SetStringForKey(placements[WMGetPopUpButtonSelectedItem(panel->placP)],
|
|
"WindowPlacement");
|
|
sprintf(x, "%i", WMGetSliderValue(panel->hsli));
|
|
sprintf(y, "%i", WMGetSliderValue(panel->vsli));
|
|
arr = PLMakeArrayFromElements(PLMakeString(x), PLMakeString(y), NULL);
|
|
SetObjectForKey(arr, "WindowPlaceOrigin");
|
|
PLRelease(arr);
|
|
}
|
|
|
|
|
|
static void
|
|
createPanel(Panel *p)
|
|
{
|
|
_Panel *panel = (Panel*)p;
|
|
WMScreen *scr = WMWidgetScreen(panel->win);
|
|
WMColor *color;
|
|
WMPixmap *pixmap;
|
|
int width, height;
|
|
int swidth, sheight;
|
|
char *path;
|
|
|
|
panel->frame = WMCreateFrame(panel->win);
|
|
WMResizeWidget(panel->frame, FRAME_WIDTH, FRAME_HEIGHT);
|
|
WMMoveWidget(panel->frame, FRAME_LEFT, FRAME_TOP);
|
|
|
|
/************** Window Placement ***************/
|
|
panel->placF = WMCreateFrame(panel->frame);
|
|
WMResizeWidget(panel->placF, 270, 150);
|
|
WMMoveWidget(panel->placF, 20, 15);
|
|
WMSetFrameTitle(panel->placF, _("Window Placement"));
|
|
|
|
panel->placP = WMCreatePopUpButton(panel->placF);
|
|
WMResizeWidget(panel->placP, 195, 20);
|
|
WMMoveWidget(panel->placP, 35, 20);
|
|
WMAddPopUpButtonItem(panel->placP, _("Automatic"));
|
|
WMAddPopUpButtonItem(panel->placP, _("Random"));
|
|
WMAddPopUpButtonItem(panel->placP, _("Manual"));
|
|
WMAddPopUpButtonItem(panel->placP, _("Cascade"));
|
|
|
|
panel->porigL = WMCreateLabel(panel->placF);
|
|
WMResizeWidget(panel->porigL, 118, 32);
|
|
WMMoveWidget(panel->porigL, 5, 60);
|
|
WMSetLabelTextAlignment(panel->porigL, WACenter);
|
|
WMSetLabelText(panel->porigL, _("Placement Origin"));
|
|
|
|
panel->porigvL = WMCreateLabel(panel->placF);
|
|
WMResizeWidget(panel->porigvL, 70, 20);
|
|
WMMoveWidget(panel->porigvL, 25, 95);
|
|
WMSetLabelTextAlignment(panel->porigvL, WACenter);
|
|
|
|
color = WMCreateRGBColor(scr, 0x5100, 0x5100, 0x7100, True);
|
|
panel->porigF = WMCreateFrame(panel->placF);
|
|
WMSetWidgetBackgroundColor(panel->porigF, color);
|
|
WMReleaseColor(color);
|
|
WMSetFrameRelief(panel->porigF, WRSunken);
|
|
|
|
swidth = WidthOfScreen(DefaultScreenOfDisplay(WMScreenDisplay(scr)));
|
|
sheight = HeightOfScreen(DefaultScreenOfDisplay(WMScreenDisplay(scr)));
|
|
|
|
if (120*sheight/swidth < 80*swidth/sheight) {
|
|
width = 80*swidth/sheight;
|
|
height = 80;
|
|
} else {
|
|
height = 120*sheight/swidth;
|
|
width = 120;
|
|
}
|
|
WMResizeWidget(panel->porigF, width, height);
|
|
WMMoveWidget(panel->porigF, 125+(120-width)/2, 45+(80-height)/2);
|
|
|
|
panel->porigW = WMCreateLabel(panel->porigF);
|
|
WMResizeWidget(panel->porigW, THUMB_SIZE, THUMB_SIZE);
|
|
WMMoveWidget(panel->porigW, 2, 2);
|
|
WMSetLabelRelief(panel->porigW, WRRaised);
|
|
|
|
|
|
panel->hsli = WMCreateSlider(panel->placF);
|
|
WMResizeWidget(panel->hsli, width, 12);
|
|
WMMoveWidget(panel->hsli, 125+(120-width)/2, 45+(80-height)/2+height+2);
|
|
WMSetSliderAction(panel->hsli, sliderCallback, panel);
|
|
WMSetSliderMinValue(panel->hsli, 0);
|
|
WMSetSliderMaxValue(panel->hsli, swidth);
|
|
|
|
panel->vsli = WMCreateSlider(panel->placF);
|
|
WMResizeWidget(panel->vsli, 12, height);
|
|
WMMoveWidget(panel->vsli, 125+(120-width)/2+width+2, 45+(80-height)/2);
|
|
WMSetSliderAction(panel->vsli, sliderCallback, panel);
|
|
WMSetSliderMinValue(panel->vsli, 0);
|
|
WMSetSliderMaxValue(panel->vsli, sheight);
|
|
|
|
WMMapSubwidgets(panel->porigF);
|
|
|
|
WMMapSubwidgets(panel->placF);
|
|
|
|
/************** Opaque Move ***************/
|
|
panel->opaqF = WMCreateFrame(panel->frame);
|
|
WMMoveWidget(panel->opaqF, 300, 15);
|
|
WMResizeWidget(panel->opaqF, 205, 125);
|
|
WMSetFrameTitle(panel->opaqF, _("Opaque Move"));
|
|
|
|
panel->opaqB = WMCreateButton(panel->opaqF, WBTToggle);
|
|
WMResizeWidget(panel->opaqB, 64, 64);
|
|
WMMoveWidget(panel->opaqB, 70, 35);
|
|
WMSetButtonImagePosition(panel->opaqB, WIPImageOnly);
|
|
|
|
path = LocateImage(NON_OPAQUE_MOVE_PIXMAP);
|
|
if (path) {
|
|
pixmap = WMCreatePixmapFromFile(scr, path);
|
|
if (pixmap) {
|
|
WMSetButtonImage(panel->opaqB, pixmap);
|
|
WMReleasePixmap(pixmap);
|
|
} else {
|
|
wwarning(_("could not load icon %s"), path);
|
|
}
|
|
free(path);
|
|
}
|
|
|
|
path = LocateImage(OPAQUE_MOVE_PIXMAP);
|
|
if (path) {
|
|
pixmap = WMCreatePixmapFromFile(scr, path);
|
|
if (pixmap) {
|
|
WMSetButtonAltImage(panel->opaqB, pixmap);
|
|
WMReleasePixmap(pixmap);
|
|
} else {
|
|
wwarning(_("could not load icon %s"), path);
|
|
}
|
|
free(path);
|
|
}
|
|
WMMapSubwidgets(panel->opaqF);
|
|
|
|
/**************** Account for Icon/Dock ***************/
|
|
panel->maxiF = WMCreateFrame(panel->frame);
|
|
WMResizeWidget(panel->maxiF, 205, 70);
|
|
WMMoveWidget(panel->maxiF, 300, 145);
|
|
WMSetFrameTitle(panel->maxiF, _("When maximizing..."));
|
|
|
|
panel->miconB = WMCreateSwitchButton(panel->maxiF);
|
|
WMResizeWidget(panel->miconB, 185, 20);
|
|
WMMoveWidget(panel->miconB, 10, 20);
|
|
WMSetButtonText(panel->miconB, _("...do not resize over icons"));
|
|
|
|
panel->mdockB = WMCreateSwitchButton(panel->maxiF);
|
|
WMResizeWidget(panel->mdockB, 185, 20);
|
|
WMMoveWidget(panel->mdockB, 10, 40);
|
|
WMSetButtonText(panel->mdockB, _("...do not resize over dock"));
|
|
|
|
WMMapSubwidgets(panel->maxiF);
|
|
|
|
/**************** Transients On Top ****************/
|
|
|
|
panel->tranF = WMCreateFrame(panel->frame);
|
|
WMResizeWidget(panel->tranF, 270, 40);
|
|
WMMoveWidget(panel->tranF, 20, 175);
|
|
|
|
panel->tranB = WMCreateSwitchButton(panel->tranF);
|
|
WMMoveWidget(panel->tranB, 10, 10);
|
|
WMResizeWidget(panel->tranB, 235, 20);
|
|
WMSetButtonText(panel->tranB, _("Keep transients above their owners"));
|
|
|
|
WMMapSubwidgets(panel->tranF);
|
|
|
|
WMRealizeWidget(panel->frame);
|
|
WMMapSubwidgets(panel->frame);
|
|
|
|
/* show the config data */
|
|
showData(panel);
|
|
}
|
|
|
|
|
|
static void
|
|
undo(_Panel *panel)
|
|
{
|
|
showData(panel);
|
|
}
|
|
|
|
|
|
Panel*
|
|
InitWindowHandling(WMScreen *scr, WMWindow *win)
|
|
{
|
|
_Panel *panel;
|
|
|
|
panel = wmalloc(sizeof(_Panel));
|
|
memset(panel, 0, sizeof(_Panel));
|
|
|
|
panel->sectionName = _("Window Handling Preferences");
|
|
|
|
panel->win = win;
|
|
|
|
panel->callbacks.createWidgets = createPanel;
|
|
panel->callbacks.updateDomain = storeData;
|
|
panel->callbacks.undoChanges = undo;
|
|
|
|
AddSection(panel, ICON_FILE);
|
|
|
|
return panel;
|
|
}
|