blob: c35d460d34d20889e18c88cfcf6afdac063c74c9 (
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 <tqobject.h>
class KWinModule;
class KStart: public TQObject {
Q_OBJECT
public:
KStart();
~KStart(){};
public slots:
void windowAdded(WId);
private:
void applyStyle(WId );
void sendRule();
};
#endif
|