ui/wpf/label.c

changeset 101
1c943d43fa81
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ui/wpf/label.c	Wed Jan 20 11:35:01 2016 +0100
@@ -0,0 +1,28 @@
+#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