42291d5b87
svn path=/trunk/kdebase/kwin/; revision=93375
26 lines
552 B
C++
26 lines
552 B
C++
/*****************************************************************
|
|
kwin - the KDE window manager
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
******************************************************************/
|
|
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <kapp.h>
|
|
#include "workspace.h"
|
|
|
|
class Application : public KApplication
|
|
{
|
|
public:
|
|
Application();
|
|
~Application();
|
|
|
|
void commitData( QSessionManager& sm );
|
|
void saveState( QSessionManager& sm );
|
|
|
|
protected:
|
|
bool x11EventFilter( XEvent * );
|
|
};
|
|
|
|
|
|
#endif
|