Files
RedBear-OS/local/recipes/tui/mc/source/lib/widget/gauge.h
T
vasilito 04b7641e85 config: add x11proto dependency for libxau and SDDM
- Add x11proto to redbear-full.toml package list
- libxau recipe updated with x11proto dependency and custom build script
- Fixes libxau build failure: 'Package xproto was not found'
2026-06-20 14:57:46 +03:00

37 lines
1.1 KiB
C

/** \file gauge.h
* \brief Header: WGauge widget
*/
#ifndef MC__WIDGET_GAUGE_H
#define MC__WIDGET_GAUGE_H
/*** typedefs(not structures) and defined constants **********************************************/
#define GAUGE(x) ((WGauge *)(x))
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
typedef struct WGauge
{
Widget widget;
gboolean shown;
int max;
int current;
gboolean from_left_to_right;
} WGauge;
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
WGauge *gauge_new (int y, int x, int cols, gboolean shown, int max, int current);
void gauge_set_value (WGauge * g, int max, int current);
void gauge_show (WGauge * g, gboolean shown);
/*** inline functions ****************************************************************************/
#endif /* MC__WIDGET_GAUGE_H */