mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-14 08:56:26 -05:00
implement output layout auto configuration
This commit is contained in:
parent
e91c91d455
commit
40bd6bcc43
6 changed files with 156 additions and 89 deletions
|
|
@ -255,49 +255,14 @@ void example_config_destroy(struct example_config *config) {
|
|||
free(config);
|
||||
}
|
||||
|
||||
struct wlr_output_layout *configure_layout(struct example_config *config,
|
||||
struct wl_list *outputs) {
|
||||
struct wlr_output_layout *layout = wlr_output_layout_init();
|
||||
int max_x = INT_MIN;
|
||||
int max_x_y = INT_MIN; // y value for the max_x output
|
||||
|
||||
// first add all the configured outputs
|
||||
struct output_state *output;
|
||||
wl_list_for_each(output, outputs, link) {
|
||||
struct output_config *conf;
|
||||
wl_list_for_each(conf, &config->outputs, link) {
|
||||
if (strcmp(conf->name, output->output->name) == 0) {
|
||||
wlr_output_layout_add(layout, output->output,
|
||||
conf->x, conf->y);
|
||||
wlr_output_transform(output->output, conf->transform);
|
||||
int width, height;
|
||||
wlr_output_effective_resolution(output->output, &width,
|
||||
&height);
|
||||
if (conf->x + width > max_x) {
|
||||
max_x = conf->x + width;
|
||||
max_x_y = conf->y;
|
||||
}
|
||||
break;
|
||||
}
|
||||
struct output_config *example_config_get_output(struct example_config *config,
|
||||
struct wlr_output *output) {
|
||||
struct output_config *o_config;
|
||||
wl_list_for_each(o_config, &config->outputs, link) {
|
||||
if (strcmp(o_config->name, output->name) == 0) {
|
||||
return o_config;
|
||||
}
|
||||
}
|
||||
|
||||
if (max_x == INT_MIN) {
|
||||
// couldn't find a configured output
|
||||
max_x = 0;
|
||||
max_x_y = 0;
|
||||
}
|
||||
|
||||
// now add all the other configured outputs in a sensible position
|
||||
wl_list_for_each(output, outputs, link) {
|
||||
if (wlr_output_layout_get(layout, output->output)) {
|
||||
continue;
|
||||
}
|
||||
wlr_output_layout_add(layout, output->output, max_x, max_x_y);
|
||||
int width, height;
|
||||
wlr_output_effective_resolution(output->output, &width, &height);
|
||||
max_x += width;
|
||||
}
|
||||
|
||||
return layout;
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,6 +34,11 @@ struct example_config *parse_args(int argc, char *argv[]);
|
|||
|
||||
void example_config_destroy(struct example_config *config);
|
||||
|
||||
struct wlr_output_layout *configure_layout(struct example_config *config,
|
||||
struct wl_list *outputs);
|
||||
/**
|
||||
* Get configuration for the output. If the output is not configured, returns
|
||||
* NULL.
|
||||
*/
|
||||
struct output_config *example_config_get_output(struct example_config *config,
|
||||
struct wlr_output *output);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -129,20 +129,22 @@ static void set_main_output(struct sample_state *sample,
|
|||
sample->y_offs = l_output->y + 200;
|
||||
}
|
||||
|
||||
static void handle_output_resolution(struct compositor_state *state, struct output_state *output) {
|
||||
struct sample_state *sample = state->data;
|
||||
wlr_output_layout_destroy(sample->layout);
|
||||
sample->layout = configure_layout(sample->config, &sample->outputs);
|
||||
set_main_output(sample, output->output);
|
||||
static void handle_output_add(struct output_state *ostate) {
|
||||
struct sample_state *sample = ostate->compositor->data;
|
||||
wl_list_insert(&sample->outputs, &ostate->link);
|
||||
|
||||
}
|
||||
struct output_config *o_config =
|
||||
example_config_get_output(sample->config, ostate->output);
|
||||
|
||||
static void handle_output_add(struct output_state *output) {
|
||||
struct sample_state *sample = output->compositor->data;
|
||||
wl_list_insert(&sample->outputs, &output->link);
|
||||
wlr_output_layout_destroy(sample->layout);
|
||||
sample->layout = configure_layout(sample->config, &sample->outputs);
|
||||
set_main_output(sample, output->output);
|
||||
if (o_config) {
|
||||
wlr_output_transform(ostate->output, o_config->transform);
|
||||
wlr_output_layout_add(sample->layout, ostate->output, o_config->x,
|
||||
o_config->y);
|
||||
} else {
|
||||
wlr_output_layout_add_auto(sample->layout, ostate->output);
|
||||
}
|
||||
|
||||
set_main_output(sample, ostate->output);
|
||||
}
|
||||
|
||||
static void update_velocities(struct compositor_state *state,
|
||||
|
|
@ -190,7 +192,6 @@ int main(int argc, char *argv[]) {
|
|||
compositor.data = &state;
|
||||
compositor.output_add_cb = handle_output_add;
|
||||
compositor.output_frame_cb = handle_output_frame;
|
||||
compositor.output_resolution_cb = handle_output_resolution;
|
||||
compositor.keyboard_key_cb = handle_keyboard_key;
|
||||
compositor_init(&compositor);
|
||||
|
||||
|
|
|
|||
|
|
@ -132,11 +132,16 @@ static void handle_output_add(struct output_state *ostate) {
|
|||
struct wlr_output *wlr_output = ostate->output;
|
||||
struct wlr_xcursor_image *image = sample->xcursor->images[0];
|
||||
|
||||
// reset layout
|
||||
wlr_output_layout_destroy(sample->layout);
|
||||
sample->layout =
|
||||
configure_layout(sample->config, &ostate->compositor->outputs);
|
||||
wlr_cursor_attach_output_layout(sample->cursor, sample->layout);
|
||||
struct output_config *o_config =
|
||||
example_config_get_output(sample->config, ostate->output);
|
||||
|
||||
if (o_config) {
|
||||
wlr_output_transform(ostate->output, o_config->transform);
|
||||
wlr_output_layout_add(sample->layout, ostate->output, o_config->x,
|
||||
o_config->y);
|
||||
} else {
|
||||
wlr_output_layout_add_auto(sample->layout, ostate->output);
|
||||
}
|
||||
|
||||
// cursor configuration
|
||||
char *mapped_output = sample->config->cursor.mapped_output;
|
||||
|
|
@ -158,11 +163,9 @@ static void handle_output_add(struct output_state *ostate) {
|
|||
}
|
||||
|
||||
static void handle_output_remove(struct output_state *ostate) {
|
||||
struct sample_state *sample = ostate->compositor->data;
|
||||
wlr_output_layout_destroy(sample->layout);
|
||||
sample->layout =
|
||||
configure_layout(sample->config, &ostate->compositor->outputs);
|
||||
wlr_cursor_attach_output_layout(sample->cursor, sample->layout);
|
||||
struct sample_state *sample = ostate->compositor->data;
|
||||
|
||||
wlr_output_layout_remove(sample->layout, ostate->output);
|
||||
|
||||
configure_devices(sample);
|
||||
|
||||
|
|
@ -172,15 +175,6 @@ static void handle_output_remove(struct output_state *ostate) {
|
|||
}
|
||||
}
|
||||
|
||||
static void handle_output_resolution(struct compositor_state *state,
|
||||
struct output_state *ostate) {
|
||||
struct sample_state *sample = ostate->compositor->data;
|
||||
wlr_output_layout_destroy(sample->layout);
|
||||
sample->layout =
|
||||
configure_layout(sample->config, &ostate->compositor->outputs);
|
||||
wlr_cursor_attach_output_layout(sample->cursor, sample->layout);
|
||||
}
|
||||
|
||||
static void handle_input_add(struct compositor_state *state,
|
||||
struct wlr_input_device *device) {
|
||||
struct sample_state *sample = state->data;
|
||||
|
|
@ -341,6 +335,8 @@ int main(int argc, char *argv[]) {
|
|||
|
||||
state.config = parse_args(argc, argv);
|
||||
state.cursor = wlr_cursor_create();
|
||||
state.layout = wlr_output_layout_init();
|
||||
wlr_cursor_attach_output_layout(state.cursor, state.layout);
|
||||
wlr_cursor_map_to_region(state.cursor, state.config->cursor.mapped_box);
|
||||
wl_list_init(&state.devices);
|
||||
|
||||
|
|
@ -380,7 +376,6 @@ int main(int argc, char *argv[]) {
|
|||
compositor.data = &state;
|
||||
compositor.output_add_cb = handle_output_add;
|
||||
compositor.output_remove_cb = handle_output_remove;
|
||||
compositor.output_resolution_cb = handle_output_resolution;
|
||||
compositor.output_frame_cb = handle_output_frame;
|
||||
compositor.input_add_cb = handle_input_add;
|
||||
compositor.input_remove_cb = handle_input_remove;
|
||||
|
|
@ -407,4 +402,5 @@ int main(int argc, char *argv[]) {
|
|||
wlr_xcursor_theme_destroy(theme);
|
||||
example_config_destroy(state.config);
|
||||
wlr_cursor_destroy(state.cursor);
|
||||
wlr_output_layout_destroy(state.layout);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue