AronTreeWidgetDictInputModalController.h
Go to the documentation of this file.
1#pragma once
2
3#include <stack>
4
5#include <QDialog>
6
8
12
13#include "RobotAPI/libraries/skills_gui/dict/ui_AronTreeWidgetDictInputModal.h"
14
16
17namespace armarx::skills::gui
18{
20 {
21 public:
22 AronTreeWidgetDictInputModalController(const std::string& label,
24 QTreeWidget* parent);
25
26 private slots:
27
28 void submit() final;
29 void reset() final;
30
31 void addEmptyElement();
32
33 private:
34 std::vector<AronTreeWidgetItem*> addedItems;
35 Ui::AronTreeWidgetDictInputModalWidget widget;
36 };
37} // namespace armarx::skills::gui
AronTreeWidgetDictInputModalController(const std::string &label, AronTreeWidgetItem *item, QTreeWidget *parent)
AronTreeWidgetModal(const std::string &label, AronTreeWidgetItem *item, QTreeWidget *parent)