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.
30 lines
638 B
30 lines
638 B
/***************************************************************** |
|
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" |
|
|
|
typedef QValueList<Workspace*> WorkspaceList; |
|
class Application : public KApplication |
|
{ |
|
public: |
|
Application(); |
|
~Application(); |
|
|
|
void commitData( QSessionManager& sm ); |
|
void saveState( QSessionManager& sm ); |
|
|
|
protected: |
|
bool x11EventFilter( XEvent * ); |
|
|
|
private: |
|
WorkspaceList workspaces; |
|
}; |
|
|
|
|
|
#endif
|
|
|