1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/*
* kstart.h Part of the KDE project.
*
* SPDX-FileCopyrightText: 1997-2000 Matthias Ettrich <ettrich@kde.org>
* SPDX-FileCopyrightText: David Faure <faure@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*
*/
#ifndef KSTART_H
#define KSTART_H
#include <QWidget>
class KStart : public QObject
{
Q_OBJECT
public:
KStart();
~KStart() override
{
}
public Q_SLOTS:
void windowAdded(WId);
private:
void applyStyle(WId);
void sendRule();
};
#endif
|