|
|
|
@ -19,6 +19,8 @@ struct wlr_output_layout_output_state {
|
|
|
|
|
bool auto_configured;
|
|
|
|
|
|
|
|
|
|
struct wl_listener resolution;
|
|
|
|
|
struct wl_listener scale;
|
|
|
|
|
struct wl_listener transform;
|
|
|
|
|
struct wl_listener output_destroy;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -46,6 +48,8 @@ static void wlr_output_layout_output_destroy(
|
|
|
|
|
struct wlr_output_layout_output *l_output) {
|
|
|
|
|
wl_signal_emit(&l_output->events.destroy, l_output);
|
|
|
|
|
wl_list_remove(&l_output->state->resolution.link);
|
|
|
|
|
wl_list_remove(&l_output->state->scale.link);
|
|
|
|
|
wl_list_remove(&l_output->state->transform.link);
|
|
|
|
|
wl_list_remove(&l_output->state->output_destroy.link);
|
|
|
|
|
wl_list_remove(&l_output->link);
|
|
|
|
|
free(l_output->state);
|
|
|
|
@ -134,6 +138,18 @@ static void handle_output_resolution(struct wl_listener *listener, void *data) {
|
|
|
|
|
wlr_output_layout_reconfigure(state->layout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_output_scale(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct wlr_output_layout_output_state *state =
|
|
|
|
|
wl_container_of(listener, state, scale);
|
|
|
|
|
wlr_output_layout_reconfigure(state->layout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_output_transform(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct wlr_output_layout_output_state *state =
|
|
|
|
|
wl_container_of(listener, state, transform);
|
|
|
|
|
wlr_output_layout_reconfigure(state->layout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_output_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
|
struct wlr_output_layout_output_state *state =
|
|
|
|
|
wl_container_of(listener, state, output_destroy);
|
|
|
|
@ -162,6 +178,10 @@ static struct wlr_output_layout_output *wlr_output_layout_output_create(
|
|
|
|
|
|
|
|
|
|
wl_signal_add(&output->events.resolution, &l_output->state->resolution);
|
|
|
|
|
l_output->state->resolution.notify = handle_output_resolution;
|
|
|
|
|
wl_signal_add(&output->events.scale, &l_output->state->scale);
|
|
|
|
|
l_output->state->scale.notify = handle_output_scale;
|
|
|
|
|
wl_signal_add(&output->events.transform, &l_output->state->transform);
|
|
|
|
|
l_output->state->transform.notify = handle_output_transform;
|
|
|
|
|
wl_signal_add(&output->events.destroy, &l_output->state->output_destroy);
|
|
|
|
|
l_output->state->output_destroy.notify = handle_output_destroy;
|
|
|
|
|
|
|
|
|
|