Medical Imaging Interaction Toolkit  2023.12.99-f298153c
Medical Imaging Interaction Toolkit
QmitkLabelToggleItemDelegate.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 QmitkLabelToggleItemDelegate_h
14 #define QmitkLabelToggleItemDelegate_h
15 
16 
17 #include <QStyledItemDelegate>
18 #include <QIcon>
19 
21 
25 class MITKSEGMENTATIONUI_EXPORT QmitkLabelToggleItemDelegate : public QStyledItemDelegate
26 {
27  Q_OBJECT
28 
29 public:
33  explicit QmitkLabelToggleItemDelegate(const QIcon& onIcon, const QIcon& offIcon, QObject* parent = nullptr);
34 
35  bool editorEvent(QEvent* event, QAbstractItemModel* model, const QStyleOptionViewItem& option,
36  const QModelIndex& index) override;
37 
38  void paint(QPainter* painter, const QStyleOptionViewItem& option,
39  const QModelIndex& index) const override;
40 
41  QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const override;
42 
43 protected:
44  QIcon m_OnIcon;
45  QIcon m_OffIcon;
46 };
47 
48 #endif
QmitkLabelToggleItemDelegate::m_OnIcon
QIcon m_OnIcon
Definition: QmitkLabelToggleItemDelegate.h:44
MITKSEGMENTATIONUI_EXPORT
#define MITKSEGMENTATIONUI_EXPORT
Definition: MitkSegmentationUIExports.h:15
QmitkLabelToggleItemDelegate::m_OffIcon
QIcon m_OffIcon
Definition: QmitkLabelToggleItemDelegate.h:45
QmitkLabelToggleItemDelegate
An item delegate for rendering and editing properties that can be toggled (e.g. visibility).
Definition: QmitkLabelToggleItemDelegate.h:25
MitkSegmentationUIExports.h