2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2006 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_UNMANAGED_H
|
|
|
|
#define KWIN_UNMANAGED_H
|
|
|
|
|
|
|
|
#include <netwm.h>
|
|
|
|
|
|
|
|
#include "toplevel.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class Unmanaged
|
|
|
|
: public Toplevel
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
2013-05-08 11:39:06 +00:00
|
|
|
explicit Unmanaged();
|
2013-07-26 09:16:50 +00:00
|
|
|
bool windowEvent(xcb_generic_event_t *e);
|
2012-04-22 07:27:53 +00:00
|
|
|
void release(bool on_shutdown = false);
|
2011-01-30 14:34:42 +00:00
|
|
|
bool track(Window w);
|
2013-04-26 07:47:45 +00:00
|
|
|
static void deleteUnmanaged(Unmanaged* c);
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual int desktop() const;
|
|
|
|
virtual QStringList activities() const;
|
|
|
|
virtual QPoint clientPos() const;
|
|
|
|
virtual QSize clientSize() const;
|
|
|
|
virtual QRect transparentRect() const;
|
2012-04-07 14:43:27 +00:00
|
|
|
virtual Layer layer() const {
|
|
|
|
return UnmanagedLayer;
|
|
|
|
}
|
2012-09-06 07:09:31 +00:00
|
|
|
NET::WindowType windowType(bool direct = false, int supported_types = 0) const;
|
2013-07-01 06:37:59 +00:00
|
|
|
|
|
|
|
void sendPointerButtonEvent(uint32_t button, InputRedirection::PointerButtonState state) override;
|
|
|
|
void sendPointerAxisEvent(InputRedirection::PointerAxis axis, qreal delta) override;
|
2013-07-02 09:44:18 +00:00
|
|
|
void sendKeybordKeyEvent(uint32_t key, InputRedirection::KeyboardKeyState state) override;
|
2011-01-30 14:34:42 +00:00
|
|
|
protected:
|
|
|
|
virtual void debug(QDebug& stream) const;
|
|
|
|
virtual bool shouldUnredirect() const;
|
|
|
|
private:
|
|
|
|
virtual ~Unmanaged(); // use release()
|
2007-04-29 17:35:43 +00:00
|
|
|
// handlers for X11 events
|
2013-07-26 11:04:12 +00:00
|
|
|
void configureNotifyEvent(xcb_configure_notify_event_t *e);
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|