You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
latte-dock/app/settings/settingsdialog/delegates/layoutcmbitemdelegate.h

38 lines
658 B
C++

/*
SPDX-FileCopyrightText: 2020 Michail Vourlakos <mvourlakos@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef LAYOUTCMBITEMDELEGATE_H
#define LAYOUTCMBITEMDELEGATE_H
// local
#include "../../../data/layouticondata.h"
// Qt
#include <QStyledItemDelegate>
class QModelIndex;
class QWidget;
namespace Latte {
namespace Settings {
namespace Layout {
namespace Delegate {
class LayoutCmbItemDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
LayoutCmbItemDelegate(QObject *parent = 0);
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
};
}
}
}
}
#endif