-
Notifications
You must be signed in to change notification settings - Fork 286
/
Copy pathitemdelegate.h
64 lines (47 loc) · 1.79 KB
/
itemdelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
itemdelegate.h
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2016 Klarälvdalens Datakonsult AB, a KDAB Group company <[email protected]>
Author: Filipe Azevedo <[email protected]>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <[email protected]> for commercial licensing options.
*/
#ifndef GAMMARAY_ITEMDELEGATE_H
#define GAMMARAY_ITEMDELEGATE_H
#include "gammaray_ui_export.h"
#include <QStyledItemDelegate>
#include <QSet>
namespace GammaRay {
/** @brief A simple interface that avoid empty display role texts.
*/
class GAMMARAY_UI_EXPORT ItemDelegateInterface
{
public:
ItemDelegateInterface();
explicit ItemDelegateInterface(const QString &placeholderText);
// You can put 2 placeholders for row/column using %r and %c
QString placeholderText() const;
void setPlaceholderText(const QString &placeholderText);
// which columns do show place holders, default all (empty)
QSet<int> placeholderColumns() const;
void setPlaceholderColumns(const QSet<int> &placeholderColumns);
protected:
QString defaultDisplayText(const QModelIndex &index) const;
static const QWidget *widget(const QStyleOptionViewItem &option);
QStyle *style(const QStyleOptionViewItem &option) const;
private:
QString m_placeholderText;
QSet<int> m_placeholderColumns;
};
/** @brief A simple delegate that avoid empty display role texts.
*/
class GAMMARAY_UI_EXPORT ItemDelegate : public QStyledItemDelegate, public ItemDelegateInterface
{
Q_OBJECT
public:
explicit ItemDelegate(QObject *parent = nullptr);
void paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const override;
};
} // Namespace GammaRay
#endif // GAMMARAY_ITEMDELEGATE_H