You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
712 B

/*
SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#pragma once
#include "abstracttasksmodel.h"
namespace TaskManager
{
class TASKMANAGER_EXPORT WaylandStartupTasksModel : public AbstractTasksModel
{
Q_OBJECT
public:
explicit WaylandStartupTasksModel(QObject *parent = nullptr);
~WaylandStartupTasksModel() override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace TaskManager