Skip to content

File launcheritemdelegate.h#

File List > launcher > launcheritemdelegate.h

Go to the documentation of this file.


// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors

#pragma once

#include "src/utils/desktopfileparse.h"
#include <QStyledItemDelegate>

class LauncherItemDelegate : public QStyledItemDelegate
{
    Q_OBJECT
public:
    explicit LauncherItemDelegate(QObject* parent = nullptr);

    void paint(QPainter* painter,
               const QStyleOptionViewItem& option,
               const QModelIndex& index) const override;

    QSize sizeHint(const QStyleOptionViewItem& option,
                   const QModelIndex& index) const override;
};