mirror of
https://github.com/KDE/latte-dock.git
synced 2025-03-05 12:58:18 +03:00
33 lines
976 B
C++
33 lines
976 B
C++
#ifndef ACTIVITYCMBBOXDELEGATE_H
|
|
#define ACTIVITYCMBBOXDELEGATE_H
|
|
|
|
#include <QItemDelegate>
|
|
|
|
class QModelIndex;
|
|
class QWidget;
|
|
class QVariant;
|
|
|
|
namespace Latte {
|
|
class LayoutManager;
|
|
class SettingsDialog;
|
|
}
|
|
|
|
class ActivityCmbBoxDelegate : public QItemDelegate {
|
|
Q_OBJECT
|
|
public:
|
|
ActivityCmbBoxDelegate(QObject *parent);
|
|
|
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
void setEditorData(QWidget *editor, const QModelIndex &index) const;
|
|
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
|
|
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
private:
|
|
QString assignedActivitiesText(const QModelIndex &index) const;
|
|
|
|
Latte::SettingsDialog *m_settingsDialog{nullptr};
|
|
};
|
|
|
|
#endif
|