Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
QmitkDropdownQuestionWidget.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef QmitkDropdownQuestionWidget_h
14 #define QmitkDropdownQuestionWidget_h
15 
16 #include <QmitkQuestionWidget.h>
17 #include <mitkDropdownQuestion.h>
18 
19 class QComboBox;
20 
22 {
23  Q_OBJECT
24 
25 public:
26  explicit QmitkDropdownQuestionWidget(QWidget* parent = nullptr);
28 
29  QmitkQuestionWidget* CreateAnother(QWidget* parent = nullptr) const override;
31  void SetQuestion(mitk::Forms::Question* question) override;
32  void Reset() override;
33 
34 private:
35  void CreateWidgets();
36  void RemoveWidgets();
37 
38  void OnCurrentIndexChanged(int index);
39 
41 
42  QVBoxLayout* m_Layout;
43  QComboBox* m_ComboBox;
44 };
45 
46 #endif
#define MITKFORMSUI_EXPORT
mitk::Forms::Question * GetQuestion() const override
Get the question associated with this widget.
void Reset() override
Reset the state of the GUI as if no interaction would have been happened yet.
~QmitkDropdownQuestionWidget() override
QmitkDropdownQuestionWidget(QWidget *parent=nullptr)
QmitkQuestionWidget * CreateAnother(QWidget *parent=nullptr) const override
Create a new instance of the derived question widget class type.
void SetQuestion(mitk::Forms::Question *question) override
Initialize the widget based on the given question.
Abstract base class for all types of question widgets used in a QmitkForm.
A Question whose possible responses are represented by a combo box.
Abstract base class for all types of questions used in a Form.
Definition: mitkQuestion.h:32