blob: 0b5013387850f7e32917e4b57d89f52cc4904671 (
plain)
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
35
36
|
/*
* kstart.h Part of the KDE project.
*
* Copyright (C) 1997-2000 Matthias Ettrich <ettrich@kde.org>
*
* Port to NETWM by David Faure <faure@kde.org>
*
*/
#ifndef KSTART_H
#define KSTART_H
#include <qobject.h>
class KWinModule;
class KStart: public QObject {
Q_OBJECT
public:
KStart();
~KStart(){};
public slots:
void windowAdded(WId);
private:
void applyStyle(WId );
void sendRule();
};
#endif
|