QortalOS Brooklyn for Raspberry Pi 4
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.
 
 
 
 
 
 

48 lines
1.2 KiB

/*
SPDX-FileCopyrightText: 2016 Eike Hein <[email protected]>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#pragma once
#include "abstracttasksproxymodeliface.h"
#include "taskmanager_export.h"
#include <QIdentityProxyModel>
namespace TaskManager
{
/**
* @short A tasks model for startup notifications.
*
* This model presents tasks sourced from startup notifications.
*
* Startup notifications are given a timeout sourced from klaunchrc, falling
* back to a default of 5 seconds if no configuration is present.
*
* Startup tasks are removed 500 msec after cancellation or timeout to
* overlap with window tasks appearing in window task models.
*
* @author Eike Hein <[email protected]>
*/
class TASKMANAGER_EXPORT StartupTasksModel : public QIdentityProxyModel, public AbstractTasksProxyModelIface
{
Q_OBJECT
public:
explicit StartupTasksModel(QObject *parent = nullptr);
~StartupTasksModel() override;
QHash<int, QByteArray> roleNames() const override;
protected:
QModelIndex mapIfaceToSource(const QModelIndex &index) const override;
private:
class Private;
QScopedPointer<Private> d;
};
}