2006-07-04 20:02:07 +00:00
|
|
|
/*****************************************************************
|
|
|
|
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
|
|
|
|
|
2006-07-05 20:52:57 +00:00
|
|
|
#include <netwm.h>
|
|
|
|
|
2006-07-04 20:02:07 +00:00
|
|
|
#include "toplevel.h"
|
|
|
|
|
|
|
|
namespace KWinInternal
|
|
|
|
{
|
|
|
|
|
|
|
|
class Unmanaged
|
|
|
|
: public Toplevel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Unmanaged( Workspace *ws );
|
|
|
|
virtual ~Unmanaged();
|
|
|
|
bool windowEvent( XEvent* e );
|
|
|
|
void release();
|
|
|
|
bool track( Window w );
|
|
|
|
static void deleteUnmanaged( Unmanaged* c, allowed_t );
|
2006-07-05 22:26:34 +00:00
|
|
|
virtual double opacity() const;
|
2006-07-04 20:02:07 +00:00
|
|
|
protected:
|
|
|
|
virtual void debug( kdbgstream& stream ) const;
|
|
|
|
private:
|
|
|
|
// handlers for X11 events
|
|
|
|
void mapNotifyEvent( XMapEvent* e );
|
|
|
|
void unmapNotifyEvent( XUnmapEvent*e );
|
|
|
|
void configureNotifyEvent( XConfigureEvent* e );
|
2006-07-05 20:52:57 +00:00
|
|
|
NETWinInfo* info;
|
2006-07-04 20:02:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|