add more spacing
[personal-kdebase.git] / runtime / kstart / kstart.h
blob37e85d6b6417d5de4e68b3ccf378bd22fef5db19
1 /*
2 * kstart.h Part of the KDE project.
4 * Copyright (C) 1997-2000 Matthias Ettrich <ettrich@kde.org>
5 * Port to NETWM by David Faure <faure@kde.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License or (at your option) version 3 or any later version
11 * accepted by the membership of KDE e.V. (or its successor approved
12 * by the membership of KDE e.V.), which shall act as a proxy
13 * defined in Section 14 of version 3 of the license.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #ifndef KSTART_H
26 #define KSTART_H
28 #include <QtGui/QWidgetList>
29 #include <QObject>
31 class KStart: public QObject {
32 Q_OBJECT
34 public:
35 KStart();
36 ~KStart(){}
38 public Q_SLOTS:
39 void windowAdded(WId);
41 private:
43 void applyStyle(WId );
44 void sendRule();
48 #endif