mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-10 15:35:59 +01:00
output-management-v1: various fixes
This commit is contained in:
parent
d695003498
commit
e873c652bf
1 changed files with 38 additions and 7 deletions
|
@ -83,8 +83,7 @@ static void config_head_handle_output_destroy(struct wl_listener *listener,
|
||||||
config_head_destroy(config_head);
|
config_head_destroy(config_head);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct wlr_output_configuration_head_v1 *
|
static struct wlr_output_configuration_head_v1 *config_head_create(
|
||||||
wlr_output_configuration_head_v1_create(
|
|
||||||
struct wlr_output_configuration_v1 *config, struct wlr_output *output) {
|
struct wlr_output_configuration_v1 *config, struct wlr_output *output) {
|
||||||
struct wlr_output_configuration_head_v1 *config_head =
|
struct wlr_output_configuration_head_v1 *config_head =
|
||||||
calloc(1, sizeof(*config_head));
|
calloc(1, sizeof(*config_head));
|
||||||
|
@ -99,6 +98,16 @@ struct wlr_output_configuration_head_v1 *
|
||||||
return config_head;
|
return config_head;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct wlr_output_configuration_head_v1 *
|
||||||
|
wlr_output_configuration_head_v1_create(
|
||||||
|
struct wlr_output_configuration_v1 *config, struct wlr_output *output) {
|
||||||
|
struct wlr_output_configuration_head_v1 *config_head =
|
||||||
|
config_head_create(config, output);
|
||||||
|
config_head->state.enabled = output->enabled;
|
||||||
|
// TODO: other properties
|
||||||
|
return config_head;
|
||||||
|
}
|
||||||
|
|
||||||
static const struct zwlr_output_configuration_head_v1_interface config_head_impl;
|
static const struct zwlr_output_configuration_head_v1_interface config_head_impl;
|
||||||
|
|
||||||
// Can return NULL if the configuration head is inert
|
// Can return NULL if the configuration head is inert
|
||||||
|
@ -130,15 +139,18 @@ static struct wlr_output_configuration_v1 *config_from_resource(
|
||||||
return wl_resource_get_user_data(resource);
|
return wl_resource_get_user_data(resource);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct wlr_output_configuration_head_v1 *config_create_head(
|
static bool config_check_head_is_unconfigured(
|
||||||
struct wlr_output_configuration_v1 *config, struct wlr_output *output) {
|
struct wlr_output_configuration_v1 *config, struct wlr_output *output) {
|
||||||
struct wlr_output_configuration_head_v1 *head;
|
struct wlr_output_configuration_head_v1 *head;
|
||||||
wl_list_for_each(head, &config->heads, link) {
|
wl_list_for_each(head, &config->heads, link) {
|
||||||
if (head->state.output == output) {
|
if (head->state.output == output) {
|
||||||
return NULL; // TODO: post already_configured_head error instead
|
wl_resource_post_error(config->resource,
|
||||||
|
ZWLR_OUTPUT_CONFIGURATION_V1_ERROR_ALREADY_CONFIGURED_HEAD,
|
||||||
|
"head has already been configured");
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return wlr_output_configuration_head_v1_create(config, output);
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void config_handle_enable_head(struct wl_client *client,
|
static void config_handle_enable_head(struct wl_client *client,
|
||||||
|
@ -157,11 +169,15 @@ static void config_handle_enable_head(struct wl_client *client,
|
||||||
// Create an inert resource if the head no longer exists
|
// Create an inert resource if the head no longer exists
|
||||||
struct wlr_output_configuration_head_v1 *config_head = NULL;
|
struct wlr_output_configuration_head_v1 *config_head = NULL;
|
||||||
if (head != NULL) {
|
if (head != NULL) {
|
||||||
config_head = config_create_head(config, head->state.output);
|
if (!config_check_head_is_unconfigured(config, head->state.output)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
config_head = config_head_create(config, head->state.output);
|
||||||
if (config_head == NULL) {
|
if (config_head == NULL) {
|
||||||
wl_resource_post_no_memory(config_resource);
|
wl_resource_post_no_memory(config_resource);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
config_head->state = head->state;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t version = wl_resource_get_version(config_resource);
|
uint32_t version = wl_resource_get_version(config_resource);
|
||||||
|
@ -196,8 +212,11 @@ static void config_handle_disable_head(struct wl_client *client,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!config_check_head_is_unconfigured(config, head->state.output)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
struct wlr_output_configuration_head_v1 *config_head =
|
struct wlr_output_configuration_head_v1 *config_head =
|
||||||
config_create_head(config, head->state.output);
|
config_head_create(config, head->state.output);
|
||||||
if (config_head == NULL) {
|
if (config_head == NULL) {
|
||||||
wl_resource_post_no_memory(config_resource);
|
wl_resource_post_no_memory(config_resource);
|
||||||
return;
|
return;
|
||||||
|
@ -383,6 +402,9 @@ static void manager_handle_resource_destroy(struct wl_resource *resource) {
|
||||||
wl_list_remove(wl_resource_get_link(resource));
|
wl_list_remove(wl_resource_get_link(resource));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void manager_send_head(struct wlr_output_manager_v1 *manager,
|
||||||
|
struct wlr_output_head_v1 *head, struct wl_resource *manager_resource);
|
||||||
|
|
||||||
static void manager_bind(struct wl_client *client, void *data, uint32_t version,
|
static void manager_bind(struct wl_client *client, void *data, uint32_t version,
|
||||||
uint32_t id) {
|
uint32_t id) {
|
||||||
struct wlr_output_manager_v1 *manager = data;
|
struct wlr_output_manager_v1 *manager = data;
|
||||||
|
@ -397,6 +419,13 @@ static void manager_bind(struct wl_client *client, void *data, uint32_t version,
|
||||||
manager_handle_resource_destroy);
|
manager_handle_resource_destroy);
|
||||||
|
|
||||||
wl_list_insert(&manager->resources, wl_resource_get_link(resource));
|
wl_list_insert(&manager->resources, wl_resource_get_link(resource));
|
||||||
|
|
||||||
|
struct wlr_output_head_v1 *head;
|
||||||
|
wl_list_for_each(head, &manager->heads, link) {
|
||||||
|
manager_send_head(manager, head, resource);
|
||||||
|
}
|
||||||
|
|
||||||
|
zwlr_output_manager_v1_send_done(resource, manager->serial);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void manager_handle_display_destroy(struct wl_listener *listener,
|
static void manager_handle_display_destroy(struct wl_listener *listener,
|
||||||
|
@ -421,6 +450,8 @@ struct wlr_output_manager_v1 *wlr_output_manager_v1_create(
|
||||||
}
|
}
|
||||||
manager->display = display;
|
manager->display = display;
|
||||||
|
|
||||||
|
wl_list_init(&manager->resources);
|
||||||
|
wl_list_init(&manager->heads);
|
||||||
wl_signal_init(&manager->events.destroy);
|
wl_signal_init(&manager->events.destroy);
|
||||||
wl_signal_init(&manager->events.apply);
|
wl_signal_init(&manager->events.apply);
|
||||||
wl_signal_init(&manager->events.test);
|
wl_signal_init(&manager->events.test);
|
||||||
|
|
Loading…
Reference in a new issue