Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
QmitkScreenshotQuestionWidget.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 QmitkScreenshotQuestionWidget_h
14 #define QmitkScreenshotQuestionWidget_h
15 
16 #include <QmitkQuestionWidget.h>
17 #include <mitkScreenshotQuestion.h>
18 
20 
21 class QMenu;
22 class QPushButton;
23 
25 {
26  Q_OBJECT
27 
28 public:
29  explicit QmitkScreenshotQuestionWidget(QWidget* parent = nullptr);
31 
32  QmitkQuestionWidget* CreateAnother(QWidget* parent = nullptr) const override;
34  void SetQuestion(mitk::Forms::Question* question) override;
35  void Reset() override;
36 
37 private:
38  void OnTakeScreenshotButtonClicked();
39  void OnPopupMenuTriggered(const QString& action);
40  void AddScreenshotWidget(const QString& screenshotFileName);
41  void OnRemoveScreenshot(QmitkScreenshotWidget* sender);
42 
44 
45  QVBoxLayout* m_Layout;
46  QPushButton* m_TakeScreenshotButton;
47  QMenu* m_PopupMenu;
48 };
49 
50 #endif
#define MITKFORMSUI_EXPORT
Abstract base class for all types of question widgets used in a QmitkForm.
void Reset() override
Reset the state of the GUI as if no interaction would have been happened yet.
QmitkScreenshotQuestionWidget(QWidget *parent=nullptr)
mitk::Forms::Question * GetQuestion() const override
Get the question associated with this widget.
~QmitkScreenshotQuestionWidget() override
void SetQuestion(mitk::Forms::Question *question) override
Initialize the widget based on the given question.
QmitkQuestionWidget * CreateAnother(QWidget *parent=nullptr) const override
Create a new instance of the derived question widget class type.
Abstract base class for all types of questions used in a Form.
Definition: mitkQuestion.h:32