2000-03-24 22:23:02 +00:00
|
|
|
/*****************************************************************
|
|
|
|
kwin - the KDE window manager
|
2002-04-02 12:36:24 +00:00
|
|
|
|
2000-03-24 22:23:02 +00:00
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
|
|
******************************************************************/
|
1999-08-19 23:26:42 +00:00
|
|
|
#ifndef MAIN_H
|
|
|
|
#define MAIN_H
|
|
|
|
|
2002-05-14 09:31:40 +00:00
|
|
|
#include <kapplication.h>
|
1999-08-19 23:26:42 +00:00
|
|
|
#include "workspace.h"
|
|
|
|
|
1999-11-01 23:41:44 +00:00
|
|
|
class Application : public KApplication
|
1999-08-19 23:26:42 +00:00
|
|
|
{
|
|
|
|
public:
|
2000-01-12 15:08:42 +00:00
|
|
|
Application();
|
1999-08-19 23:26:42 +00:00
|
|
|
~Application();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool x11EventFilter( XEvent * );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|