2021-09-13 12:03:53 +03:00
|
|
|
/**
|
|
|
|
* @file lib/decor-fancy.c
|
|
|
|
* @brief "Fancy" decoration theme; the default.
|
2018-08-14 11:24:25 +03:00
|
|
|
*
|
2021-09-13 12:03:53 +03:00
|
|
|
* This is based on an old GTK theme I used to use back in ~2010.
|
2018-08-14 11:24:25 +03:00
|
|
|
*
|
2021-09-13 12:03:53 +03:00
|
|
|
* @copyright
|
|
|
|
* This file is part of ToaruOS and is released under the terms
|
|
|
|
* of the NCSA / University of Illinois License - see LICENSE.md
|
|
|
|
* Copyright (C) 2016-2021 K. Lange
|
2018-08-14 11:24:25 +03:00
|
|
|
*/
|
2018-02-25 15:54:39 +03:00
|
|
|
#include <stdint.h>
|
2018-09-24 09:06:42 +03:00
|
|
|
#include <dlfcn.h>
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2018-03-19 05:38:11 +03:00
|
|
|
#include <toaru/yutani.h>
|
|
|
|
#include <toaru/graphics.h>
|
|
|
|
#include <toaru/decorations.h>
|
2021-07-05 16:50:25 +03:00
|
|
|
#include <toaru/text.h>
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
#define TTK_FANCY_PATH "/usr/share/ttk/fancy/"
|
|
|
|
|
|
|
|
#define TITLEBAR_HEIGHT 33
|
|
|
|
#define BASE_SIZE 10
|
|
|
|
#define TOTAL_SCALE 1
|
|
|
|
#define OUTER_SIZE 6
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
/* Color for the extra border lines drawn in tiled mode. */
|
|
|
|
#define BORDER_COLOR rgb(62,62,62)
|
|
|
|
|
|
|
|
/* Button and title colors */
|
|
|
|
#define ACTIVE_COLOR rgb(226,226,226)
|
|
|
|
#define INACTIVE_COLOR rgb(147,147,147)
|
|
|
|
|
|
|
|
static int u_height = TITLEBAR_HEIGHT * TOTAL_SCALE;
|
|
|
|
static int ul_width = BASE_SIZE * TOTAL_SCALE;
|
|
|
|
static int ur_width = BASE_SIZE * TOTAL_SCALE;
|
|
|
|
static int ml_width = BASE_SIZE * TOTAL_SCALE;
|
|
|
|
static int mr_width = BASE_SIZE * TOTAL_SCALE;
|
|
|
|
static int l_height = BASE_SIZE * TOTAL_SCALE;
|
|
|
|
static int ll_width = BASE_SIZE * TOTAL_SCALE;
|
|
|
|
static int lr_width = BASE_SIZE * TOTAL_SCALE;
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2021-07-05 16:50:25 +03:00
|
|
|
static struct TT_Font * _tt_font = NULL;
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
#define BUTTON_CLOSE 0
|
|
|
|
#define BUTTON_MAXIMIZE 1
|
2023-04-14 14:52:01 +03:00
|
|
|
#define BUTTON_MINIMIZE 2
|
|
|
|
#define ACTIVE 3
|
|
|
|
#define INACTIVE 12
|
|
|
|
static sprite_t * sprites[21];
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2018-09-12 07:22:34 +03:00
|
|
|
#define TEXT_OFFSET ((window->decorator_flags & DECOR_FLAG_TILED) ? 5 : 10)
|
|
|
|
#define BUTTON_OFFSET ((window->decorator_flags & DECOR_FLAG_TILED) ? 5 : 0)
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
/**
|
|
|
|
* Replaces an old graphics API function from the
|
|
|
|
* very early days of ToaruOS...
|
|
|
|
*/
|
2018-02-25 15:54:39 +03:00
|
|
|
static void init_sprite(int id, char * path) {
|
|
|
|
sprites[id] = malloc(sizeof(sprite_t));
|
|
|
|
load_sprite(sprites[id], path);
|
|
|
|
}
|
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
/**
|
|
|
|
* Make a new sprite by cropping down @p from.
|
|
|
|
*/
|
|
|
|
static sprite_t * sprite_crop(sprite_t * from, int x, int y, int w, int h) {
|
|
|
|
sprite_t * dest = create_sprite(w,h,ALPHA_EMBEDDED);
|
|
|
|
gfx_context_t * sctx = init_graphics_sprite(dest);
|
|
|
|
draw_fill(sctx, rgba(0,0,0,0));
|
|
|
|
draw_sprite(sctx, from, -x, -y);
|
|
|
|
free(sctx);
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Chop up a spritesheet into edge/corner pieces.
|
|
|
|
*/
|
|
|
|
static void create_borders_from_spritesheet(int spriteIndex, const char * path) {
|
|
|
|
sprite_t tmp;
|
|
|
|
load_sprite(&tmp, path);
|
|
|
|
|
|
|
|
int um_width = 1; /* These need to always be 1... tmp.width - ul_width - ur_width; */
|
|
|
|
int m_height = 1; /* These need to always be 1... tmp.height - u_height - l_height; */
|
|
|
|
int lm_width = 1; /* These need to always be 1... tmp.width - ll_width - lr_width; */
|
|
|
|
|
|
|
|
int c = ul_width;
|
|
|
|
int r = tmp.width - ur_width;
|
|
|
|
int m = u_height;
|
|
|
|
int l = tmp.height - l_height;
|
|
|
|
|
|
|
|
sprites[spriteIndex + 0] = sprite_crop(&tmp, 0, 0, ul_width, u_height);
|
|
|
|
sprites[spriteIndex + 1] = sprite_crop(&tmp, c, 0, um_width, u_height);
|
|
|
|
sprites[spriteIndex + 2] = sprite_crop(&tmp, r, 0, ur_width, u_height);
|
|
|
|
sprites[spriteIndex + 3] = sprite_crop(&tmp, 0, m, ml_width, m_height);
|
|
|
|
sprites[spriteIndex + 4] = sprite_crop(&tmp, r, m, mr_width, m_height);
|
|
|
|
sprites[spriteIndex + 5] = sprite_crop(&tmp, 0, l, ll_width, l_height);
|
|
|
|
sprites[spriteIndex + 6] = sprite_crop(&tmp, c, l, lm_width, l_height);
|
|
|
|
sprites[spriteIndex + 7] = sprite_crop(&tmp, r, l, lr_width, l_height);
|
|
|
|
|
|
|
|
free(tmp.bitmap);
|
|
|
|
}
|
|
|
|
|
2018-09-12 06:53:08 +03:00
|
|
|
static int get_bounds_fancy(yutani_window_t * window, struct decor_bounds * bounds) {
|
2018-09-12 07:22:34 +03:00
|
|
|
if (window == NULL || !(window->decorator_flags & DECOR_FLAG_TILED)) {
|
2021-09-13 12:03:53 +03:00
|
|
|
bounds->top_height = TITLEBAR_HEIGHT * TOTAL_SCALE;
|
|
|
|
bounds->bottom_height = OUTER_SIZE * TOTAL_SCALE;
|
|
|
|
bounds->left_width = OUTER_SIZE * TOTAL_SCALE;
|
|
|
|
bounds->right_width = OUTER_SIZE * TOTAL_SCALE;
|
2018-09-12 06:53:08 +03:00
|
|
|
} else {
|
2018-10-11 03:53:55 +03:00
|
|
|
/* Any "exposed" edge gets an extra pixel. */
|
2021-09-13 12:03:53 +03:00
|
|
|
bounds->top_height = 27 * TOTAL_SCALE + !(window->decorator_flags & DECOR_FLAG_TILE_UP);
|
2018-10-11 03:53:55 +03:00
|
|
|
bounds->bottom_height = !(window->decorator_flags & DECOR_FLAG_TILE_DOWN);
|
|
|
|
bounds->left_width = !(window->decorator_flags & DECOR_FLAG_TILE_LEFT);
|
|
|
|
bounds->right_width = !(window->decorator_flags & DECOR_FLAG_TILE_RIGHT);
|
2018-09-12 06:53:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bounds->width = bounds->left_width + bounds->right_width;
|
|
|
|
bounds->height = bounds->top_height + bounds->bottom_height;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-09-13 13:39:04 +03:00
|
|
|
static char * ellipsify(char * input, int font_size, struct TT_Font * font, int max_width, int * out_width) {
|
|
|
|
int len = strlen(input);
|
|
|
|
char * out = malloc(len + 4);
|
|
|
|
memcpy(out, input, len + 1);
|
|
|
|
int width;
|
|
|
|
tt_set_size(font, font_size);
|
|
|
|
while ((width = tt_string_width(font, out)) > max_width) {
|
|
|
|
len--;
|
|
|
|
out[len+0] = '.';
|
|
|
|
out[len+1] = '.';
|
|
|
|
out[len+2] = '.';
|
|
|
|
out[len+3] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (out_width) *out_width = width;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2018-02-25 15:54:39 +03:00
|
|
|
static void render_decorations_fancy(yutani_window_t * window, gfx_context_t * ctx, char * title, int decors_active) {
|
|
|
|
int width = window->width;
|
|
|
|
int height = window->height;
|
|
|
|
|
2018-09-12 06:53:08 +03:00
|
|
|
struct decor_bounds bounds;
|
|
|
|
get_bounds_fancy(window, &bounds);
|
|
|
|
|
|
|
|
for (int j = 0; j < (int)bounds.top_height; ++j) {
|
2018-02-25 15:54:39 +03:00
|
|
|
for (int i = 0; i < width; ++i) {
|
|
|
|
GFX(ctx,i,j) = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
decors_active = (decors_active == DECOR_INACTIVE) ? INACTIVE : ACTIVE;
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2018-10-10 09:11:24 +03:00
|
|
|
if ((window->decorator_flags & DECOR_FLAG_TILED)) {
|
2018-02-25 15:54:39 +03:00
|
|
|
for (int i = 0; i < width; ++i) {
|
2021-09-13 12:03:53 +03:00
|
|
|
draw_sprite(ctx, sprites[decors_active + 1], i, -6 * TOTAL_SCALE + !(window->decorator_flags & DECOR_FLAG_TILE_UP));
|
2018-02-25 15:54:39 +03:00
|
|
|
}
|
2018-10-11 03:53:55 +03:00
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
uint32_t clear_color = BORDER_COLOR;
|
2018-10-11 03:53:55 +03:00
|
|
|
if (!(window->decorator_flags & DECOR_FLAG_TILE_DOWN)) {
|
|
|
|
/* Draw bottom line */
|
|
|
|
for (int i = 0; i < (int)window->width; ++i) {
|
|
|
|
GFX(ctx,i,window->height-1) = clear_color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(window->decorator_flags & DECOR_FLAG_TILE_LEFT)) {
|
|
|
|
/* Draw left line */
|
|
|
|
for (int i = 0; i < (int)window->height; ++i) {
|
|
|
|
GFX(ctx,0,i) = clear_color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(window->decorator_flags & DECOR_FLAG_TILE_RIGHT)) {
|
|
|
|
/* Draw right line */
|
|
|
|
for (int i = 0; i < (int)window->height; ++i) {
|
|
|
|
GFX(ctx,window->width-1,i) = clear_color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 09:11:24 +03:00
|
|
|
} else {
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2018-10-11 03:53:55 +03:00
|
|
|
uint32_t clear_color = 0x000000;
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2018-10-10 09:11:24 +03:00
|
|
|
for (int j = (int)bounds.top_height; j < height - (int)bounds.bottom_height; ++j) {
|
|
|
|
for (int i = 0; i < (int)bounds.left_width; ++i) {
|
|
|
|
GFX(ctx,i,j) = clear_color;
|
|
|
|
}
|
|
|
|
for (int i = width - (int)bounds.right_width; i < width; ++i) {
|
|
|
|
GFX(ctx,i,j) = clear_color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int j = height - (int)bounds.bottom_height; j < height; ++j) {
|
|
|
|
for (int i = 0; i < width; ++i) {
|
|
|
|
GFX(ctx,i,j) = clear_color;
|
|
|
|
}
|
2018-09-12 07:22:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
draw_sprite(ctx, sprites[decors_active + 0], 0, 0);
|
|
|
|
for (int i = 0; i < width - (ul_width + ur_width); ++i) {
|
|
|
|
draw_sprite(ctx, sprites[decors_active + 1], i + ul_width, 0);
|
|
|
|
}
|
|
|
|
draw_sprite(ctx, sprites[decors_active + 2], width - ur_width, 0);
|
|
|
|
for (int i = 0; i < height - (u_height + l_height); ++i) {
|
|
|
|
draw_sprite(ctx, sprites[decors_active + 3], 0, i + u_height);
|
|
|
|
draw_sprite(ctx, sprites[decors_active + 4], width - mr_width, i + u_height);
|
|
|
|
}
|
|
|
|
draw_sprite(ctx, sprites[decors_active + 5], 0, height - l_height);
|
|
|
|
for (int i = 0; i < width - (ll_width + lr_width); ++i) {
|
|
|
|
draw_sprite(ctx, sprites[decors_active + 6], i + ll_width, height - l_height);
|
|
|
|
}
|
|
|
|
draw_sprite(ctx, sprites[decors_active + 7], width - lr_width, height - l_height);
|
2018-02-25 15:54:39 +03:00
|
|
|
}
|
|
|
|
|
2018-09-24 09:06:42 +03:00
|
|
|
#define EXTRA_SPACE 120
|
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
uint32_t title_color = (decors_active == ACTIVE) ? ACTIVE_COLOR : INACTIVE_COLOR;
|
|
|
|
|
2023-04-15 02:44:41 +03:00
|
|
|
int buttons_width = (!(window->decorator_flags & DECOR_FLAG_NO_MAXIMIZE)) ? 72 : 28;
|
2021-09-13 13:39:04 +03:00
|
|
|
int usable_width = width - bounds.width - (2 * buttons_width + 10) * TOTAL_SCALE;
|
|
|
|
|
2021-09-13 12:03:53 +03:00
|
|
|
tt_set_size(_tt_font, 12 * TOTAL_SCALE);
|
2021-09-13 13:39:04 +03:00
|
|
|
int title_width = tt_string_width(_tt_font, title);
|
|
|
|
if (title_width > usable_width) {
|
|
|
|
usable_width += buttons_width * TOTAL_SCALE;
|
|
|
|
if (usable_width > 0) {
|
|
|
|
char * tmp_title = ellipsify(title, 12 * TOTAL_SCALE, _tt_font, usable_width, &title_width);
|
|
|
|
int title_offset = bounds.left_width + 10 * TOTAL_SCALE;
|
|
|
|
tt_draw_string(ctx, _tt_font, title_offset, (TEXT_OFFSET + 14) * TOTAL_SCALE, tmp_title, title_color);
|
|
|
|
free(tmp_title);
|
2018-02-25 15:54:39 +03:00
|
|
|
}
|
2021-09-13 13:39:04 +03:00
|
|
|
} else {
|
|
|
|
int title_offset = buttons_width * TOTAL_SCALE + bounds.left_width + 10 * TOTAL_SCALE + (usable_width / 2) - (title_width / 2);
|
|
|
|
tt_draw_string(ctx, _tt_font, title_offset, (TEXT_OFFSET + 14) * TOTAL_SCALE, title, title_color);
|
2021-07-06 03:39:52 +03:00
|
|
|
}
|
2018-02-25 15:54:39 +03:00
|
|
|
|
2021-09-13 13:39:04 +03:00
|
|
|
if (width + (BUTTON_OFFSET - 28) * TOTAL_SCALE > bounds.left_width) {
|
|
|
|
draw_sprite_alpha_paint(ctx, sprites[BUTTON_CLOSE],
|
|
|
|
width + (BUTTON_OFFSET - 28) * TOTAL_SCALE,
|
2021-09-13 12:03:53 +03:00
|
|
|
(16 - BUTTON_OFFSET) * TOTAL_SCALE, 1.0, title_color);
|
2021-09-13 13:39:04 +03:00
|
|
|
|
|
|
|
if (width + (BUTTON_OFFSET - 50) * TOTAL_SCALE > bounds.left_width) {
|
|
|
|
if (!(window->decorator_flags & DECOR_FLAG_NO_MAXIMIZE)) {
|
|
|
|
draw_sprite_alpha_paint(ctx, sprites[BUTTON_MAXIMIZE],
|
|
|
|
width + (BUTTON_OFFSET - 50) * TOTAL_SCALE,
|
|
|
|
(16 - BUTTON_OFFSET) * TOTAL_SCALE, 1.0, title_color);
|
2023-04-14 14:52:01 +03:00
|
|
|
|
|
|
|
if (width + (BUTTON_OFFSET - 72) * TOTAL_SCALE > bounds.left_width) {
|
|
|
|
draw_sprite_alpha_paint(ctx, sprites[BUTTON_MINIMIZE],
|
|
|
|
width + (BUTTON_OFFSET - 72) * TOTAL_SCALE,
|
|
|
|
(16 - BUTTON_OFFSET) * TOTAL_SCALE, 1.0, title_color);
|
|
|
|
}
|
2021-09-13 13:39:04 +03:00
|
|
|
}
|
|
|
|
}
|
2018-05-19 10:05:17 +03:00
|
|
|
}
|
2018-02-25 15:54:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int check_button_press_fancy(yutani_window_t * window, int x, int y) {
|
2021-09-13 12:03:53 +03:00
|
|
|
if (x >= (int)window->width + (BUTTON_OFFSET - 28) * TOTAL_SCALE &&
|
|
|
|
x <= (int)window->width + (BUTTON_OFFSET - 18) * TOTAL_SCALE &&
|
|
|
|
y >= 16 * TOTAL_SCALE && y <= 26 * TOTAL_SCALE ) {
|
2018-02-25 15:54:39 +03:00
|
|
|
return DECOR_CLOSE;
|
|
|
|
}
|
|
|
|
|
2018-05-19 10:05:17 +03:00
|
|
|
if (!(window->decorator_flags & DECOR_FLAG_NO_MAXIMIZE)) {
|
2021-09-13 12:03:53 +03:00
|
|
|
if (x >= (int)window->width + (BUTTON_OFFSET - 50) * TOTAL_SCALE &&
|
|
|
|
x <= (int)window->width + (BUTTON_OFFSET - 40) * TOTAL_SCALE &&
|
|
|
|
y >= 16 * TOTAL_SCALE && y <= 26 * TOTAL_SCALE) {
|
2018-05-19 10:05:17 +03:00
|
|
|
return DECOR_MAXIMIZE;
|
|
|
|
}
|
2023-04-14 14:52:01 +03:00
|
|
|
|
|
|
|
if (x >= (int)window->width + (BUTTON_OFFSET - 72) * TOTAL_SCALE &&
|
|
|
|
x <= (int)window->width + (BUTTON_OFFSET - 62) * TOTAL_SCALE &&
|
|
|
|
y >= 16 * TOTAL_SCALE && y <= 26 * TOTAL_SCALE) {
|
|
|
|
return DECOR_MINIMIZE;
|
|
|
|
}
|
2018-04-21 12:57:42 +03:00
|
|
|
}
|
|
|
|
|
2018-02-25 15:54:39 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void decor_init() {
|
2021-09-13 12:03:53 +03:00
|
|
|
init_sprite(BUTTON_CLOSE, TTK_FANCY_PATH "button-close.png");
|
|
|
|
init_sprite(BUTTON_MAXIMIZE, TTK_FANCY_PATH "button-maximize.png");
|
2023-04-14 14:52:01 +03:00
|
|
|
init_sprite(BUTTON_MINIMIZE, TTK_FANCY_PATH "button-minimize.png");
|
2021-09-13 12:03:53 +03:00
|
|
|
|
|
|
|
create_borders_from_spritesheet(ACTIVE, TTK_FANCY_PATH "borders-active.png");
|
|
|
|
create_borders_from_spritesheet(INACTIVE, TTK_FANCY_PATH "borders-inactive.png");
|
2018-02-25 15:54:39 +03:00
|
|
|
|
|
|
|
decor_render_decorations = render_decorations_fancy;
|
|
|
|
decor_check_button_press = check_button_press_fancy;
|
2018-09-12 06:53:08 +03:00
|
|
|
decor_get_bounds = get_bounds_fancy;
|
2018-09-24 09:06:42 +03:00
|
|
|
|
2021-08-28 08:50:52 +03:00
|
|
|
_tt_font = tt_font_from_shm("sans-serif.bold");
|
2018-02-25 15:54:39 +03:00
|
|
|
}
|
|
|
|
|