Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
QmitkMultiNodeSelectionWidget.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 QmitkMultiNodeSelectionWidget_h
14 #define QmitkMultiNodeSelectionWidget_h
15 
16 #include <MitkQtWidgetsExports.h>
17 
18 #include <ui_QmitkMultiNodeSelectionWidget.h>
19 
20 #include <mitkDataStorage.h>
21 #include <mitkWeakPointer.h>
22 #include <mitkNodePredicateBase.h>
23 
26 
28 
34 {
35  Q_OBJECT
36 
37 public:
38  explicit QmitkMultiNodeSelectionWidget(QWidget* parent = nullptr);
39 
41 
48  using SelectionCheckFunctionType = std::function<std::string(const NodeList &)>;
56 
59 
60 Q_SIGNALS:
61  void DialogClosed();
62 
63 public Q_SLOTS:
65 
66 protected Q_SLOTS:
67  void OnClearSelection(const mitk::DataNode* node);
68 
69 protected:
70  void changeEvent(QEvent *event) override;
71 
72  void UpdateInfo() override;
73  void OnInternalSelectionChanged() override;
74 
75  bool AllowEmissionOfSelection(const NodeList& emissionCandidates) const override;
76 
78 
80  mutable std::string m_CheckResponse;
81 
82  Ui_QmitkMultiNodeSelectionWidget m_Controls;
83 };
84 
85 #endif
#define MITKQTWIDGETS_EXPORT
Abstract base class for the selection of data from a data storage.
QList< mitk::DataNode::Pointer > NodeList
Widget that allows to perform and represents a multiple node selection.
void changeEvent(QEvent *event) override
bool AllowEmissionOfSelection(const NodeList &emissionCandidates) const override
void SetSelectionCheckFunction(const SelectionCheckFunctionType &checkFunction)
A selection check function can be set. If set the widget uses this function to check the made/set sel...
QmitkSimpleTextOverlayWidget * m_Overlay
Ui_QmitkMultiNodeSelectionWidget m_Controls
QmitkMultiNodeSelectionWidget(QWidget *parent=nullptr)
std::function< std::string(const NodeList &)> SelectionCheckFunctionType
Helper function that is used to check the given selection for consistency. Returning an empty string ...
SelectionCheckFunctionType m_CheckFunction
bool CurrentSelectionViolatesCheckFunction() const
void OnClearSelection(const mitk::DataNode *node)
void OnInternalSelectionChanged() override
Class for nodes of the DataTree.
Definition: mitkDataNode.h:64