ui/wpf/label.c

changeset 108
77254bd6dccb
parent 107
b34bd1557c6c
child 109
c3dfcb8f0be7
--- a/ui/wpf/label.c	Sat Apr 05 17:57:04 2025 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-
-#include "label.h"
-#include "container.h"
-#include "../../ucx/mempool.h"
-#include "../common/context.h"
-#include "../common/object.h"
-
-UIWIDGET ui_label(UiObject *obj, char *label) {
-    return UIlabel(uic_get_current_container(obj), label, 2);
-}
-
-UIWIDGET ui_llabel(UiObject *obj, char *label) {
-    return UIlabel(uic_get_current_container(obj), label, 0);
-}
-
-UIWIDGET ui_rlabel(UiObject *obj, char *label) {
-    return UIlabel(uic_get_current_container(obj), label, 1);
-}
-
-UIWIDGET ui_space(UiObject *obj) {
-    return UIspace(uic_get_current_container(obj));
-}
-
-UIWIDGET ui_separator(UiObject *obj) {
-    return UIseparator(uic_get_current_container(obj));
-}

mercurial