Move osd.c and osd-field.c into src/osd

This commit is contained in:
tokyo4j 2024-12-06 19:08:27 +09:00 committed by Johan Malm
parent f347a818e3
commit 57a1ea6cb5
4 changed files with 7 additions and 4 deletions

4
src/osd/meson.build Normal file
View file

@ -0,0 +1,4 @@
labwc_sources += files(
'osd.c',
'osd-field.c',
)

383
src/osd/osd-field.c Normal file
View file

@ -0,0 +1,383 @@
// SPDX-License-Identifier: GPL-2.0-only
#include <assert.h>
#include <ctype.h>
#include <wlr/util/log.h>
#include "common/mem.h"
#include "config/rcxml.h"
#include "view.h"
#include "workspaces.h"
#include "labwc.h"
#include "desktop-entry.h"
#include "osd.h"
#include "output.h"
/* includes '%', terminating 's' and NULL byte, 8 is enough for %-9999s */
#define LAB_FIELD_SINGLE_FMT_MAX_LEN 8
static_assert(LAB_FIELD_SINGLE_FMT_MAX_LEN <= 255, "fmt_position is a unsigned char");
/* forward declares */
typedef void field_conversion_type(struct buf *buf, struct view *view, const char *format);
struct field_converter {
const char fmt_char;
field_conversion_type *fn;
};
/* Internal helpers */
static const char *
get_app_id_or_class(struct view *view, bool trim)
{
/*
* XWayland clients return WM_CLASS for 'app_id' so we don't need a
* special case for that here.
*/
const char *identifier = view_get_string_prop(view, "app_id");
/* remove the first two nodes of 'org.' strings */
if (trim && !strncmp(identifier, "org.", 4)) {
char *p = (char *)identifier + 4;
p = strchr(p, '.');
if (p) {
return ++p;
}
}
return identifier;
}
static const char *
get_desktop_name(struct view *view)
{
#if HAVE_LIBSFDO
const char *app_id = view_get_string_prop(view, "app_id");
const char *name = desktop_entry_name_lookup(view->server, app_id);
if (name) {
return name;
}
#endif
return get_app_id_or_class(view, /* trim */ true);
}
static const char *
get_type(struct view *view, bool short_form)
{
switch (view->type) {
case LAB_XDG_SHELL_VIEW:
return short_form ? "[W]" : "[xdg-shell]";
#if HAVE_XWAYLAND
case LAB_XWAYLAND_VIEW:
return short_form ? "[X]" : "[xwayland]";
#endif
}
return "???";
}
static const char *
get_title(struct view *view)
{
return view_get_string_prop(view, "title");
}
static const char *
get_title_if_different(struct view *view)
{
const char *identifier = get_app_id_or_class(view, /*trim*/ false);
const char *title = get_title(view);
if (!identifier) {
return title;
}
return (!title || !strcmp(identifier, title)) ? NULL : title;
}
/* Field handlers */
static void
field_set_type(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: B (backend) */
buf_add(buf, get_type(view, /*short_form*/ false));
}
static void
field_set_type_short(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: b (backend) */
buf_add(buf, get_type(view, /*short_form*/ true));
}
static void
field_set_workspace(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: W */
buf_add(buf, view->workspace->name);
}
static void
field_set_workspace_short(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: w */
if (wl_list_length(&rc.workspace_config.workspaces) > 1) {
buf_add(buf, view->workspace->name);
}
}
static void
field_set_win_state(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: s */
if (view->maximized) {
buf_add(buf, "M");
} else if (view->minimized) {
buf_add(buf, "m");
} else if (view->fullscreen) {
buf_add(buf, "F");
} else {
buf_add(buf, " ");
}
}
static void
field_set_win_state_all(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: S */
buf_add(buf, view->minimized ? "m" : " ");
buf_add(buf, view->maximized ? "M" : " ");
buf_add(buf, view->fullscreen ? "F" : " ");
/* TODO: add always-on-top and omnipresent ? */
}
static void
field_set_output(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: O */
if (output_is_usable(view->output)) {
buf_add(buf, view->output->wlr_output->name);
}
}
static void
field_set_output_short(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: o */
if (wl_list_length(&view->server->outputs) > 1 &&
output_is_usable(view->output)) {
buf_add(buf, view->output->wlr_output->name);
}
}
static void
field_set_identifier(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: I */
buf_add(buf, get_app_id_or_class(view, /*trim*/ false));
}
static void
field_set_identifier_trimmed(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: i */
buf_add(buf, get_app_id_or_class(view, /*trim*/ true));
}
static void
field_set_desktop_entry_name(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: n */
buf_add(buf, get_desktop_name(view));
}
static void
field_set_title(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: T */
buf_add(buf, get_title(view));
}
static void
field_set_title_short(struct buf *buf, struct view *view, const char *format)
{
/* custom type conversion-specifier: t */
buf_add(buf, get_title_if_different(view));
}
static void field_set_custom(struct buf *buf, struct view *view,
const char *format);
static const struct field_converter field_converter[LAB_FIELD_COUNT] = {
[LAB_FIELD_TYPE] = { 'B', field_set_type },
[LAB_FIELD_TYPE_SHORT] = { 'b', field_set_type_short },
[LAB_FIELD_WIN_STATE_ALL] = { 'S', field_set_win_state_all },
[LAB_FIELD_WIN_STATE] = { 's', field_set_win_state },
[LAB_FIELD_IDENTIFIER] = { 'I', field_set_identifier },
[LAB_FIELD_TRIMMED_IDENTIFIER] = { 'i', field_set_identifier_trimmed },
[LAB_FIELD_DESKTOP_ENTRY_NAME] = { 'n', field_set_desktop_entry_name},
[LAB_FIELD_WORKSPACE] = { 'W', field_set_workspace },
[LAB_FIELD_WORKSPACE_SHORT] = { 'w', field_set_workspace_short },
[LAB_FIELD_OUTPUT] = { 'O', field_set_output },
[LAB_FIELD_OUTPUT_SHORT] = { 'o', field_set_output_short },
[LAB_FIELD_TITLE] = { 'T', field_set_title },
[LAB_FIELD_TITLE_SHORT] = { 't', field_set_title_short },
/* fmt_char can never be matched so prevents LAB_FIELD_CUSTOM recursion */
[LAB_FIELD_CUSTOM] = { '\0', field_set_custom },
};
static void
field_set_custom(struct buf *buf, struct view *view, const char *format)
{
if (!format) {
wlr_log(WLR_ERROR, "Missing format for custom window switcher field");
return;
}
char fmt[LAB_FIELD_SINGLE_FMT_MAX_LEN];
unsigned char fmt_position = 0;
struct buf field_result = BUF_INIT;
char converted_field[4096];
for (const char *p = format; *p; p++) {
if (!fmt_position) {
if (*p == '%') {
fmt[fmt_position++] = *p;
} else {
/*
* Just relay anything not part of a
* format string to the output buffer.
*/
buf_add_char(buf, *p);
}
continue;
}
/* Allow string formatting */
/* TODO: add . for manual truncating? */
/*
* Remove the || *p == '#' section as not used/needed
* change (*p >= '0' && *p <= '9') to isdigit(*p)
* changes by droc12345
*/
if (*p == '-' || isdigit(*p)) {
if (fmt_position >= LAB_FIELD_SINGLE_FMT_MAX_LEN - 2) {
/* Leave space for terminating 's' and NULL byte */
wlr_log(WLR_ERROR,
"single format string length exceeded: '%s'", p);
} else {
fmt[fmt_position++] = *p;
}
continue;
}
/* Handlers */
for (unsigned char i = 0; i < LAB_FIELD_COUNT; i++) {
if (*p != field_converter[i].fmt_char) {
continue;
}
/* Generate the actual content*/
field_converter[i].fn(&field_result, view, /*format*/ NULL);
/* Throw it at snprintf to allow formatting / padding */
fmt[fmt_position++] = 's';
fmt[fmt_position++] = '\0';
snprintf(converted_field, sizeof(converted_field),
fmt, field_result.data);
/* And finally write it to the output buffer */
buf_add(buf, converted_field);
goto reset_format;
}
wlr_log(WLR_ERROR,
"invalid format character found for osd %s: '%c'",
format, *p);
reset_format:
/* Reset format string and tmp field result buffer */
buf_clear(&field_result);
fmt_position = 0;
}
buf_reset(&field_result);
}
void
osd_field_arg_from_xml_node(struct window_switcher_field *field,
const char *nodename, const char *content)
{
if (!strcmp(nodename, "content")) {
if (!strcmp(content, "type")) {
field->content = LAB_FIELD_TYPE;
} else if (!strcmp(content, "type_short")) {
field->content = LAB_FIELD_TYPE_SHORT;
} else if (!strcmp(content, "app_id")) {
wlr_log(WLR_ERROR, "window-switcher field 'app_id' is deprecated");
field->content = LAB_FIELD_IDENTIFIER;
} else if (!strcmp(content, "identifier")) {
field->content = LAB_FIELD_IDENTIFIER;
} else if (!strcmp(content, "trimmed_identifier")) {
field->content = LAB_FIELD_TRIMMED_IDENTIFIER;
} else if (!strcmp(content, "icon")) {
field->content = LAB_FIELD_ICON;
} else if (!strcmp(content, "desktop_entry_name")) {
field->content = LAB_FIELD_DESKTOP_ENTRY_NAME;
} else if (!strcmp(content, "title")) {
field->content = LAB_FIELD_TITLE;
} else if (!strcmp(content, "workspace")) {
field->content = LAB_FIELD_WORKSPACE;
} else if (!strcmp(content, "state")) {
field->content = LAB_FIELD_WIN_STATE;
} else if (!strcmp(content, "output")) {
field->content = LAB_FIELD_OUTPUT;
} else if (!strcmp(content, "custom")) {
field->content = LAB_FIELD_CUSTOM;
} else {
wlr_log(WLR_ERROR, "bad windowSwitcher field '%s'", content);
}
} else if (!strcmp(nodename, "format")) {
zfree(field->format);
field->format = xstrdup(content);
} else if (!strcmp(nodename, "width") && !strchr(content, '%')) {
wlr_log(WLR_ERROR, "Invalid osd field width: %s, misses trailing %%", content);
} else if (!strcmp(nodename, "width")) {
field->width = atoi(content);
} else {
wlr_log(WLR_ERROR, "Unexpected data in field parser: %s=\"%s\"",
nodename, content);
}
}
bool
osd_field_is_valid(struct window_switcher_field *field)
{
if (field->content == LAB_FIELD_NONE) {
wlr_log(WLR_ERROR, "Invalid OSD field: no content set");
return false;
}
if (field->content == LAB_FIELD_CUSTOM && !field->format) {
wlr_log(WLR_ERROR, "Invalid OSD field: custom without format");
return false;
}
if (!field->width) {
wlr_log(WLR_ERROR, "Invalid OSD field: no width");
return false;
}
return true;
}
void
osd_field_get_content(struct window_switcher_field *field,
struct buf *buf, struct view *view)
{
if (field->content == LAB_FIELD_NONE) {
wlr_log(WLR_ERROR, "Invalid window switcher field type");
return;
}
assert(field->content < LAB_FIELD_COUNT && field_converter[field->content].fn);
field_converter[field->content].fn(buf, view, field->format);
}
void
osd_field_free(struct window_switcher_field *field)
{
zfree(field->format);
zfree(field);
}

