2021-11-13 21:56:53 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2023-05-13 16:10:33 +03:00
|
|
|
#ifndef LABWC_XBM_H
|
|
|
|
|
#define LABWC_XBM_H
|
2020-06-29 19:27:59 +01:00
|
|
|
|
|
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
|
|
2020-08-31 20:01:08 +01:00
|
|
|
#include "xbm/parse.h"
|
2020-06-29 19:27:59 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* xbm_load - load theme xbm files into global theme struct
|
|
|
|
|
*/
|
2023-08-04 22:30:16 +01:00
|
|
|
void xbm_load_button(const char *filename, struct lab_data_buffer **buffer,
|
|
|
|
|
char *fallback_button, float *rgba);
|
2020-06-29 19:27:59 +01:00
|
|
|
|
2023-05-13 16:10:33 +03:00
|
|
|
#endif /* LABWC_XBM_H */
|