mirror of
https://github.com/labwc/labwc.git
synced 2026-04-08 08:21:09 -04:00
window-switcher: add age order to window cycling
- Add a new configuration option to control the window switcher traversal order. - Document cycle windows behavior with new option `order` in `<windowSwitcher>`
This commit is contained in:
parent
06505d24c8
commit
9962f44d55
9 changed files with 63 additions and 2 deletions
|
|
@ -185,6 +185,7 @@ struct rcxml {
|
|||
enum cycle_osd_style style;
|
||||
enum cycle_osd_output_criteria output_criteria;
|
||||
char *thumbnail_label_format;
|
||||
enum window_switcher_order order;
|
||||
} window_switcher;
|
||||
|
||||
struct wl_list window_rules; /* struct window_rule.link */
|
||||
|
|
|
|||
|
|
@ -107,6 +107,11 @@ enum lab_window_type {
|
|||
LAB_WINDOW_TYPE_LEN
|
||||
};
|
||||
|
||||
enum window_switcher_order {
|
||||
WINDOW_SWITCHER_ORDER_FOCUS,
|
||||
WINDOW_SWITCHER_ORDER_AGE,
|
||||
};
|
||||
|
||||
enum cycle_osd_style {
|
||||
CYCLE_OSD_STYLE_CLASSIC,
|
||||
CYCLE_OSD_STYLE_THUMBNAIL,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue