File indexing completed on 2024-04-28 16:44:28

0001 /*
0002  * kstart.h Part of the KDE project.
0003  *
0004  * SPDX-FileCopyrightText: 1997-2000 Matthias Ettrich <ettrich@kde.org>
0005  * SPDX-FileCopyrightText: David Faure <faure@kde.org>
0006  *
0007  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0008  *
0009  */
0010 
0011 #ifndef KSTART_H
0012 #define KSTART_H
0013 
0014 #include <QWidget>
0015 
0016 class KStart : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     KStart();
0022     ~KStart() override
0023     {
0024     }
0025 
0026 public Q_SLOTS:
0027     void windowAdded(WId);
0028 
0029 private:
0030     void applyStyle(WId);
0031     void sendRule();
0032 };
0033 
0034 #endif