You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
429 B
C
37 lines
429 B
C
15 years ago
|
/*
|
||
|
* 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
|
||
|
|