aboutsummaryrefslogtreecommitdiffstats
path: root/include/gwin/label.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gwin/label.h')
-rw-r--r--include/gwin/label.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/gwin/label.h b/include/gwin/label.h
index ed774ed7..d387345d 100644
--- a/include/gwin/label.h
+++ b/include/gwin/label.h
@@ -31,9 +31,7 @@
// An label window
typedef struct GLabelWidget_t {
- GWindowObject g;
-
- const char* text;
+ GWidgetObject w;
} GLabelWidget;
#ifdef __cplusplus
@@ -51,12 +49,7 @@ extern "C" {
*
* @api
*/
-GHandle gwinLabelCreate(GLabelWidget *widget, GWindowInit *pInit);
-void gwinLabelSetColor(GHandle gh, color_t color);
-void gwinLabelSetBgColor(GHandle gh, color_t bgColor);
-void gwinLabelSetFont(GHandle gh, font_t font);
-void gwinLabelSetText(GHandle gh, const char* text);
-void gwinLabelDraw(GHandle gh);
+GHandle gwinLabelCreate(GLabelWidget *widget, GWidgetInit *pInit);
#ifdef __cplusplus
}