mirror of
https://github.com/labwc/labwc.git
synced 2026-04-07 08:21:20 -04:00
Add osd.border.type and osd.border.bevel-width options
This commit is contained in:
parent
773996f1ee
commit
362c3e1b47
9 changed files with 35 additions and 10 deletions
|
|
@ -2,6 +2,7 @@
|
|||
#ifndef LABWC_LAB_SCENE_RECT_H
|
||||
#define LABWC_LAB_SCENE_RECT_H
|
||||
#include <wayland-server-core.h>
|
||||
#include "common/borderset.h"
|
||||
|
||||
struct wlr_scene_tree;
|
||||
|
||||
|
|
@ -12,7 +13,8 @@ struct lab_scene_rect_options {
|
|||
float *bg_color; /* can be NULL */
|
||||
int width;
|
||||
int height;
|
||||
bool beveled;
|
||||
enum border_type border_type;
|
||||
int bevel_width;
|
||||
};
|
||||
|
||||
struct lab_scene_rect {
|
||||
|
|
|
|||
|
|
@ -169,6 +169,8 @@ struct theme {
|
|||
float osd_bg_color[4];
|
||||
float osd_border_color[4];
|
||||
float osd_label_text_color[4];
|
||||
enum border_type osd_border_type;
|
||||
int osd_border_bevel_width;
|
||||
|
||||
struct window_switcher_classic_theme {
|
||||
int width;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue