You can not 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
431 B
37 lines
431 B
/*
|
|
* 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
|
|
|