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.
31 lines
685 B
31 lines
685 B
/* |
|
SPDX-FileCopyrightText: 2006-2007 Stephen Leaf <smileaf@gmail.com> |
|
SPDX-FileCopyrightText: 2008 Montel Laurent <montel@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <KQuickAddons/ConfigModule> |
|
|
|
#include "autostartmodel.h" |
|
|
|
class Autostart : public KQuickAddons::ConfigModule |
|
{ |
|
Q_OBJECT |
|
Q_PROPERTY(AutostartModel *model READ model CONSTANT) |
|
|
|
public: |
|
explicit Autostart(QObject *parent, const KPluginMetaData &data, const QVariantList &); |
|
~Autostart() override; |
|
|
|
void load() override; |
|
void save() override; |
|
void defaults() override; |
|
|
|
AutostartModel *model() const; |
|
|
|
private: |
|
AutostartModel *m_model; |
|
};
|
|
|