# HG changeset patch
# User Olaf Wintermann <olaf.wintermann@gmail.com>
# Date 1743022831 -3600
# Node ID 6e3e1fa6dfcce458e78d1630706354215af6c4e5
# Parent  ea1bba55de441e70bed4ff2adde3e4d5853fd575
add label (QT)

diff -r ea1bba55de44 -r 6e3e1fa6dfcc ui/qt/label.cpp
--- a/ui/qt/label.cpp	Wed Mar 26 21:54:42 2025 +0100
+++ b/ui/qt/label.cpp	Wed Mar 26 22:00:31 2025 +0100
@@ -29,4 +29,35 @@
 #include "label.h"
 #include "container.h"
 #include "toolkit.h"
+#include "ui/display.h"
 
+
+UIWIDGET ui_label_create(UiObject* obj, UiLabelArgs args) {
+    UiContainerPrivate *ctn = ui_obj_container(obj);
+    UI_APPLY_LAYOUT(ctn->layout, args);
+    
+    QString str = QString::fromUtf8(args.label);
+    QLabel *widget = new QLabel(str);
+    
+    Qt::AlignmentFlag align = Qt::AlignCenter;
+    if(args.align == UI_ALIGN_LEFT) {
+        align = Qt::AlignLeft;
+    } else if(args.align == UI_ALIGN_RIGHT) {
+        align = Qt::AlignRight;
+    }
+    widget->setAlignment(align);
+    
+    ctn->add(widget, false);
+    
+    return widget;
+}
+
+UIWIDGET ui_llabel_create(UiObject* obj, UiLabelArgs args) {
+    args.align = UI_ALIGN_LEFT;
+    return ui_label_create(obj, args);
+}
+
+UIWIDGET ui_rlabel_create(UiObject* obj, UiLabelArgs args) {
+    args.align = UI_ALIGN_RIGHT;
+    return ui_label_create(obj, args);
+}