mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +01:00
Consistent terms for switch panel cycling.
The terms "switch panel" and "cycling" have been used in Window Maker since time immemorial but have not always been applied consistently.
This commit is contained in:
committed by
Carlos R. Mafra
parent
a772f2797d
commit
bb9f91a355
@@ -423,8 +423,8 @@ extern struct WPreferences {
|
||||
int history_lines; /* history of "Run..." dialog */
|
||||
char cycle_active_head_only; /* Cycle only windows on the active head */
|
||||
char cycle_ignore_minimized; /* Ignore minimized windows when cycling */
|
||||
char strict_windoze_cycle; /* don't close switchpanel when shift is released */
|
||||
char panel_only_open; /* Only open the switchpanel; don't switch */
|
||||
char strict_windoze_cycle; /* don't close switch panel when shift is released */
|
||||
char panel_only_open; /* Only open the switch panel; don't switch */
|
||||
|
||||
/* All delays here are in ms. 0 means instant auto-action. */
|
||||
int clip_auto_raise_delay; /* Delay after which the clip will be raised when entered */
|
||||
|
||||
@@ -182,7 +182,7 @@ void StartWindozeCycle(WWindow *wwin, XEvent *event, Bool next, Bool class_only)
|
||||
|
||||
} else if (ev.xkey.keycode == returnKey) {
|
||||
|
||||
/* Close the switchpanel without eating the keypress */
|
||||
/* Close the switch panel without eating the keypress */
|
||||
done = True;
|
||||
|
||||
} else if (ev.xkey.keycode != shiftLKey && ev.xkey.keycode != shiftRKey) {
|
||||
|
||||
@@ -3317,7 +3317,7 @@ static int setSwPOptions(WScreen * scr, WDefaultEntry * entry, void *tdata, void
|
||||
|
||||
if (cwidth <= 0 || cheight <= 0 ||
|
||||
cwidth >= bgimage->width - 2 || cheight >= bgimage->height - 2)
|
||||
wwarning(_("Invalid split sizes for SwitchPanel back image."));
|
||||
wwarning(_("Invalid split sizes for switch panel back image."));
|
||||
else {
|
||||
int i;
|
||||
int swidth, theight;
|
||||
|
||||
@@ -195,7 +195,7 @@ static void addIconForWindow(WSwitchPanel *panel, WMWidget *parent, WWindow *wwi
|
||||
if (!image)
|
||||
image = get_icon_image(panel->scr, wwin->wm_instance, wwin->wm_class, ICON_TILE_SIZE);
|
||||
|
||||
/* We must resize the icon size (~64) to the switchpanel icon size (~48) */
|
||||
/* We must resize the icon size (~64) to the switch panel icon size (~48) */
|
||||
image = wIconValidateIconSize(image, ICON_SIZE);
|
||||
|
||||
WMAddToArray(panel->images, image);
|
||||
|
||||
@@ -1420,7 +1420,7 @@ static void create_tab_window_advanced(WWindow *wwin, InspectorPanel *panel, int
|
||||
case 3:
|
||||
caption = _("Do not show in the switch panel");
|
||||
flag = WFLAGP(wwin, skip_switchpanel);
|
||||
descr = _("Do not include in switchpanel while alternating windows.");
|
||||
descr = _("Do not include in switch panel while cycling windows.");
|
||||
break;
|
||||
case 4:
|
||||
caption = _("Do not let it take focus");
|
||||
|
||||
Reference in New Issue
Block a user