Medical Imaging Interaction Toolkit  2025.12.02
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
#define MITKSEGMENTATIONUI_EXPORT
An item delegate for rendering and editing properties that can be toggled (e.g. visibility).
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override
QmitkLabelToggleItemDelegate(const QIcon &onIcon, const QIcon &offIcon, QObject *parent=nullptr)
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override
bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index) override