Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
wlroots
Commits
dc58c135
Commit
dc58c135
authored
Jul 19, 2018
by
Ryan Dwyer
Browse files
Introduce set_hints event for xwayland
parent
83809cb7
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/wlr/xwayland.h
View file @
dc58c135
...
...
@@ -150,6 +150,7 @@ struct wlr_xwayland_surface {
struct
wl_signal
set_parent
;
struct
wl_signal
set_pid
;
struct
wl_signal
set_window_type
;
struct
wl_signal
set_hints
;
struct
wl_signal
set_override_redirect
;
struct
wl_signal
ping_timeout
;
}
events
;
...
...
xwayland/xwm.c
View file @
dc58c135
...
...
@@ -154,6 +154,7 @@ static struct wlr_xwayland_surface *xwayland_surface_create(
wl_signal_init
(
&
surface
->
events
.
set_parent
);
wl_signal_init
(
&
surface
->
events
.
set_pid
);
wl_signal_init
(
&
surface
->
events
.
set_window_type
);
wl_signal_init
(
&
surface
->
events
.
set_hints
);
wl_signal_init
(
&
surface
->
events
.
set_override_redirect
);
wl_signal_init
(
&
surface
->
events
.
ping_timeout
);
...
...
@@ -492,6 +493,7 @@ static void read_surface_hints(struct wlr_xwm *xwm,
xsurface
->
hints_urgency
=
xcb_icccm_wm_hints_get_urgency
(
&
hints
);
wlr_log
(
WLR_DEBUG
,
"WM_HINTS (%d)"
,
reply
->
value_len
);
wlr_signal_emit_safe
(
&
xsurface
->
events
.
set_hints
,
xsurface
);
}
#else
static
void
read_surface_hints
(
struct
wlr_xwm
*
xwm
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment