mirror of
https://github.com/labwc/labwc.git
synced 2025-11-05 13:29:58 -05:00
Two types of window rules are supported, actions and properties. They are
defined as shown below.
<windowRules>
<!-- Action -->
<windowRule identifier="some-application">
<action name="Maximize"/>
</windowRule>
<!-- Property -->
<windowRule identifier="foo*" serverDecoration="yes|no"/>
</windowRules>
Rules are applied if windows match the criteria defined by the
'identifier' attribute which relates to app_id for native Wayland windows
and WM_CLASS for XWayland clients.
Matching against patterns with '*' (wildcard) and '?' (joker) is
supported.
Add 'serverDecoration' property.
37 lines
771 B
C
37 lines
771 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef __WINDOW_RULES_H
|
|
#define __WINDOW_RULES_H
|
|
|
|
enum window_rule_event {
|
|
LAB_WINDOW_RULE_EVENT_ON_FIRST_MAP = 0,
|
|
};
|
|
|
|
enum property {
|
|
LAB_PROP_UNSPECIFIED = 0,
|
|
LAB_PROP_UNSET,
|
|
LAB_PROP_FALSE,
|
|
LAB_PROP_TRUE,
|
|
};
|
|
|
|
/*
|
|
* 'identifier' represents:
|
|
* - 'app_id' for native Wayland windows
|
|
* - 'WM_CLASS' for XWayland clients
|
|
*/
|
|
struct window_rule {
|
|
char *identifier;
|
|
|
|
enum window_rule_event event;
|
|
struct wl_list actions;
|
|
|
|
enum property server_decoration;
|
|
|
|
struct wl_list link; /* struct rcxml.window_rules */
|
|
};
|
|
|
|
struct view;
|
|
|
|
void window_rules_apply(struct view *view, enum window_rule_event event);
|
|
enum property window_rules_get_property(struct view *view, const char *property);
|
|
|
|
#endif /* __WINDOW_RULES_H */
|