493
src/osd/osd.c Normal file
View file

@ -0,0 +1,493 @@
// SPDX-License-Identifier: GPL-2.0-only
#include "osd.h"
#include <assert.h>
#include <cairo.h>
#include <wlr/util/log.h>
#include <wlr/util/box.h>
#include "common/array.h"
#include "common/buf.h"
#include "common/font.h"
#include "common/lab-scene-rect.h"
#include "common/scaled-font-buffer.h"
#include "common/scaled-icon-buffer.h"
#include "common/scene-helpers.h"
#include "common/string-helpers.h"
#include "config/rcxml.h"
#include "labwc.h"
#include "node.h"
#include "output.h"
#include "theme.h"
#include "view.h"
#include "window-rules.h"
#include "workspaces.h"
struct osd_scene_item {
struct view *view;
struct wlr_scene_node *highlight_outline;
};
static void update_osd(struct server *server);
static void
destroy_osd_scenes(struct server *server)
{
struct output *output;
wl_list_for_each(output, &server->outputs, link) {
if (output->osd_scene.tree) {
wlr_scene_node_destroy(&output->osd_scene.tree->node);
output->osd_scene.tree = NULL;
}
wl_array_release(&output->osd_scene.items);
wl_array_init(&output->osd_scene.items);
}
}
static void
osd_update_preview_outlines(struct view *view)
{
/* Create / Update preview outline tree */
struct server *server = view->server;
struct theme *theme = server->theme;
struct lab_scene_rect *rect = view->server->osd_state.preview_outline;
if (!rect) {
struct lab_scene_rect_options opts = {
.border_colors = (float *[3]) {
theme->osd_window_switcher_preview_border_color[0],
theme->osd_window_switcher_preview_border_color[1],
theme->osd_window_switcher_preview_border_color[2],
},
.nr_borders = 3,
.border_width = theme->osd_window_switcher_preview_border_width,
};
rect = lab_scene_rect_create(&server->scene->tree, &opts);
wlr_scene_node_place_above(&rect->tree->node, &server->menu_tree->node);
server->osd_state.preview_outline = rect;
}
struct wlr_box geo = ssd_max_extents(view);
lab_scene_rect_set_size(rect, geo.width, geo.height);
wlr_scene_node_set_position(&rect->tree->node, geo.x, geo.y);
}
/*
* Returns the view to select next in the window switcher.
* If !start_view, the second focusable view is returned.
*/
static struct view *
get_next_cycle_view(struct server *server, struct view *start_view,
enum lab_cycle_dir dir)
{
struct view *(*iter)(struct wl_list *head, struct view *view,
enum lab_view_criteria criteria);
bool forwards = dir == LAB_CYCLE_DIR_FORWARD;
iter = forwards ? view_next_no_head_stop : view_prev_no_head_stop;
enum lab_view_criteria criteria = rc.window_switcher.criteria;
/*
* Views are listed in stacking order, topmost first. Usually the
* topmost view is already focused, so when iterating in the forward
* direction we pre-select the view second from the top:
*
* View #1 (on top, currently focused)
* View #2 (pre-selected)
* View #3
* ...
*/
if (!start_view && forwards) {
start_view = iter(&server->views, NULL, criteria);
}
return iter(&server->views, start_view, criteria);
}
void
osd_on_view_destroy(struct view *view)
{
assert(view);
struct osd_state *osd_state = &view->server->osd_state;
if (view->server->input_mode != LAB_INPUT_STATE_WINDOW_SWITCHER) {
/* OSD not active, no need for clean up */
return;
}
if (osd_state->cycle_view == view) {
/*
* If we are the current OSD selected view, cycle
* to the next because we are dying.
*/
/* Also resets preview node */
osd_state->cycle_view = get_next_cycle_view(view->server,
osd_state->cycle_view, LAB_CYCLE_DIR_BACKWARD);
/*
* If we cycled back to ourselves, then we have no more windows.
* Just close the OSD for good.
*/
if (osd_state->cycle_view == view || !osd_state->cycle_view) {
/* osd_finish() additionally resets cycle_view to NULL */
osd_finish(view->server);
}
}
if (osd_state->cycle_view) {
/* Recreate the OSD to reflect the view has now gone. */
destroy_osd_scenes(view->server);
update_osd(view->server);
}
if (view->scene_tree) {
struct wlr_scene_node *node = &view->scene_tree->node;
if (osd_state->preview_anchor == node) {
/*
* If we are the anchor for the current OSD selected view,
* replace the anchor with the node before us.
*/
osd_state->preview_anchor = lab_wlr_scene_get_prev_node(node);
}
}
}
static void
restore_preview_node(struct server *server)
{
struct osd_state *osd_state = &server->osd_state;
if (osd_state->preview_node) {
wlr_scene_node_reparent(osd_state->preview_node,
osd_state->preview_parent);
if (osd_state->preview_anchor) {
wlr_scene_node_place_above(osd_state->preview_node,
osd_state->preview_anchor);
} else {
/* Selected view was the first node */
wlr_scene_node_lower_to_bottom(osd_state->preview_node);
}
/* Node was disabled / minimized before, disable again */
if (!osd_state->preview_was_enabled) {
wlr_scene_node_set_enabled(osd_state->preview_node, false);
}
osd_state->preview_node = NULL;
osd_state->preview_parent = NULL;
osd_state->preview_anchor = NULL;
}
}
void
osd_begin(struct server *server, enum lab_cycle_dir direction)
{
if (server->input_mode != LAB_INPUT_STATE_PASSTHROUGH) {
return;
}
server->osd_state.cycle_view = get_next_cycle_view(server,
server->osd_state.cycle_view, direction);
seat_focus_override_begin(&server->seat,
LAB_INPUT_STATE_WINDOW_SWITCHER, LAB_CURSOR_DEFAULT);
update_osd(server);
/* Update cursor, in case it is within the area covered by OSD */
cursor_update_focus(server);
}
void
osd_cycle(struct server *server, enum lab_cycle_dir direction)
{
assert(server->input_mode == LAB_INPUT_STATE_WINDOW_SWITCHER);
server->osd_state.cycle_view = get_next_cycle_view(server,
server->osd_state.cycle_view, direction);
update_osd(server);
}
void
osd_finish(struct server *server)
{
restore_preview_node(server);
seat_focus_override_end(&server->seat);
server->osd_state.preview_node = NULL;
server->osd_state.preview_anchor = NULL;
server->osd_state.cycle_view = NULL;
destroy_osd_scenes(server);
if (server->osd_state.preview_outline) {
/* Destroy the whole multi_rect so we can easily react to new themes */
wlr_scene_node_destroy(&server->osd_state.preview_outline->tree->node);
server->osd_state.preview_outline = NULL;
}
/* Hiding OSD may need a cursor change */
cursor_update_focus(server);
}
static void
preview_cycled_view(struct view *view)
{
assert(view);
assert(view->scene_tree);
struct osd_state *osd_state = &view->server->osd_state;
/* Move previous selected node back to its original place */
restore_preview_node(view->server);
/* Store some pointers so we can reset the preview later on */
osd_state->preview_node = &view->scene_tree->node;
osd_state->preview_parent = view->scene_tree->node.parent;
/* Remember the sibling right before the selected node */
osd_state->preview_anchor = lab_wlr_scene_get_prev_node(
osd_state->preview_node);
while (osd_state->preview_anchor && !osd_state->preview_anchor->data) {
/* Ignore non-view nodes */
osd_state->preview_anchor = lab_wlr_scene_get_prev_node(
osd_state->preview_anchor);
}
/* Store node enabled / minimized state and force-enable if disabled */
osd_state->preview_was_enabled = osd_state->preview_node->enabled;
if (!osd_state->preview_was_enabled) {
wlr_scene_node_set_enabled(osd_state->preview_node, true);
}
/*
* FIXME: This abuses an implementation detail of the always-on-top tree.
* Create a permanent server->osd_preview_tree instead that can
* also be used as parent for the preview outlines.
*/
wlr_scene_node_reparent(osd_state->preview_node,
view->server->view_tree_always_on_top);
/* Finally raise selected node to the top */
wlr_scene_node_raise_to_top(osd_state->preview_node);
}
static void
create_osd_scene(struct output *output, struct wl_array *views)
{
struct server *server = output->server;
struct theme *theme = server->theme;
bool show_workspace = wl_list_length(&rc.workspace_config.workspaces) > 1;
const char *workspace_name = server->workspaces.current->name;
int w = theme->osd_window_switcher_width;
if (theme->osd_window_switcher_width_is_percent) {
w = output->wlr_output->width
* theme->osd_window_switcher_width / 100;
}
int h = wl_array_len(views) * rc.theme->osd_window_switcher_item_height
+ 2 * rc.theme->osd_border_width
+ 2 * rc.theme->osd_window_switcher_padding;
if (show_workspace) {
/* workspace indicator */
h += theme->osd_window_switcher_item_height;
}
output->osd_scene.tree = wlr_scene_tree_create(output->osd_tree);
float *text_color = theme->osd_label_text_color;
float *bg_color = theme->osd_bg_color;
/* Draw background */
struct lab_scene_rect_options bg_opts = {
.border_colors = (float *[1]) {theme->osd_border_color},
.nr_borders = 1,
.border_width = theme->osd_border_width,
.bg_color = bg_color,
.width = w,
.height = h,
};
lab_scene_rect_create(output->osd_scene.tree, &bg_opts);
int y = theme->osd_border_width + theme->osd_window_switcher_padding;
/* Draw workspace indicator */
if (show_workspace) {
struct font font = rc.font_osd;
font.weight = PANGO_WEIGHT_BOLD;
/* Center workspace indicator on the x axis */
int x = (w - font_width(&font, workspace_name)) / 2;
if (x < 0) {
wlr_log(WLR_ERROR,
"not enough space for workspace name in osd");
goto error;
}
struct scaled_font_buffer *font_buffer =
scaled_font_buffer_create(output->osd_scene.tree);
wlr_scene_node_set_position(&font_buffer->scene_buffer->node,
x, y + (theme->osd_window_switcher_item_height
- font_height(&font)) / 2);
scaled_font_buffer_update(font_buffer, workspace_name, 0,
&font, text_color, bg_color);
y += theme->osd_window_switcher_item_height;
}
struct buf buf = BUF_INIT;
int nr_fields = wl_list_length(&rc.window_switcher.fields);
/* This is the width of the area available for text fields */
int field_widths_sum = w - 2 * theme->osd_border_width
- 2 * theme->osd_window_switcher_padding
- 2 * theme->osd_window_switcher_item_active_border_width
- (nr_fields + 1) * theme->osd_window_switcher_item_padding_x;
if (field_widths_sum <= 0) {
wlr_log(WLR_ERROR, "Not enough spaces for osd contents");
goto error;
}
/* Draw text for each node */
struct view **view;
wl_array_for_each(view, views) {
struct osd_scene_item *item =
wl_array_add(&output->osd_scene.items, sizeof(*item));
item->view = *view;
/*
* OSD border
* +---------------------------------+
* | |
* | item border |
* |+-------------------------------+|
* || ||
* ||padding between each field ||
* ||| field-1 | field-2 | field-n |||
* || ||
* || ||
* |+-------------------------------+|
* | |
* | |
* +---------------------------------+
*/
int x = theme->osd_border_width
+ theme->osd_window_switcher_padding
+ theme->osd_window_switcher_item_active_border_width
+ theme->osd_window_switcher_item_padding_x;
struct wlr_scene_tree *item_root =
wlr_scene_tree_create(output->osd_scene.tree);
struct window_switcher_field *field;
wl_list_for_each(field, &rc.window_switcher.fields, link) {
int field_width = field_widths_sum * field->width / 100.0;
struct wlr_scene_node *node = NULL;
int height = -1;
if (field->content == LAB_FIELD_ICON) {
int icon_size = MIN(field_width,
theme->osd_window_switcher_item_icon_size);
struct scaled_icon_buffer *icon_buffer =
scaled_icon_buffer_create(item_root,
server, icon_size, icon_size);
scaled_icon_buffer_set_view(icon_buffer, *view);
node = &icon_buffer->scene_buffer->node;
height = icon_size;
} else {
buf_clear(&buf);
osd_field_get_content(field, &buf, *view);
if (!string_null_or_empty(buf.data)) {
struct scaled_font_buffer *font_buffer =
scaled_font_buffer_create(item_root);
scaled_font_buffer_update(font_buffer,
buf.data, field_width,
&rc.font_osd, text_color, bg_color);
node = &font_buffer->scene_buffer->node;
height = font_height(&rc.font_osd);
}
}
if (node) {
int item_height =
theme->osd_window_switcher_item_height;
wlr_scene_node_set_position(node,
x, y + (item_height - height) / 2);
}
x += field_width + theme->osd_window_switcher_item_padding_x;
}
/* Highlight around selected window's item */
int highlight_x = theme->osd_border_width
+ theme->osd_window_switcher_padding;
struct lab_scene_rect_options highlight_opts = {
.border_colors = (float *[1]) {text_color},
.nr_borders = 1,
.border_width =
theme->osd_window_switcher_item_active_border_width,
.width = w - 2 * theme->osd_border_width
- 2 * theme->osd_window_switcher_padding,
.height = theme->osd_window_switcher_item_height,
};
struct lab_scene_rect *highlight_rect = lab_scene_rect_create(
output->osd_scene.tree, &highlight_opts);
item->highlight_outline = &highlight_rect->tree->node;
wlr_scene_node_set_position(item->highlight_outline, highlight_x, y);
wlr_scene_node_set_enabled(item->highlight_outline, false);
y += theme->osd_window_switcher_item_height;
}
buf_reset(&buf);
error:;
/* Center OSD */
struct wlr_box usable = output_usable_area_in_layout_coords(output);
wlr_scene_node_set_position(&output->osd_scene.tree->node,
usable.x + usable.width / 2 - w / 2,
usable.y + usable.height / 2 - h / 2);
}
static void
update_item_highlight(struct output *output)
{
struct osd_scene_item *item;
wl_array_for_each(item, &output->osd_scene.items) {
wlr_scene_node_set_enabled(item->highlight_outline,
item->view == output->server->osd_state.cycle_view);
}
}
static void
update_osd(struct server *server)
{
struct wl_array views;
wl_array_init(&views);
view_array_append(server, &views, rc.window_switcher.criteria);
if (!wl_array_len(&views) || !server->osd_state.cycle_view) {
osd_finish(server);
goto out;
}
if (rc.window_switcher.show && rc.theme->osd_window_switcher_width > 0) {
/* Display the actual OSD */
struct output *output;
wl_list_for_each(output, &server->outputs, link) {
if (!output_is_usable(output)) {
continue;
}
if (!output->osd_scene.tree) {
create_osd_scene(output, &views);
assert(output->osd_scene.tree);
}
update_item_highlight(output);
}
}
/* Outline current window */
if (rc.window_switcher.outlines) {
if (view_is_focusable(server->osd_state.cycle_view)) {
osd_update_preview_outlines(server->osd_state.cycle_view);
}
}
if (rc.window_switcher.preview) {
preview_cycled_view(server->osd_state.cycle_view);
}
out:
wl_array_release(&views);
}