2017-04-15 06:32:05 -04:00
|
|
|
/*
|
|
|
|
* rofi
|
|
|
|
*
|
|
|
|
* MIT/X11 License
|
2023-01-14 07:02:35 -05:00
|
|
|
* Copyright © 2013-2023 Qball Cow <qball@gmpclient.org>
|
2017-04-15 06:32:05 -04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
2017-04-15 05:58:49 -04:00
|
|
|
|
2018-06-12 06:00:00 -04:00
|
|
|
/** Log domain used by the theme engine.*/
|
2021-08-17 19:16:45 -04:00
|
|
|
#define G_LOG_DOMAIN "Theme"
|
2017-04-15 05:58:49 -04:00
|
|
|
|
2017-05-04 07:45:11 -04:00
|
|
|
#include "config.h"
|
2021-08-17 19:16:45 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <math.h>
|
2016-12-09 13:49:49 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2017-06-14 10:19:17 -04:00
|
|
|
// GFile stuff.
|
2016-12-28 06:21:42 -05:00
|
|
|
#include "helper.h"
|
2021-08-17 19:16:45 -04:00
|
|
|
#include "rofi-icon-fetcher.h"
|
|
|
|
#include "rofi-types.h"
|
|
|
|
#include "rofi.h"
|
2016-12-31 19:06:38 -05:00
|
|
|
#include "settings.h"
|
2021-08-17 19:16:45 -04:00
|
|
|
#include "theme-parser.h"
|
|
|
|
#include "theme.h"
|
2017-01-03 13:23:09 -05:00
|
|
|
#include "view.h"
|
2021-08-17 19:16:45 -04:00
|
|
|
#include "widgets/textbox.h"
|
|
|
|
#include <gio/gio.h>
|
2016-12-31 17:27:17 -05:00
|
|
|
|
2022-11-19 15:50:34 -05:00
|
|
|
/**
|
|
|
|
* list of config files we parsed.
|
|
|
|
*/
|
2021-12-12 14:56:32 -05:00
|
|
|
GList *parsed_config_files = NULL;
|
|
|
|
|
2022-11-19 15:50:34 -05:00
|
|
|
/** cleanup (free) the list of parsed config files. */
|
2021-12-12 14:56:32 -05:00
|
|
|
void rofi_theme_free_parsed_files(void) {
|
|
|
|
g_list_free_full(parsed_config_files, g_free);
|
|
|
|
parsed_config_files = NULL;
|
|
|
|
}
|
|
|
|
|
2022-11-19 15:50:34 -05:00
|
|
|
/**
|
|
|
|
* @param is_term if print to terminal
|
|
|
|
*
|
|
|
|
* print the list of parsed config files.
|
|
|
|
*/
|
2021-12-12 14:56:32 -05:00
|
|
|
void rofi_theme_print_parsed_files(gboolean is_term) {
|
|
|
|
printf("\nParsed files:\n");
|
|
|
|
for (GList *iter = g_list_first(parsed_config_files); iter != NULL;
|
|
|
|
iter = g_list_next(iter)) {
|
2023-01-14 07:02:35 -05:00
|
|
|
printf("\t\u2023 %s%s%s\n", is_term ? color_bold : "",
|
2022-01-18 05:01:56 -05:00
|
|
|
(const char *)(iter->data), is_term ? color_reset : "");
|
2021-12-12 14:56:32 -05:00
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
void yyerror(YYLTYPE *yylloc, const char *, const char *);
|
|
|
|
static gboolean distance_compare(RofiDistance d, RofiDistance e) {
|
|
|
|
// TODO UPDATE
|
|
|
|
return d.base.type == e.base.type && d.base.distance == e.base.distance &&
|
|
|
|
d.style == e.style;
|
2017-01-04 17:11:25 -05:00
|
|
|
}
|
2016-12-09 13:49:49 -05:00
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
ThemeWidget *rofi_theme_find_or_create_name(ThemeWidget *base,
|
|
|
|
const char *name) {
|
|
|
|
for (unsigned int i = 0; i < base->num_widgets; i++) {
|
|
|
|
if (g_strcmp0(base->widgets[i]->name, name) == 0) {
|
|
|
|
return base->widgets[i];
|
2016-12-09 13:49:49 -05:00
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2016-12-09 13:49:49 -05:00
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
base->widgets =
|
|
|
|
g_realloc(base->widgets, sizeof(ThemeWidget *) * (base->num_widgets + 1));
|
|
|
|
base->widgets[base->num_widgets] = g_slice_new0(ThemeWidget);
|
|
|
|
ThemeWidget *retv = base->widgets[base->num_widgets];
|
|
|
|
retv->parent = base;
|
|
|
|
retv->name = g_strdup(name);
|
|
|
|
base->num_widgets++;
|
|
|
|
return retv;
|
2016-12-09 13:49:49 -05:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Properties
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
Property *rofi_theme_property_create(PropertyType type) {
|
|
|
|
Property *retv = g_slice_new0(Property);
|
|
|
|
retv->type = type;
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static RofiDistanceUnit *
|
|
|
|
rofi_theme_property_copy_distance_unit(RofiDistanceUnit *unit) {
|
|
|
|
RofiDistanceUnit *retv = g_slice_new0(RofiDistanceUnit);
|
|
|
|
*retv = *unit;
|
|
|
|
if (unit->left) {
|
|
|
|
retv->left = rofi_theme_property_copy_distance_unit(unit->left);
|
|
|
|
}
|
|
|
|
if (unit->right) {
|
|
|
|
retv->right = rofi_theme_property_copy_distance_unit(unit->right);
|
|
|
|
}
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
RofiDistance rofi_theme_property_copy_distance(RofiDistance const distance) {
|
|
|
|
RofiDistance retv = distance;
|
|
|
|
if (distance.base.left) {
|
|
|
|
retv.base.left = rofi_theme_property_copy_distance_unit(distance.base.left);
|
|
|
|
}
|
|
|
|
if (distance.base.right) {
|
|
|
|
retv.base.right =
|
|
|
|
rofi_theme_property_copy_distance_unit(distance.base.right);
|
|
|
|
}
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
2022-07-22 18:28:55 -04:00
|
|
|
Property *rofi_theme_property_copy(const Property *p,
|
|
|
|
G_GNUC_UNUSED void *data) {
|
2021-08-17 19:16:45 -04:00
|
|
|
Property *retv = rofi_theme_property_create(p->type);
|
|
|
|
retv->name = g_strdup(p->name);
|
|
|
|
|
|
|
|
switch (p->type) {
|
|
|
|
case P_STRING:
|
|
|
|
retv->value.s = g_strdup(p->value.s);
|
|
|
|
break;
|
|
|
|
case P_LIST:
|
2022-01-24 13:43:08 -05:00
|
|
|
retv->value.list = g_list_copy_deep(
|
|
|
|
p->value.list, (GCopyFunc)rofi_theme_property_copy, NULL);
|
|
|
|
break;
|
2021-08-17 19:16:45 -04:00
|
|
|
case P_LINK:
|
|
|
|
retv->value.link.name = g_strdup(p->value.link.name);
|
|
|
|
retv->value.link.ref = NULL;
|
|
|
|
if (p->value.link.def_value) {
|
|
|
|
retv->value.link.def_value =
|
2022-07-22 18:28:55 -04:00
|
|
|
rofi_theme_property_copy(p->value.link.def_value, NULL);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case P_PADDING: {
|
|
|
|
retv->value = p->value;
|
|
|
|
retv->value.padding.top =
|
|
|
|
rofi_theme_property_copy_distance(p->value.padding.top);
|
|
|
|
retv->value.padding.left =
|
|
|
|
rofi_theme_property_copy_distance(p->value.padding.left);
|
|
|
|
retv->value.padding.bottom =
|
|
|
|
rofi_theme_property_copy_distance(p->value.padding.bottom);
|
|
|
|
retv->value.padding.right =
|
|
|
|
rofi_theme_property_copy_distance(p->value.padding.right);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case P_IMAGE: {
|
|
|
|
retv->value = p->value;
|
|
|
|
retv->value.image.url = g_strdup(p->value.image.url);
|
|
|
|
retv->value.image.colors = NULL;
|
|
|
|
for (GList *l = g_list_first(p->value.image.colors); l;
|
|
|
|
l = g_list_next(l)) {
|
|
|
|
retv->value.image.colors = g_list_append(
|
|
|
|
retv->value.image.colors, g_memdup(l->data, sizeof(ThemeColor)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
retv->value = p->value;
|
|
|
|
}
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rofi_theme_distance_unit_property_free(RofiDistanceUnit *unit) {
|
|
|
|
if (unit->left) {
|
|
|
|
rofi_theme_distance_unit_property_free(unit->left);
|
|
|
|
unit->left = NULL;
|
|
|
|
}
|
|
|
|
if (unit->right) {
|
|
|
|
rofi_theme_distance_unit_property_free(unit->right);
|
|
|
|
unit->right = NULL;
|
|
|
|
}
|
|
|
|
g_slice_free(RofiDistanceUnit, unit);
|
|
|
|
}
|
|
|
|
static void rofi_theme_distance_property_free(RofiDistance *distance) {
|
|
|
|
if (distance->base.left) {
|
|
|
|
rofi_theme_distance_unit_property_free(distance->base.left);
|
|
|
|
distance->base.left = NULL;
|
|
|
|
}
|
|
|
|
if (distance->base.right) {
|
|
|
|
rofi_theme_distance_unit_property_free(distance->base.right);
|
|
|
|
distance->base.right = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void rofi_theme_property_free(Property *p) {
|
|
|
|
if (p == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
g_free(p->name);
|
|
|
|
if (p->type == P_STRING) {
|
|
|
|
g_free(p->value.s);
|
2021-09-08 08:16:28 -04:00
|
|
|
} else if (p->type == P_LIST) {
|
2022-01-24 13:43:08 -05:00
|
|
|
g_list_free_full(p->value.list, (GDestroyNotify)rofi_theme_property_free);
|
|
|
|
p->value.list = 0;
|
2021-08-17 19:16:45 -04:00
|
|
|
} else if (p->type == P_LINK) {
|
|
|
|
g_free(p->value.link.name);
|
|
|
|
if (p->value.link.def_value) {
|
|
|
|
rofi_theme_property_free(p->value.link.def_value);
|
|
|
|
}
|
|
|
|
} else if (p->type == P_PADDING) {
|
|
|
|
rofi_theme_distance_property_free(&(p->value.padding.top));
|
|
|
|
rofi_theme_distance_property_free(&(p->value.padding.right));
|
|
|
|
rofi_theme_distance_property_free(&(p->value.padding.bottom));
|
|
|
|
rofi_theme_distance_property_free(&(p->value.padding.left));
|
|
|
|
} else if (p->type == P_IMAGE) {
|
|
|
|
if (p->value.image.url) {
|
|
|
|
g_free(p->value.image.url);
|
|
|
|
}
|
|
|
|
if (p->value.image.colors) {
|
|
|
|
g_list_free_full(p->value.image.colors, g_free);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_slice_free(Property, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
void rofi_theme_reset(void) {
|
|
|
|
rofi_theme_free(rofi_theme);
|
|
|
|
rofi_theme = g_slice_new0(ThemeWidget);
|
|
|
|
rofi_theme->name = g_strdup("Root");
|
|
|
|
}
|
|
|
|
|
|
|
|
void rofi_theme_free(ThemeWidget *widget) {
|
|
|
|
if (widget == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (widget->properties) {
|
|
|
|
g_hash_table_destroy(widget->properties);
|
|
|
|
widget->properties = NULL;
|
|
|
|
}
|
|
|
|
if (widget->media) {
|
|
|
|
g_slice_free(ThemeMedia, widget->media);
|
|
|
|
}
|
|
|
|
for (unsigned int i = 0; i < widget->num_widgets; i++) {
|
|
|
|
rofi_theme_free(widget->widgets[i]);
|
|
|
|
}
|
|
|
|
g_free(widget->widgets);
|
|
|
|
g_free(widget->name);
|
|
|
|
g_slice_free(ThemeWidget, widget);
|
2016-12-09 13:49:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* print
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
inline static void printf_double(double d) {
|
2022-04-04 17:33:48 -04:00
|
|
|
char buf[G_ASCII_DTOSTR_BUF_SIZE + 1] = {
|
|
|
|
0,
|
|
|
|
};
|
2022-04-04 18:06:53 -04:00
|
|
|
g_ascii_formatd(buf, G_ASCII_DTOSTR_BUF_SIZE, "%.4f", d);
|
2021-08-17 19:16:45 -04:00
|
|
|
fputs(buf, stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rofi_theme_print_distance_unit(RofiDistanceUnit *unit) {
|
|
|
|
if (unit->modtype == ROFI_DISTANCE_MODIFIER_GROUP) {
|
|
|
|
fputs("( ", stdout);
|
|
|
|
}
|
|
|
|
if (unit->left) {
|
|
|
|
rofi_theme_print_distance_unit(unit->left);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unit->modtype == ROFI_DISTANCE_MODIFIER_ADD) {
|
|
|
|
fputs(" + ", stdout);
|
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_SUBTRACT) {
|
|
|
|
fputs(" - ", stdout);
|
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_DIVIDE) {
|
|
|
|
fputs(" / ", stdout);
|
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_MULTIPLY) {
|
|
|
|
fputs(" * ", stdout);
|
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_MODULO) {
|
|
|
|
fputs(" % ", stdout);
|
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_MIN) {
|
|
|
|
fputs(" min ", stdout);
|
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_MAX) {
|
|
|
|
fputs(" max ", stdout);
|
2022-01-18 05:01:56 -05:00
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_ROUND) {
|
|
|
|
fputs(" round ", stdout);
|
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_FLOOR) {
|
|
|
|
fputs(" floor ", stdout);
|
|
|
|
} else if (unit->modtype == ROFI_DISTANCE_MODIFIER_CEIL) {
|
|
|
|
fputs(" ceil ", stdout);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
if (unit->right) {
|
|
|
|
rofi_theme_print_distance_unit(unit->right);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unit->modtype == ROFI_DISTANCE_MODIFIER_NONE) {
|
|
|
|
if (unit->type == ROFI_PU_PX) {
|
|
|
|
printf("%upx ", (unsigned int)unit->distance);
|
|
|
|
} else if (unit->type == ROFI_PU_MM) {
|
|
|
|
printf_double(unit->distance);
|
|
|
|
fputs("mm ", stdout);
|
|
|
|
} else if (unit->type == ROFI_PU_PERCENT) {
|
|
|
|
printf_double(unit->distance);
|
|
|
|
fputs("% ", stdout);
|
|
|
|
} else if (unit->type == ROFI_PU_CH) {
|
|
|
|
printf_double(unit->distance);
|
|
|
|
fputs("ch ", stdout);
|
|
|
|
} else {
|
|
|
|
printf_double(unit->distance);
|
|
|
|
fputs("em ", stdout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (unit->modtype == ROFI_DISTANCE_MODIFIER_GROUP) {
|
|
|
|
fputs(" )", stdout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-20 13:57:12 -04:00
|
|
|
static void rofi_theme_print_color(ThemeColor color) {
|
|
|
|
uint8_t r, g, b;
|
|
|
|
g = 255 * color.green;
|
|
|
|
r = 255 * color.red;
|
|
|
|
b = 255 * color.blue;
|
|
|
|
if (color.alpha < 0.00001) {
|
|
|
|
printf("transparent");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (uint32_t x = 0; x < num_CSSColors; x++) {
|
|
|
|
if (CSSColors[x].r == r && CSSColors[x].g == g && CSSColors[x].b == b) {
|
|
|
|
printf("%s", CSSColors[x].name);
|
|
|
|
if (color.alpha < 1) {
|
|
|
|
printf("/%.0f%%", color.alpha * 100.0);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("rgba ( %.0f, %.0f, %.0f, %.0f %% )", (color.red * 255.0),
|
|
|
|
(color.green * 255.0), (color.blue * 255.0), (color.alpha * 100.0));
|
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
static void rofi_theme_print_distance(RofiDistance d) {
|
|
|
|
if (d.base.modtype == ROFI_DISTANCE_MODIFIER_GROUP) {
|
|
|
|
fputs("calc( ", stdout);
|
|
|
|
}
|
|
|
|
rofi_theme_print_distance_unit(&(d.base));
|
|
|
|
if (d.base.modtype == ROFI_DISTANCE_MODIFIER_GROUP) {
|
|
|
|
fputs(")", stdout);
|
|
|
|
}
|
|
|
|
if (d.style == ROFI_HL_DASH) {
|
|
|
|
printf("dash ");
|
|
|
|
}
|
2017-01-04 17:11:25 -05:00
|
|
|
}
|
2021-05-22 18:17:27 -04:00
|
|
|
/** Textual representation of RofiCursorType */
|
|
|
|
const char *const RofiCursorTypeStr[3] = {
|
|
|
|
"default",
|
|
|
|
"pointer",
|
|
|
|
"text",
|
|
|
|
};
|
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
static void int_rofi_theme_print_property(Property *p) {
|
|
|
|
switch (p->type) {
|
|
|
|
case P_LIST:
|
|
|
|
printf("[ ");
|
2022-01-24 13:43:08 -05:00
|
|
|
for (GList *iter = p->value.list; iter != NULL; iter = g_list_next(iter)) {
|
|
|
|
int_rofi_theme_print_property((Property *)iter->data);
|
|
|
|
if (iter->next != NULL) {
|
|
|
|
printf(",");
|
|
|
|
}
|
|
|
|
}
|
2022-01-25 03:57:59 -05:00
|
|
|
printf(" ]");
|
2022-01-24 13:43:08 -05:00
|
|
|
break;
|
2021-08-17 19:16:45 -04:00
|
|
|
case P_ORIENTATION:
|
|
|
|
printf("%s", (p->value.i == ROFI_ORIENTATION_HORIZONTAL) ? "horizontal"
|
|
|
|
: "vertical");
|
|
|
|
break;
|
|
|
|
case P_CURSOR:
|
|
|
|
printf("%s", RofiCursorTypeStr[p->value.i]);
|
|
|
|
break;
|
|
|
|
case P_HIGHLIGHT:
|
|
|
|
if (p->value.highlight.style & ROFI_HL_BOLD) {
|
|
|
|
printf("bold ");
|
|
|
|
}
|
|
|
|
if (p->value.highlight.style & ROFI_HL_UNDERLINE) {
|
|
|
|
printf("underline ");
|
|
|
|
}
|
|
|
|
if (p->value.highlight.style & ROFI_HL_STRIKETHROUGH) {
|
|
|
|
printf("strikethrough ");
|
|
|
|
}
|
|
|
|
if (p->value.highlight.style & ROFI_HL_ITALIC) {
|
|
|
|
printf("italic ");
|
|
|
|
}
|
2022-07-30 08:50:05 -04:00
|
|
|
if (p->value.highlight.style & ROFI_HL_UPPERCASE) {
|
|
|
|
printf("uppercase ");
|
|
|
|
}
|
|
|
|
if (p->value.highlight.style & ROFI_HL_LOWERCASE) {
|
|
|
|
printf("lowercase ");
|
|
|
|
}
|
|
|
|
if (p->value.highlight.style & ROFI_HL_CAPITALIZE) {
|
|
|
|
printf("capitalize ");
|
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
if (p->value.highlight.style & ROFI_HL_COLOR) {
|
2021-09-20 13:57:12 -04:00
|
|
|
rofi_theme_print_color(p->value.highlight.color);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case P_POSITION: {
|
|
|
|
switch (p->value.i) {
|
|
|
|
case WL_CENTER:
|
|
|
|
fputs("center", stdout);
|
|
|
|
break;
|
|
|
|
case WL_NORTH:
|
|
|
|
fputs("north", stdout);
|
|
|
|
break;
|
|
|
|
case WL_SOUTH:
|
|
|
|
fputs("south", stdout);
|
|
|
|
break;
|
|
|
|
case WL_WEST:
|
|
|
|
fputs("west", stdout);
|
|
|
|
break;
|
|
|
|
case WL_EAST:
|
|
|
|
fputs("east", stdout);
|
|
|
|
break;
|
|
|
|
case WL_NORTH | WL_EAST:
|
|
|
|
fputs("northeast", stdout);
|
|
|
|
break;
|
|
|
|
case WL_SOUTH | WL_EAST:
|
|
|
|
fputs("southeast", stdout);
|
|
|
|
break;
|
|
|
|
case WL_NORTH | WL_WEST:
|
|
|
|
fputs("northwest", stdout);
|
|
|
|
break;
|
|
|
|
case WL_SOUTH | WL_WEST:
|
|
|
|
fputs("southwest", stdout);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case P_STRING:
|
|
|
|
printf("\"%s\"", p->value.s);
|
|
|
|
break;
|
|
|
|
case P_INTEGER:
|
|
|
|
printf("%d", p->value.i);
|
|
|
|
break;
|
|
|
|
case P_DOUBLE: {
|
|
|
|
char sign = (p->value.f < 0);
|
|
|
|
int top = (int)fabs(p->value.f);
|
|
|
|
int bottom = (fabs(fmod(p->value.f, 1.0))) * 100;
|
|
|
|
printf("%s%d.%02d", sign ? "-" : "", top, bottom);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case P_BOOLEAN:
|
|
|
|
printf("%s", p->value.b ? "true" : "false");
|
|
|
|
break;
|
|
|
|
case P_COLOR:
|
2021-09-20 13:57:12 -04:00
|
|
|
rofi_theme_print_color(p->value.color);
|
2021-08-17 19:16:45 -04:00
|
|
|
break;
|
|
|
|
case P_IMAGE: {
|
|
|
|
if (p->value.image.type == ROFI_IMAGE_URL) {
|
|
|
|
printf("url (\"%s\")", p->value.s);
|
|
|
|
} else if (p->value.image.type == ROFI_IMAGE_LINEAR_GRADIENT) {
|
|
|
|
printf("linear-gradient ( ");
|
|
|
|
guint length = g_list_length(p->value.image.colors);
|
|
|
|
guint index = 0;
|
|
|
|
for (GList *l = g_list_first(p->value.image.colors); l != NULL;
|
|
|
|
l = g_list_next(l)) {
|
|
|
|
ThemeColor *color = (ThemeColor *)l->data;
|
2021-09-20 13:57:12 -04:00
|
|
|
rofi_theme_print_color(*color);
|
2021-08-17 19:16:45 -04:00
|
|
|
index++;
|
|
|
|
if (index < length) {
|
|
|
|
printf(", ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf(")");
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case P_PADDING:
|
|
|
|
if (distance_compare(p->value.padding.top, p->value.padding.bottom) &&
|
|
|
|
distance_compare(p->value.padding.left, p->value.padding.right) &&
|
|
|
|
distance_compare(p->value.padding.left, p->value.padding.top)) {
|
|
|
|
rofi_theme_print_distance(p->value.padding.left);
|
|
|
|
} else if (distance_compare(p->value.padding.top,
|
|
|
|
p->value.padding.bottom) &&
|
|
|
|
distance_compare(p->value.padding.left,
|
|
|
|
p->value.padding.right)) {
|
|
|
|
rofi_theme_print_distance(p->value.padding.top);
|
|
|
|
rofi_theme_print_distance(p->value.padding.left);
|
|
|
|
} else if (!distance_compare(p->value.padding.top,
|
|
|
|
p->value.padding.bottom) &&
|
|
|
|
distance_compare(p->value.padding.left,
|
|
|
|
p->value.padding.right)) {
|
|
|
|
rofi_theme_print_distance(p->value.padding.top);
|
|
|
|
rofi_theme_print_distance(p->value.padding.left);
|
|
|
|
rofi_theme_print_distance(p->value.padding.bottom);
|
|
|
|
} else {
|
|
|
|
rofi_theme_print_distance(p->value.padding.top);
|
|
|
|
rofi_theme_print_distance(p->value.padding.right);
|
|
|
|
rofi_theme_print_distance(p->value.padding.bottom);
|
|
|
|
rofi_theme_print_distance(p->value.padding.left);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case P_LINK:
|
|
|
|
if (p->value.link.def_value) {
|
|
|
|
printf("var( %s, ", p->value.link.name);
|
|
|
|
int_rofi_theme_print_property(p->value.link.def_value);
|
|
|
|
printf(")");
|
|
|
|
} else {
|
|
|
|
printf("var(%s)", p->value.link.name);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case P_INHERIT:
|
|
|
|
printf("inherit");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rofi_theme_print_property_index(size_t pnl, int depth,
|
|
|
|
Property *p) {
|
|
|
|
int pl = strlen(p->name);
|
|
|
|
printf("%*s%s:%*s ", depth, "", p->name, (int)pnl - pl, "");
|
|
|
|
int_rofi_theme_print_property(p);
|
|
|
|
putchar(';');
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
void rofi_theme_print_index(ThemeWidget *widget, int index) {
|
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer key, value;
|
|
|
|
|
|
|
|
if (widget->media) {
|
|
|
|
printf("%s {\n", widget->name);
|
|
|
|
for (unsigned int i = 0; i < widget->num_widgets; i++) {
|
|
|
|
rofi_theme_print_index(widget->widgets[i], index + 4);
|
|
|
|
}
|
|
|
|
printf("}\n");
|
|
|
|
} else {
|
|
|
|
if (widget->properties) {
|
|
|
|
GList *list = NULL;
|
|
|
|
ThemeWidget *w = widget;
|
|
|
|
while (w) {
|
|
|
|
if (g_strcmp0(w->name, "Root") == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (w->media) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
list = g_list_prepend(list, w->name);
|
|
|
|
w = w->parent;
|
|
|
|
}
|
|
|
|
if (g_list_length(list) > 0) {
|
|
|
|
printf("%*s", index, "");
|
2021-08-20 19:08:40 -04:00
|
|
|
for (GList *citer = g_list_first(list); citer != NULL;
|
|
|
|
citer = g_list_next(citer)) {
|
|
|
|
char *name = (char *)citer->data;
|
2021-08-17 19:16:45 -04:00
|
|
|
fputs(name, stdout);
|
2021-08-20 19:08:40 -04:00
|
|
|
if (citer->prev == NULL && citer->next) {
|
2021-08-17 19:16:45 -04:00
|
|
|
putchar(' ');
|
2021-08-20 19:08:40 -04:00
|
|
|
} else if (citer->next) {
|
2021-08-17 19:16:45 -04:00
|
|
|
putchar('.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf(" {\n");
|
|
|
|
} else {
|
|
|
|
printf("%*s* {\n", index, "");
|
|
|
|
}
|
|
|
|
size_t property_name_length = 0;
|
|
|
|
g_hash_table_iter_init(&iter, widget->properties);
|
|
|
|
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv = (Property *)value;
|
|
|
|
property_name_length = MAX(strlen(pv->name), property_name_length);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
g_hash_table_iter_init(&iter, widget->properties);
|
|
|
|
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv = (Property *)value;
|
|
|
|
rofi_theme_print_property_index(property_name_length, index + 4, pv);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
printf("%*s}\n", index, "");
|
|
|
|
g_list_free(list);
|
|
|
|
}
|
|
|
|
for (unsigned int i = 0; i < widget->num_widgets; i++) {
|
|
|
|
rofi_theme_print_index(widget->widgets[i], index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void rofi_theme_print(ThemeWidget *widget) {
|
|
|
|
if (widget != NULL) {
|
|
|
|
printf("/**\n * rofi -dump-theme output.\n * Rofi version: %s\n **/\n",
|
|
|
|
PACKAGE_VERSION);
|
|
|
|
rofi_theme_print_index(widget, 0);
|
|
|
|
}
|
2016-12-09 13:49:49 -05:00
|
|
|
}
|
|
|
|
|
2017-01-01 12:08:49 -05:00
|
|
|
/**
|
|
|
|
* Main lex parser.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int yyparse();
|
2017-01-01 12:08:49 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy the internal of lex parser.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
void yylex_destroy(void);
|
2017-01-01 12:08:49 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Global handle input file to flex parser.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
extern FILE *yyin;
|
2016-12-09 13:49:49 -05:00
|
|
|
|
2017-01-01 12:08:49 -05:00
|
|
|
/**
|
|
|
|
* @param yylloc The file location.
|
2017-01-09 16:40:11 -05:00
|
|
|
* @param what What we are parsing, filename or string.
|
2017-01-01 12:08:49 -05:00
|
|
|
* @param s Error message string.
|
|
|
|
*
|
|
|
|
* Error handler for the lex parser.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
void yyerror(YYLTYPE *yylloc, const char *what, const char *s) {
|
|
|
|
char *what_esc = what ? g_markup_escape_text(what, -1) : g_strdup("");
|
|
|
|
GString *str = g_string_new("");
|
|
|
|
g_string_printf(str,
|
|
|
|
"<big><b>Error while parsing theme:</b></big> <i>%s</i>\n",
|
|
|
|
what_esc);
|
|
|
|
g_free(what_esc);
|
|
|
|
char *esc = g_markup_escape_text(s, -1);
|
|
|
|
g_string_append_printf(
|
|
|
|
str,
|
|
|
|
"\tParser error: <span size=\"smaller\" style=\"italic\">%s</span>\n",
|
|
|
|
esc);
|
|
|
|
g_free(esc);
|
|
|
|
if (yylloc->filename != NULL) {
|
|
|
|
g_string_append_printf(
|
|
|
|
str,
|
|
|
|
"\tLocation: line %d column %d to line %d column %d.\n"
|
|
|
|
"\tFile '%s'\n",
|
|
|
|
yylloc->first_line, yylloc->first_column, yylloc->last_line,
|
|
|
|
yylloc->last_column, yylloc->filename);
|
|
|
|
} else {
|
|
|
|
g_string_append_printf(
|
|
|
|
str, "\tLocation: line %d column %d to line %d column %d\n",
|
|
|
|
yylloc->first_line, yylloc->first_column, yylloc->last_line,
|
|
|
|
yylloc->last_column);
|
|
|
|
}
|
|
|
|
g_log("Parser", G_LOG_LEVEL_DEBUG, "Failed to parse theme:\n%s", str->str);
|
|
|
|
rofi_add_error_message(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rofi_theme_copy_property_int(G_GNUC_UNUSED gpointer key,
|
|
|
|
gpointer value, gpointer user_data) {
|
|
|
|
GHashTable *table = (GHashTable *)user_data;
|
2022-07-22 18:28:55 -04:00
|
|
|
Property *p = rofi_theme_property_copy((Property *)value, NULL);
|
2021-08-17 19:16:45 -04:00
|
|
|
g_hash_table_replace(table, p->name, p);
|
|
|
|
}
|
|
|
|
void rofi_theme_widget_add_properties(ThemeWidget *widget, GHashTable *table) {
|
|
|
|
if (table == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (widget->properties == NULL) {
|
|
|
|
widget->properties =
|
|
|
|
g_hash_table_new_full(g_str_hash, g_str_equal, NULL,
|
|
|
|
(GDestroyNotify)rofi_theme_property_free);
|
|
|
|
}
|
|
|
|
g_hash_table_foreach(table, rofi_theme_copy_property_int, widget->properties);
|
2016-12-16 03:28:13 -05:00
|
|
|
}
|
|
|
|
|
2016-12-09 16:16:31 -05:00
|
|
|
/**
|
|
|
|
* Public API
|
|
|
|
*/
|
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
static inline ThemeWidget *rofi_theme_find_single(ThemeWidget *widget,
|
|
|
|
const char *name) {
|
|
|
|
for (unsigned int j = 0; widget && j < widget->num_widgets; j++) {
|
|
|
|
if (g_strcmp0(widget->widgets[j]->name, name) == 0) {
|
|
|
|
return widget->widgets[j];
|
2016-12-15 03:46:42 -05:00
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return widget;
|
2016-12-15 03:46:42 -05:00
|
|
|
}
|
2016-12-09 13:49:49 -05:00
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
static ThemeWidget *rofi_theme_find(ThemeWidget *widget, const char *name,
|
|
|
|
const gboolean exact) {
|
|
|
|
if (widget == NULL || name == NULL) {
|
2021-06-14 13:29:05 -04:00
|
|
|
return widget;
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
char *tname = g_strdup(name);
|
|
|
|
char *saveptr = NULL;
|
|
|
|
int found = TRUE;
|
|
|
|
for (const char *iter = strtok_r(tname, ".", &saveptr); iter != NULL;
|
|
|
|
iter = strtok_r(NULL, ".", &saveptr)) {
|
|
|
|
found = FALSE;
|
|
|
|
ThemeWidget *f = rofi_theme_find_single(widget, iter);
|
|
|
|
if (f != widget) {
|
|
|
|
widget = f;
|
|
|
|
found = TRUE;
|
|
|
|
} else if (exact) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free(tname);
|
|
|
|
if (!exact || found) {
|
2016-12-20 03:17:19 -05:00
|
|
|
return widget;
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return NULL;
|
2016-12-20 03:17:19 -05:00
|
|
|
}
|
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
static void rofi_theme_resolve_link_property(Property *p, int depth) {
|
|
|
|
// Set name, remove '@' prefix.
|
|
|
|
const char *name = p->value.link.name; // + (*(p->value.link.name)== '@'?1:0;
|
|
|
|
g_info("Resolving link to %s", p->value.link.name);
|
|
|
|
if (depth > 20) {
|
|
|
|
g_warning("Found more then 20 redirects for property. Stopping.");
|
|
|
|
p->value.link.ref = p;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rofi_theme->properties &&
|
|
|
|
g_hash_table_contains(rofi_theme->properties, name)) {
|
|
|
|
Property *pr = g_hash_table_lookup(rofi_theme->properties, name);
|
|
|
|
g_info("Resolving link %s found: %s", p->value.link.name, pr->name);
|
|
|
|
if (pr->type == P_LINK) {
|
|
|
|
if (pr->value.link.ref == NULL) {
|
|
|
|
rofi_theme_resolve_link_property(pr, depth + 1);
|
|
|
|
}
|
|
|
|
if (pr->value.link.ref != pr) {
|
|
|
|
p->value.link.ref = pr->value.link.ref;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
p->value.link.ref = pr;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// No found and we have default value.
|
|
|
|
if (p->value.link.def_value) {
|
|
|
|
p->value.link.ref = p->value.link.def_value;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// No found, set ref to self.
|
|
|
|
p->value.link.ref = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
Property *rofi_theme_find_property(ThemeWidget *widget, PropertyType type,
|
|
|
|
const char *property, gboolean exact) {
|
|
|
|
while (widget) {
|
|
|
|
if (widget->properties &&
|
|
|
|
g_hash_table_contains(widget->properties, property)) {
|
|
|
|
Property *p = g_hash_table_lookup(widget->properties, property);
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
if (p->type == P_LINK) {
|
|
|
|
if (p->value.link.ref == NULL) {
|
|
|
|
// Resolve link.
|
|
|
|
rofi_theme_resolve_link_property(p, 0);
|
|
|
|
}
|
|
|
|
if (p->value.link.ref != NULL && p->value.link.ref->type == type) {
|
|
|
|
return p->value.link.ref;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (p->type == type) {
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
// RofiPadding and integer can be converted.
|
|
|
|
if (p->type == P_INTEGER && type == P_PADDING) {
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
g_debug("Found property: '%s' on '%s', but type %s does not match "
|
|
|
|
"expected type %s.",
|
|
|
|
property, widget->name, PropertyTypeName[p->type],
|
|
|
|
PropertyTypeName[type]);
|
|
|
|
}
|
|
|
|
if (exact) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
// Fall back to defaults.
|
|
|
|
widget = widget->parent;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ThemeWidget *rofi_config_find_widget(const char *name, const char *state,
|
|
|
|
gboolean exact) {
|
|
|
|
// First find exact match based on name.
|
|
|
|
ThemeWidget *widget = rofi_theme_find_single(rofi_configuration, name);
|
|
|
|
widget = rofi_theme_find(widget, state, exact);
|
|
|
|
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
ThemeWidget *rofi_theme_find_widget(const char *name, const char *state,
|
|
|
|
gboolean exact) {
|
|
|
|
// First find exact match based on name.
|
|
|
|
ThemeWidget *widget = rofi_theme_find_single(rofi_theme, name);
|
|
|
|
widget = rofi_theme_find(widget, state, exact);
|
|
|
|
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rofi_theme_get_position_inside(Property *p, const widget *widget,
|
|
|
|
const char *property, int def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_POSITION, property, FALSE);
|
2021-09-02 03:05:04 -04:00
|
|
|
return rofi_theme_get_position_inside(pv, widget->parent, property,
|
|
|
|
def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
return p->value.i;
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
int rofi_theme_get_position(const widget *widget, const char *property,
|
|
|
|
int def) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_POSITION, property, FALSE);
|
|
|
|
return rofi_theme_get_position_inside(p, widget, property, def);
|
|
|
|
}
|
|
|
|
static int rofi_theme_get_integer_inside(Property *p, const widget *widget,
|
|
|
|
const char *property, int def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_INTEGER, property, FALSE);
|
2021-08-26 17:34:07 -04:00
|
|
|
return rofi_theme_get_integer_inside(pv, widget->parent, property, def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
return p->value.i;
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
int rofi_theme_get_integer(const widget *widget, const char *property,
|
|
|
|
int def) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_INTEGER, property, FALSE);
|
2021-09-02 03:05:04 -04:00
|
|
|
return (int)rofi_theme_get_integer_inside(p, widget, property, (double)def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
static RofiDistance rofi_theme_get_distance_inside(Property *p,
|
|
|
|
const widget *widget,
|
|
|
|
const char *property,
|
|
|
|
int def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_PADDING, property, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
return rofi_theme_get_distance_inside(pv, widget->parent, property,
|
|
|
|
def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return (RofiDistance){
|
|
|
|
.base = {def, ROFI_PU_PX, ROFI_DISTANCE_MODIFIER_NONE, NULL, NULL},
|
|
|
|
.style = ROFI_HL_SOLID};
|
|
|
|
}
|
|
|
|
if (p->type == P_INTEGER) {
|
|
|
|
return (RofiDistance){.base = {p->value.i, ROFI_PU_PX,
|
|
|
|
ROFI_DISTANCE_MODIFIER_NONE, NULL, NULL},
|
|
|
|
.style = ROFI_HL_SOLID};
|
|
|
|
}
|
|
|
|
return p->value.padding.left;
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return (RofiDistance){
|
|
|
|
.base = {def, ROFI_PU_PX, ROFI_DISTANCE_MODIFIER_NONE, NULL, NULL},
|
|
|
|
.style = ROFI_HL_SOLID};
|
|
|
|
}
|
|
|
|
RofiDistance rofi_theme_get_distance(const widget *widget, const char *property,
|
|
|
|
int def) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_PADDING, property, FALSE);
|
|
|
|
return rofi_theme_get_distance_inside(p, widget, property, def);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rofi_theme_get_boolean_inside(Property *p, const widget *widget,
|
|
|
|
const char *property, int def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_BOOLEAN, property, FALSE);
|
2021-08-26 17:34:07 -04:00
|
|
|
return rofi_theme_get_boolean_inside(pv, widget->parent, property, def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
return p->value.b;
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
int rofi_theme_get_boolean(const widget *widget, const char *property,
|
|
|
|
int def) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_BOOLEAN, property, FALSE);
|
|
|
|
return rofi_theme_get_boolean_inside(p, widget, property, def);
|
|
|
|
}
|
|
|
|
|
|
|
|
static RofiOrientation rofi_theme_get_orientation_inside(Property *p,
|
|
|
|
const widget *widget,
|
|
|
|
const char *property,
|
|
|
|
RofiOrientation def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_ORIENTATION, property, FALSE);
|
2021-09-02 03:05:04 -04:00
|
|
|
return rofi_theme_get_orientation_inside(pv, widget->parent, property,
|
|
|
|
def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
return p->value.b;
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
RofiOrientation rofi_theme_get_orientation(const widget *widget,
|
|
|
|
const char *property,
|
|
|
|
RofiOrientation def) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_ORIENTATION, property, FALSE);
|
|
|
|
return rofi_theme_get_orientation_inside(p, widget, property, def);
|
|
|
|
}
|
|
|
|
|
|
|
|
static RofiCursorType rofi_theme_get_cursor_type_inside(Property *p,
|
|
|
|
const widget *widget,
|
|
|
|
const char *property,
|
|
|
|
RofiCursorType def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_CURSOR, property, FALSE);
|
2021-09-02 03:05:04 -04:00
|
|
|
return rofi_theme_get_cursor_type_inside(pv, widget->parent, property,
|
|
|
|
def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
return p->value.i;
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
RofiCursorType rofi_theme_get_cursor_type(const widget *widget,
|
|
|
|
const char *property,
|
|
|
|
RofiCursorType def) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_CURSOR, property, FALSE);
|
|
|
|
return rofi_theme_get_cursor_type_inside(p, widget, property, def);
|
|
|
|
}
|
|
|
|
static const char *rofi_theme_get_string_inside(Property *p,
|
|
|
|
const widget *widget,
|
|
|
|
const char *property,
|
|
|
|
const char *def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_STRING, property, FALSE);
|
2021-08-26 17:34:07 -04:00
|
|
|
return rofi_theme_get_string_inside(pv, widget->parent, property, def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
return p->value.s;
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
const char *rofi_theme_get_string(const widget *widget, const char *property,
|
|
|
|
const char *def) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_STRING, property, FALSE);
|
|
|
|
return rofi_theme_get_string_inside(p, widget, property, def);
|
|
|
|
}
|
2021-09-02 03:05:04 -04:00
|
|
|
|
|
|
|
static double rofi_theme_get_double_integer_fb_inside(Property *p,
|
|
|
|
const widget *widget,
|
|
|
|
const char *property,
|
|
|
|
double def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
|
|
|
Property *pv =
|
|
|
|
rofi_theme_find_property(parent, P_INTEGER, property, FALSE);
|
|
|
|
return rofi_theme_get_double_integer_fb_inside(pv, widget->parent,
|
|
|
|
property, def);
|
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
return p->value.i;
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return def;
|
|
|
|
}
|
2021-08-26 18:18:14 -04:00
|
|
|
static double rofi_theme_get_double_inside(const widget *orig, Property *p,
|
2021-08-17 19:16:45 -04:00
|
|
|
const widget *widget,
|
|
|
|
const char *property, double def) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_DOUBLE, property, FALSE);
|
2021-08-26 18:18:14 -04:00
|
|
|
return rofi_theme_get_double_inside(orig, pv, widget, property, def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
return p->value.f;
|
|
|
|
}
|
2021-09-02 03:05:04 -04:00
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(orig->name, widget->state, FALSE);
|
2021-08-17 19:16:45 -04:00
|
|
|
// Fallback to integer if double is not found.
|
|
|
|
p = rofi_theme_find_property(wid, P_INTEGER, property, FALSE);
|
2021-09-02 03:05:04 -04:00
|
|
|
return rofi_theme_get_double_integer_fb_inside(p, widget, property, def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
double rofi_theme_get_double(const widget *widget, const char *property,
|
|
|
|
double def) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_DOUBLE, property, FALSE);
|
2021-08-26 18:18:14 -04:00
|
|
|
return rofi_theme_get_double_inside(widget, p, widget, property, def);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
static void rofi_theme_get_color_inside(const widget *widget, Property *p,
|
|
|
|
const char *property, cairo_t *d) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_COLOR, property, FALSE);
|
2021-08-26 17:34:07 -04:00
|
|
|
rofi_theme_get_color_inside(widget->parent, pv, property, d);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cairo_set_source_rgba(d, p->value.color.red, p->value.color.green,
|
|
|
|
p->value.color.blue, p->value.color.alpha);
|
|
|
|
} else {
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void rofi_theme_get_color(const widget *widget, const char *property,
|
|
|
|
cairo_t *d) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_COLOR, property, FALSE);
|
|
|
|
rofi_theme_get_color_inside(widget, p, property, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean rofi_theme_get_image_inside(Property *p, const widget *widget,
|
|
|
|
const char *property, cairo_t *d) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_IMAGE, property, FALSE);
|
2021-08-26 17:34:07 -04:00
|
|
|
return rofi_theme_get_image_inside(pv, widget->parent, property, d);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (p->value.image.type == ROFI_IMAGE_URL) {
|
|
|
|
int wsize = -1;
|
|
|
|
int hsize = -1;
|
|
|
|
switch (p->value.image.scaling) {
|
|
|
|
case ROFI_SCALE_BOTH:
|
|
|
|
wsize = widget->w;
|
|
|
|
hsize = widget->h;
|
|
|
|
break;
|
|
|
|
case ROFI_SCALE_WIDTH:
|
|
|
|
wsize = widget->w;
|
|
|
|
break;
|
|
|
|
case ROFI_SCALE_HEIGHT:
|
|
|
|
hsize = widget->h;
|
|
|
|
break;
|
|
|
|
case ROFI_SCALE_NONE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (p->value.image.surface_id == 0 || p->value.image.wsize != wsize ||
|
|
|
|
p->value.image.hsize != hsize) {
|
|
|
|
p->value.image.surface_id =
|
|
|
|
rofi_icon_fetcher_query_advanced(p->value.image.url, wsize, hsize);
|
|
|
|
p->value.image.wsize = wsize;
|
|
|
|
p->value.image.hsize = hsize;
|
|
|
|
}
|
|
|
|
cairo_surface_t *img = rofi_icon_fetcher_get(p->value.image.surface_id);
|
|
|
|
|
|
|
|
if (img != NULL) {
|
|
|
|
cairo_pattern_t *pat = cairo_pattern_create_for_surface(img);
|
|
|
|
cairo_pattern_set_extend(pat, CAIRO_EXTEND_REPEAT);
|
|
|
|
cairo_set_source(d, pat);
|
|
|
|
cairo_pattern_destroy(pat);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
} else if (p->value.image.type == ROFI_IMAGE_LINEAR_GRADIENT) {
|
|
|
|
cairo_pattern_t *pat = NULL;
|
|
|
|
switch (p->value.image.dir) {
|
|
|
|
case ROFI_DIRECTION_RIGHT:
|
|
|
|
pat = cairo_pattern_create_linear(0.0, 0.0, widget->w, 0.0);
|
|
|
|
break;
|
|
|
|
case ROFI_DIRECTION_LEFT:
|
|
|
|
pat = cairo_pattern_create_linear(widget->w, 0.0, 0.0, 0.0);
|
|
|
|
break;
|
|
|
|
case ROFI_DIRECTION_BOTTOM:
|
|
|
|
pat = cairo_pattern_create_linear(0.0, 0.0, 0.0, widget->h);
|
|
|
|
break;
|
|
|
|
case ROFI_DIRECTION_TOP:
|
|
|
|
pat = cairo_pattern_create_linear(0.0, widget->h, 0.0, 0.0);
|
|
|
|
break;
|
|
|
|
case ROFI_DIRECTION_ANGLE: {
|
|
|
|
double offsety1 =
|
|
|
|
sin(G_PI * 2 * p->value.image.angle) * (widget->h / 2.0);
|
|
|
|
double offsetx1 =
|
|
|
|
cos(G_PI * 2 * p->value.image.angle) * (widget->w / 2.0);
|
|
|
|
pat = cairo_pattern_create_linear(
|
|
|
|
widget->w / 2.0 - offsetx1, widget->h / 2.0 - offsety1,
|
|
|
|
widget->w / 2.0 + offsetx1, widget->h / 2.0 + offsety1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
guint length = g_list_length(p->value.image.colors);
|
|
|
|
if (length > 1) {
|
|
|
|
length--;
|
|
|
|
guint color_index = 0;
|
|
|
|
for (GList *l = g_list_first(p->value.image.colors); l != NULL;
|
|
|
|
l = g_list_next(l)) {
|
|
|
|
ThemeColor *c = (ThemeColor *)(l->data);
|
|
|
|
cairo_pattern_add_color_stop_rgba(pat, (color_index) / (double)length,
|
|
|
|
c->red, c->green, c->blue,
|
|
|
|
c->alpha);
|
|
|
|
color_index++;
|
|
|
|
}
|
|
|
|
cairo_set_source(d, pat);
|
|
|
|
cairo_pattern_destroy(pat);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
if (length == 1) {
|
|
|
|
ThemeColor *c = (ThemeColor *)(p->value.image.colors->data);
|
|
|
|
cairo_pattern_add_color_stop_rgba(pat, 0, c->red, c->green, c->blue,
|
|
|
|
c->alpha);
|
|
|
|
cairo_set_source(d, pat);
|
|
|
|
cairo_pattern_destroy(pat);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
gboolean rofi_theme_get_image(const widget *widget, const char *property,
|
|
|
|
cairo_t *d) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_IMAGE, property, FALSE);
|
|
|
|
return rofi_theme_get_image_inside(p, widget, property, d);
|
|
|
|
}
|
|
|
|
static RofiPadding rofi_theme_get_padding_inside(Property *p,
|
|
|
|
const widget *widget,
|
|
|
|
const char *property,
|
|
|
|
RofiPadding pad) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_PADDING, property, FALSE);
|
2021-08-26 17:34:07 -04:00
|
|
|
return rofi_theme_get_padding_inside(pv, widget->parent, property, pad);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
if (p->type == P_PADDING) {
|
|
|
|
pad = p->value.padding;
|
|
|
|
} else {
|
|
|
|
RofiDistance d =
|
|
|
|
(RofiDistance){.base = {p->value.i, ROFI_PU_PX,
|
|
|
|
ROFI_DISTANCE_MODIFIER_NONE, NULL, NULL},
|
|
|
|
.style = ROFI_HL_SOLID};
|
|
|
|
return (RofiPadding){d, d, d, d};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
RofiPadding rofi_theme_get_padding(const widget *widget, const char *property,
|
|
|
|
RofiPadding pad) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_PADDING, property, FALSE);
|
|
|
|
return rofi_theme_get_padding_inside(p, widget, property, pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GList *rofi_theme_get_list_inside(Property *p, const widget *widget,
|
|
|
|
const char *property,
|
2022-01-25 03:57:59 -05:00
|
|
|
PropertyType child_type) {
|
2021-08-17 19:16:45 -04:00
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
|
|
|
rofi_theme_find_property(parent, P_LIST, property, FALSE);
|
2021-09-02 03:05:04 -04:00
|
|
|
return rofi_theme_get_list_inside(pv, widget->parent, property,
|
2022-01-25 03:57:59 -05:00
|
|
|
child_type);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
} else if (p->type == P_LIST) {
|
2022-01-24 13:43:08 -05:00
|
|
|
return p->value.list;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2022-01-25 03:57:59 -05:00
|
|
|
GList *rofi_theme_get_list_distance(const widget *widget,
|
|
|
|
const char *property) {
|
2022-01-24 15:50:52 -05:00
|
|
|
ThemeWidget *wid2 =
|
|
|
|
rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
2022-01-25 03:57:59 -05:00
|
|
|
Property *p = rofi_theme_find_property(wid2, P_LIST, property, FALSE);
|
|
|
|
GList *list = rofi_theme_get_list_inside(p, widget, property, P_PADDING);
|
2022-01-24 13:43:08 -05:00
|
|
|
GList *retv = NULL;
|
|
|
|
for (GList *iter = g_list_first(list); iter != NULL;
|
|
|
|
iter = g_list_next(iter)) {
|
|
|
|
Property *prop = (Property *)(iter->data);
|
|
|
|
if (prop->type == P_PADDING) {
|
2022-03-14 20:00:56 -04:00
|
|
|
RofiDistance *pnew = g_new0(RofiDistance, 1);
|
|
|
|
*pnew = prop->value.padding.left;
|
|
|
|
retv = g_list_append(retv, pnew);
|
2022-01-24 13:43:08 -05:00
|
|
|
} else if (prop->type == P_INTEGER) {
|
2022-03-14 20:00:56 -04:00
|
|
|
RofiDistance *pnew = g_new0(RofiDistance, 1);
|
2022-01-24 13:43:08 -05:00
|
|
|
RofiDistance d =
|
|
|
|
(RofiDistance){.base = {prop->value.i, ROFI_PU_PX,
|
|
|
|
ROFI_DISTANCE_MODIFIER_NONE, NULL, NULL},
|
|
|
|
.style = ROFI_HL_SOLID};
|
2022-03-14 20:00:56 -04:00
|
|
|
*pnew = d;
|
|
|
|
retv = g_list_append(retv, pnew);
|
2022-01-24 13:43:08 -05:00
|
|
|
} else {
|
|
|
|
g_warning("Invalid type detected in list.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retv;
|
|
|
|
}
|
2022-01-25 03:57:59 -05:00
|
|
|
GList *rofi_theme_get_list_strings(const widget *widget, const char *property) {
|
|
|
|
ThemeWidget *wid2 =
|
|
|
|
rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid2, P_LIST, property, FALSE);
|
|
|
|
GList *list = rofi_theme_get_list_inside(p, widget, property, P_STRING);
|
|
|
|
GList *retv = NULL;
|
|
|
|
for (GList *iter = g_list_first(list); iter != NULL;
|
|
|
|
iter = g_list_next(iter)) {
|
|
|
|
Property *prop = (Property *)(iter->data);
|
|
|
|
if (prop->type == P_STRING) {
|
|
|
|
retv = g_list_append(retv, g_strdup(prop->value.s));
|
|
|
|
} else {
|
|
|
|
g_warning("Invalid type detected in list.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retv;
|
|
|
|
}
|
2022-01-24 13:43:08 -05:00
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
static RofiHighlightColorStyle
|
|
|
|
rofi_theme_get_highlight_inside(Property *p, widget *widget,
|
|
|
|
const char *property,
|
|
|
|
RofiHighlightColorStyle th) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pv =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_HIGHLIGHT, property, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
return rofi_theme_get_highlight_inside(pv, widget->parent, property,
|
|
|
|
th);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return th;
|
2021-11-08 15:46:51 -05:00
|
|
|
} else if (p->type == P_COLOR) {
|
|
|
|
th.style = ROFI_HL_NONE | ROFI_HL_COLOR;
|
|
|
|
th.color = p->value.color;
|
|
|
|
return th;
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2021-11-08 15:46:51 -05:00
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
return p->value.highlight;
|
2021-11-08 15:46:51 -05:00
|
|
|
} else {
|
|
|
|
ThemeWidget *wid =
|
|
|
|
rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
2021-12-01 07:14:36 -05:00
|
|
|
Property *p2 = rofi_theme_find_property(wid, P_COLOR, property, FALSE);
|
|
|
|
if (p2 != NULL) {
|
|
|
|
return rofi_theme_get_highlight_inside(p2, widget, property, th);
|
2021-11-08 15:46:51 -05:00
|
|
|
}
|
|
|
|
return th;
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
g_debug("Theme entry: #%s %s property %s unset.", widget->name,
|
|
|
|
widget->state ? widget->state : "", property);
|
|
|
|
return th;
|
|
|
|
}
|
|
|
|
RofiHighlightColorStyle rofi_theme_get_highlight(widget *widget,
|
|
|
|
const char *property,
|
|
|
|
RofiHighlightColorStyle th) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_HIGHLIGHT, property, FALSE);
|
2021-11-08 15:46:51 -05:00
|
|
|
if (p == NULL) {
|
|
|
|
p = rofi_theme_find_property(wid, P_COLOR, property, FALSE);
|
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
return rofi_theme_get_highlight_inside(p, widget, property, th);
|
|
|
|
}
|
|
|
|
static int get_pixels(RofiDistanceUnit *unit, RofiOrientation ori) {
|
|
|
|
int val = unit->distance;
|
|
|
|
|
|
|
|
if (unit->type == ROFI_PU_EM) {
|
|
|
|
val = unit->distance * textbox_get_estimated_char_height();
|
|
|
|
} else if (unit->type == ROFI_PU_CH) {
|
|
|
|
val = unit->distance * textbox_get_estimated_ch();
|
|
|
|
} else if (unit->type == ROFI_PU_PERCENT) {
|
|
|
|
if (ori == ROFI_ORIENTATION_VERTICAL) {
|
|
|
|
int height = 0;
|
|
|
|
rofi_view_get_current_monitor(NULL, &height);
|
|
|
|
val = (unit->distance * height) / (100.0);
|
|
|
|
} else {
|
|
|
|
int width = 0;
|
|
|
|
rofi_view_get_current_monitor(&width, NULL);
|
|
|
|
val = (unit->distance * width) / (100.0);
|
|
|
|
}
|
|
|
|
} else if (unit->type == ROFI_PU_MM) {
|
|
|
|
val = unit->distance * config.dpi / 25.4;
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int distance_unit_get_pixel(RofiDistanceUnit *unit,
|
|
|
|
RofiOrientation ori) {
|
|
|
|
switch (unit->modtype) {
|
|
|
|
case ROFI_DISTANCE_MODIFIER_GROUP:
|
|
|
|
return distance_unit_get_pixel(unit->left, ori);
|
|
|
|
break;
|
|
|
|
case ROFI_DISTANCE_MODIFIER_ADD:
|
|
|
|
return distance_unit_get_pixel(unit->left, ori) +
|
|
|
|
distance_unit_get_pixel(unit->right, ori);
|
|
|
|
case ROFI_DISTANCE_MODIFIER_SUBTRACT:
|
|
|
|
return distance_unit_get_pixel(unit->left, ori) -
|
|
|
|
distance_unit_get_pixel(unit->right, ori);
|
|
|
|
case ROFI_DISTANCE_MODIFIER_MULTIPLY:
|
|
|
|
return distance_unit_get_pixel(unit->left, ori) *
|
|
|
|
distance_unit_get_pixel(unit->right, ori);
|
|
|
|
case ROFI_DISTANCE_MODIFIER_DIVIDE: {
|
|
|
|
int a = distance_unit_get_pixel(unit->left, ori);
|
|
|
|
int b = distance_unit_get_pixel(unit->right, ori);
|
|
|
|
if (b != 0) {
|
|
|
|
return a / b;
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
case ROFI_DISTANCE_MODIFIER_MODULO: {
|
|
|
|
int a = distance_unit_get_pixel(unit->left, ori);
|
|
|
|
int b = distance_unit_get_pixel(unit->right, ori);
|
|
|
|
if (b != 0) {
|
|
|
|
return a % b;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case ROFI_DISTANCE_MODIFIER_MIN: {
|
|
|
|
int a = distance_unit_get_pixel(unit->left, ori);
|
|
|
|
int b = distance_unit_get_pixel(unit->right, ori);
|
|
|
|
return MIN(a, b);
|
|
|
|
}
|
|
|
|
case ROFI_DISTANCE_MODIFIER_MAX: {
|
|
|
|
int a = distance_unit_get_pixel(unit->left, ori);
|
|
|
|
int b = distance_unit_get_pixel(unit->right, ori);
|
|
|
|
return MAX(a, b);
|
|
|
|
}
|
2022-01-18 05:01:56 -05:00
|
|
|
case ROFI_DISTANCE_MODIFIER_ROUND: {
|
|
|
|
double a = (double)distance_unit_get_pixel(unit->left, ori);
|
|
|
|
double b = (double)distance_unit_get_pixel(unit->right, ori);
|
2022-01-18 05:41:37 -05:00
|
|
|
return (int)(round(a / b) * b);
|
2022-01-18 05:01:56 -05:00
|
|
|
}
|
|
|
|
case ROFI_DISTANCE_MODIFIER_CEIL: {
|
|
|
|
double a = (double)distance_unit_get_pixel(unit->left, ori);
|
|
|
|
double b = (double)distance_unit_get_pixel(unit->right, ori);
|
2022-01-18 05:41:37 -05:00
|
|
|
return (int)(ceil(a / b) * b);
|
2022-01-18 05:01:56 -05:00
|
|
|
}
|
|
|
|
case ROFI_DISTANCE_MODIFIER_FLOOR: {
|
|
|
|
double a = (double)distance_unit_get_pixel(unit->left, ori);
|
|
|
|
double b = (double)distance_unit_get_pixel(unit->right, ori);
|
2022-01-18 05:41:37 -05:00
|
|
|
return (int)(floor(a / b) * b);
|
2022-01-18 05:01:56 -05:00
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return get_pixels(unit, ori);
|
|
|
|
}
|
|
|
|
|
|
|
|
int distance_get_pixel(RofiDistance d, RofiOrientation ori) {
|
|
|
|
return distance_unit_get_pixel(&(d.base), ori);
|
|
|
|
}
|
|
|
|
|
|
|
|
void distance_get_linestyle(RofiDistance d, cairo_t *draw) {
|
|
|
|
if (d.style == ROFI_HL_DASH) {
|
|
|
|
const double dashes[1] = {4};
|
|
|
|
cairo_set_dash(draw, dashes, 1, 0.0);
|
|
|
|
} else {
|
|
|
|
cairo_set_dash(draw, NULL, 0, 0.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *rofi_theme_parse_prepare_file(const char *file, const char *parent_file) {
|
|
|
|
char *filename = rofi_expand_path(file);
|
|
|
|
// If no absolute path specified, expand it.
|
|
|
|
if (parent_file != NULL && !g_path_is_absolute(filename)) {
|
|
|
|
char *basedir = g_path_get_dirname(parent_file);
|
|
|
|
char *path = g_build_filename(basedir, filename, NULL);
|
|
|
|
g_free(filename);
|
|
|
|
filename = path;
|
|
|
|
g_free(basedir);
|
|
|
|
}
|
|
|
|
GFile *gf = g_file_new_for_path(filename);
|
2021-12-12 14:56:32 -05:00
|
|
|
parsed_config_files = g_list_append(parsed_config_files, filename);
|
2021-08-17 19:16:45 -04:00
|
|
|
filename = g_file_get_path(gf);
|
|
|
|
g_object_unref(gf);
|
|
|
|
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rofi_theme_parse_merge_widgets(ThemeWidget *parent, ThemeWidget *child) {
|
|
|
|
g_assert(parent != NULL);
|
|
|
|
g_assert(child != NULL);
|
|
|
|
|
|
|
|
if (parent == rofi_theme && g_strcmp0(child->name, "*") == 0) {
|
|
|
|
rofi_theme_widget_add_properties(parent, child->properties);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ThemeWidget *w = rofi_theme_find_or_create_name(parent, child->name);
|
|
|
|
if (child->media) {
|
|
|
|
w->media = g_slice_new0(ThemeMedia);
|
|
|
|
*(w->media) = *(child->media);
|
|
|
|
}
|
|
|
|
rofi_theme_widget_add_properties(w, child->properties);
|
|
|
|
for (unsigned int i = 0; i < child->num_widgets; i++) {
|
|
|
|
rofi_theme_parse_merge_widgets(w, child->widgets[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rofi_theme_parse_process_conditionals_int(workarea mon,
|
|
|
|
ThemeWidget *rwidget) {
|
|
|
|
if (rwidget == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2021-09-08 08:16:28 -04:00
|
|
|
unsigned int i = 0;
|
|
|
|
// for (unsigned int i = 0; i < rwidget->num_widgets; i++) {
|
|
|
|
while (i < rwidget->num_widgets) {
|
2021-08-17 19:16:45 -04:00
|
|
|
ThemeWidget *widget = rwidget->widgets[i];
|
|
|
|
if (widget->media != NULL) {
|
2021-09-08 08:16:28 -04:00
|
|
|
rwidget->num_widgets--;
|
|
|
|
for (unsigned x = i; x < rwidget->num_widgets; x++) {
|
|
|
|
rwidget->widgets[x] = rwidget->widgets[x + 1];
|
|
|
|
}
|
|
|
|
rwidget->widgets[rwidget->num_widgets] = NULL;
|
2021-08-17 19:16:45 -04:00
|
|
|
switch (widget->media->type) {
|
|
|
|
case THEME_MEDIA_TYPE_MIN_WIDTH: {
|
|
|
|
int w = widget->media->value;
|
|
|
|
if (mon.w >= w) {
|
|
|
|
for (unsigned int x = 0; x < widget->num_widgets; x++) {
|
2021-09-08 08:16:28 -04:00
|
|
|
rofi_theme_parse_merge_widgets(rwidget, widget->widgets[x]);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2017-01-08 15:36:06 -05:00
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case THEME_MEDIA_TYPE_MAX_WIDTH: {
|
|
|
|
int w = widget->media->value;
|
|
|
|
if (mon.w < w) {
|
|
|
|
for (unsigned int x = 0; x < widget->num_widgets; x++) {
|
2021-09-08 08:16:28 -04:00
|
|
|
rofi_theme_parse_merge_widgets(rwidget, widget->widgets[x]);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2017-01-03 13:23:09 -05:00
|
|
|
}
|
2020-08-28 10:41:59 -04:00
|
|
|
break;
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
case THEME_MEDIA_TYPE_MIN_HEIGHT: {
|
|
|
|
int h = widget->media->value;
|
|
|
|
if (mon.h >= h) {
|
|
|
|
for (unsigned int x = 0; x < widget->num_widgets; x++) {
|
2021-09-08 08:16:28 -04:00
|
|
|
rofi_theme_parse_merge_widgets(rwidget, widget->widgets[x]);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2021-09-08 08:16:28 -04:00
|
|
|
} else {
|
2020-08-28 10:41:59 -04:00
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case THEME_MEDIA_TYPE_MAX_HEIGHT: {
|
|
|
|
int h = widget->media->value;
|
|
|
|
if (mon.h < h) {
|
|
|
|
for (unsigned int x = 0; x < widget->num_widgets; x++) {
|
2021-09-08 08:16:28 -04:00
|
|
|
rofi_theme_parse_merge_widgets(rwidget, widget->widgets[x]);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2020-08-28 10:41:59 -04:00
|
|
|
}
|
|
|
|
break;
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
case THEME_MEDIA_TYPE_MON_ID: {
|
|
|
|
if (mon.monitor_id == widget->media->value) {
|
|
|
|
for (unsigned int x = 0; x < widget->num_widgets; x++) {
|
2021-09-08 08:16:28 -04:00
|
|
|
rofi_theme_parse_merge_widgets(rwidget, widget->widgets[x]);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2020-03-02 06:21:34 -05:00
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case THEME_MEDIA_TYPE_MIN_ASPECT_RATIO: {
|
|
|
|
double r = widget->media->value;
|
|
|
|
if ((mon.w / (double)mon.h) >= r) {
|
|
|
|
for (unsigned int x = 0; x < widget->num_widgets; x++) {
|
2021-09-08 08:16:28 -04:00
|
|
|
rofi_theme_parse_merge_widgets(rwidget, widget->widgets[x]);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2020-02-02 07:56:37 -05:00
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case THEME_MEDIA_TYPE_MAX_ASPECT_RATIO: {
|
|
|
|
double r = widget->media->value;
|
|
|
|
if ((mon.w / (double)mon.h) < r) {
|
|
|
|
for (unsigned int x = 0; x < widget->num_widgets; x++) {
|
2021-09-08 08:16:28 -04:00
|
|
|
rofi_theme_parse_merge_widgets(rwidget, widget->widgets[x]);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
2020-04-06 17:26:07 -04:00
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
break;
|
|
|
|
}
|
2022-07-15 17:28:57 -04:00
|
|
|
case THEME_MEDIA_TYPE_BOOLEAN: {
|
|
|
|
if (widget->media->boolv) {
|
|
|
|
for (unsigned int x = 0; x < widget->num_widgets; x++) {
|
|
|
|
rofi_theme_parse_merge_widgets(rwidget, widget->widgets[x]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
default: {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-09-08 08:16:28 -04:00
|
|
|
rofi_theme_free(widget);
|
|
|
|
// endif
|
|
|
|
} else {
|
|
|
|
rofi_theme_parse_process_conditionals_int(mon, widget);
|
|
|
|
i++;
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-31 17:19:51 -05:00
|
|
|
|
|
|
|
static char *rofi_theme_widget_get_name(ThemeWidget *wid) {
|
|
|
|
GString *str = g_string_new(wid->name);
|
|
|
|
for (ThemeWidget *i = wid->parent; i->parent != NULL; i = i->parent) {
|
|
|
|
g_string_prepend_c(str, ' ');
|
|
|
|
g_string_prepend(str, i->name);
|
|
|
|
}
|
|
|
|
char *retv = str->str;
|
|
|
|
g_string_free(str, FALSE);
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rofi_theme_parse_process_links_int(ThemeWidget *wid) {
|
|
|
|
if (wid == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < wid->num_widgets; i++) {
|
|
|
|
ThemeWidget *widget = wid->widgets[i];
|
|
|
|
rofi_theme_parse_process_links_int(widget);
|
|
|
|
if (widget->properties == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer key, value;
|
|
|
|
g_hash_table_iter_init(&iter, widget->properties);
|
|
|
|
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
|
|
|
Property *pv = (Property *)value;
|
|
|
|
if (pv->type == P_LINK) {
|
|
|
|
if (pv->value.link.ref == NULL) {
|
|
|
|
rofi_theme_resolve_link_property(pv, 0);
|
|
|
|
if (pv->value.link.ref == pv) {
|
|
|
|
char *n = rofi_theme_widget_get_name(widget);
|
|
|
|
GString *str = g_string_new(NULL);
|
2022-06-01 10:51:34 -04:00
|
|
|
g_string_printf(str,
|
|
|
|
"Validating the theme failed: the variable '%s' in "
|
|
|
|
"`%s { %s: var(%s);}` failed to resolve.",
|
|
|
|
pv->value.link.name, n, pv->name,
|
|
|
|
pv->value.link.name);
|
2022-01-31 17:19:51 -05:00
|
|
|
|
2022-07-27 17:44:56 -04:00
|
|
|
rofi_add_warning_message(str);
|
2022-01-31 17:19:51 -05:00
|
|
|
g_free(n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void rofi_theme_parse_process_links(void) {
|
|
|
|
rofi_theme_parse_process_links_int(rofi_theme);
|
|
|
|
}
|
|
|
|
|
2021-08-17 19:16:45 -04:00
|
|
|
void rofi_theme_parse_process_conditionals(void) {
|
|
|
|
workarea mon;
|
|
|
|
monitor_active(&mon);
|
|
|
|
rofi_theme_parse_process_conditionals_int(mon, rofi_theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
ThemeMediaType rofi_theme_parse_media_type(const char *type) {
|
|
|
|
if (g_strcmp0(type, "monitor-id") == 0) {
|
|
|
|
return THEME_MEDIA_TYPE_MON_ID;
|
|
|
|
}
|
|
|
|
if (g_strcmp0(type, "min-width") == 0) {
|
|
|
|
return THEME_MEDIA_TYPE_MIN_WIDTH;
|
|
|
|
}
|
|
|
|
if (g_strcmp0(type, "min-height") == 0) {
|
|
|
|
return THEME_MEDIA_TYPE_MIN_HEIGHT;
|
|
|
|
}
|
|
|
|
if (g_strcmp0(type, "max-width") == 0) {
|
|
|
|
return THEME_MEDIA_TYPE_MAX_WIDTH;
|
|
|
|
}
|
|
|
|
if (g_strcmp0(type, "max-height") == 0) {
|
|
|
|
return THEME_MEDIA_TYPE_MAX_HEIGHT;
|
|
|
|
}
|
|
|
|
if (g_strcmp0(type, "min-aspect-ratio") == 0) {
|
|
|
|
return THEME_MEDIA_TYPE_MIN_ASPECT_RATIO;
|
|
|
|
}
|
|
|
|
if (g_strcmp0(type, "max-aspect-ratio") == 0) {
|
|
|
|
return THEME_MEDIA_TYPE_MAX_ASPECT_RATIO;
|
|
|
|
}
|
2022-07-15 17:28:57 -04:00
|
|
|
if (g_strcmp0(type, "enabled") == 0) {
|
|
|
|
return THEME_MEDIA_TYPE_BOOLEAN;
|
|
|
|
}
|
2021-08-17 19:16:45 -04:00
|
|
|
return THEME_MEDIA_TYPE_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean rofi_theme_has_property_inside(Property *p,
|
|
|
|
const widget *widget,
|
|
|
|
const char *property) {
|
|
|
|
if (p) {
|
|
|
|
if (p->type == P_INHERIT) {
|
|
|
|
if (widget->parent) {
|
|
|
|
ThemeWidget *parent =
|
|
|
|
rofi_theme_find_widget(widget->parent->name, widget->state, FALSE);
|
2021-08-20 19:08:40 -04:00
|
|
|
Property *pp =
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_theme_find_property(parent, P_STRING, property, FALSE);
|
2021-08-26 17:34:07 -04:00
|
|
|
return rofi_theme_has_property_inside(pp, widget->parent, property);
|
2021-08-17 19:16:45 -04:00
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
gboolean rofi_theme_has_property(const widget *widget, const char *property) {
|
|
|
|
ThemeWidget *wid = rofi_theme_find_widget(widget->name, widget->state, FALSE);
|
|
|
|
Property *p = rofi_theme_find_property(wid, P_STRING, property, FALSE);
|
|
|
|
return rofi_theme_has_property_inside(p, widget, property);
|
2021-08-14 07:58:21 -04:00
|
|
|
}
|