c29c66832d
of decoration or the actual window contents. svn path=/trunk/KDE/kdebase/workspace/; revision=689554
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
/*****************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2006 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
License. See the file "COPYING" for the exact licensing terms.
|
|
******************************************************************/
|
|
|
|
#ifndef KWIN_UNMANAGED_H
|
|
#define KWIN_UNMANAGED_H
|
|
|
|
#include <netwm.h>
|
|
|
|
#include "toplevel.h"
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
class Unmanaged
|
|
: public Toplevel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Unmanaged( Workspace *ws );
|
|
bool windowEvent( XEvent* e );
|
|
void release();
|
|
bool track( Window w );
|
|
static void deleteUnmanaged( Unmanaged* c, allowed_t );
|
|
virtual int desktop() const;
|
|
virtual QPoint clientPos() const;
|
|
virtual QSize clientSize() const;
|
|
protected:
|
|
virtual void debug( kdbgstream& stream ) const;
|
|
private:
|
|
virtual ~Unmanaged(); // use release()
|
|
// handlers for X11 events
|
|
void mapNotifyEvent( XMapEvent* e );
|
|
void unmapNotifyEvent( XUnmapEvent*e );
|
|
void configureNotifyEvent( XConfigureEvent* e );
|
|
};
|
|
|
|
} // namespace
|
|
|
|
#endif
|