facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
|
|
/** \file label.h
|
|
* \brief Header: WLabel widget
|
|
*/
|
|
|
|
#ifndef MC__WIDGET_LABEL_H
|
|
#define MC__WIDGET_LABEL_H
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
#define LABEL(x) ((WLabel *)(x))
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
typedef struct
|
|
{
|
|
Widget widget;
|
|
gboolean auto_adjust_cols; /* compute widget.cols from strlen(text)? */
|
|
char *text;
|
|
gboolean transparent; /* Paint in the default color fg/bg */
|
|
} WLabel;
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
WLabel *label_new (int y, int x, const char *text);
|
|
void label_set_text (WLabel * label, const char *text);
|
|
/* *INDENT-OFF* */
|
|
void label_set_textv (WLabel * label, const char *format, ...) G_GNUC_PRINTF (2, 3);
|
|
/* *INDENT-ON* */
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC__WIDGET_LABEL_H */
|