mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
The default `titleLayout` is updated to `icon:iconify,max,close` which replaces the window menu button with the window icon. When the icon file is not found or could not be loaded, the window menu icon as before is shown. The icon theme can be selected with `<theme><icon>`. This commit adds libsfdo as an optional dependency. `-Dicon=disabled` can be passsed to `meson setup` command in order to disable window icon, in which case the window icon is always replaced with a window menu button.
10 lines
233 B
C
10 lines
233 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_IMG_SVG_H
|
|
#define LABWC_IMG_SVG_H
|
|
|
|
struct lab_data_buffer;
|
|
|
|
void img_svg_load(const char *filename, struct lab_data_buffer **buffer,
|
|
int size);
|
|
|
|
#endif /* LABWC_IMG_SVG_H */
|