From e71401fe39324f4b57f035a9ac067a275cf9a035 Mon Sep 17 00:00:00 2001
From: David Hammer <dhammer@mailbox.org>
Date: Sat, 5 Feb 2022 19:28:27 +0100
Subject: [PATCH] Scene generation: use combo box for keys with options

---
 src/calng/scenes.py | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/calng/scenes.py b/src/calng/scenes.py
index d59dd95e..a701f5ac 100644
--- a/src/calng/scenes.py
+++ b/src/calng/scenes.py
@@ -4,6 +4,7 @@ import karathon
 from karabo.common.scenemodel.api import (
     CheckBoxModel,
     ColorBoolModel,
+    ComboBoxModel,
     DeviceSceneLinkModel,
     DetectorGraphModel,
     DisplayCommandModel,
@@ -257,7 +258,16 @@ class MaybeEditableRow(HorizontalLayout):
             if "valueType" not in key_attr:
                 return
             value_type = key_attr["valueType"]
-            if value_type in _type_to_line_editable:
+            if "options" in key_attr:
+                self.children.append(
+                    ComboBoxModel(
+                        keys=[f"{device_id}.{key_path}"],
+                        width=edit_width,
+                        height=height,
+                        klass="EditableComboBox",
+                    )
+                )
+            elif value_type in _type_to_line_editable:
                 line_editable_class, extra_args = _type_to_line_editable[value_type]
                 self.children.append(
                     line_editable_class(
-- 
GitLab