2015-03-04 08:21:10 +00:00
/********************************************************************
KWin - the KDE window manager
This file is part of the KDE project .
Copyright ( C ) 2015 Martin Gräßlin < mgraesslin @ kde . org >
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/>.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# ifndef KWIN_SHELL_CLIENT_H
# define KWIN_SHELL_CLIENT_H
2015-03-16 08:14:04 +00:00
# include "abstract_client.h"
2015-03-04 08:21:10 +00:00
namespace KWayland
{
namespace Server
{
class ShellSurfaceInterface ;
2015-06-09 17:10:56 +00:00
class PlasmaShellSurfaceInterface ;
2015-06-09 22:59:53 +00:00
class QtExtendedSurfaceInterface ;
2015-03-04 08:21:10 +00:00
}
}
namespace KWin
{
2015-08-18 12:46:44 +00:00
class KWIN_EXPORT ShellClient : public AbstractClient
2015-03-04 08:21:10 +00:00
{
Q_OBJECT
public :
ShellClient ( KWayland : : Server : : ShellSurfaceInterface * surface ) ;
virtual ~ ShellClient ( ) ;
QStringList activities ( ) const override ;
QPoint clientPos ( ) const override ;
QSize clientSize ( ) const override ;
QRect transparentRect ( ) const override ;
bool shouldUnredirect ( ) const override ;
NET : : WindowType windowType ( bool direct = false , int supported_types = 0 ) const override ;
void debug ( QDebug & stream ) const override ;
double opacity ( ) const override ;
2015-03-16 08:13:19 +00:00
void setOpacity ( double opacity ) override ;
2015-03-04 08:21:10 +00:00
QByteArray windowRole ( ) const override ;
KWayland : : Server : : ShellSurfaceInterface * shellSurface ( ) const {
return m_shellSurface ;
}
2015-03-16 08:14:04 +00:00
void blockActivityUpdates ( bool b = true ) override ;
QString caption ( bool full = true , bool stripped = false ) const override ;
void closeWindow ( ) override ;
AbstractClient * findModal ( bool allow_itself = false ) override ;
bool isCloseable ( ) const override ;
2015-05-21 13:59:27 +00:00
bool isFullScreenable ( ) const override ;
2015-03-16 08:14:04 +00:00
bool isFullScreen ( ) const override ;
bool isMaximizable ( ) const override ;
bool isMinimizable ( ) const override ;
bool isMovable ( ) const override ;
bool isMovableAcrossScreens ( ) const override ;
bool isResizable ( ) const override ;
bool isShown ( bool shaded_is_shown ) const override ;
2015-05-23 07:02:11 +00:00
void hideClient ( bool hide ) override ;
2015-03-16 08:14:04 +00:00
MaximizeMode maximizeMode ( ) const override ;
2015-10-12 08:17:38 +00:00
QRect geometryRestore ( ) const override {
return m_geomMaximizeRestore ;
}
2015-03-16 08:14:04 +00:00
bool noBorder ( ) const override ;
const WindowRules * rules ( ) const override ;
void sendToScreen ( int screen ) override ;
void setFullScreen ( bool set , bool user = true ) override ;
void setNoBorder ( bool set ) override ;
void setOnAllActivities ( bool set ) override ;
void setQuickTileMode ( QuickTileMode mode , bool keyboard = false ) override ;
void setShortcut ( const QString & cut ) override ;
const QKeySequence & shortcut ( ) const override ;
void takeFocus ( ) override ;
void updateWindowRules ( Rules : : Types selection ) override ;
bool userCanSetFullScreen ( ) const override ;
bool userCanSetNoBorder ( ) const override ;
bool wantsInput ( ) const override ;
2015-05-21 08:46:12 +00:00
xcb_window_t window ( ) const override ;
2015-05-27 08:16:46 +00:00
using AbstractClient : : move ;
void move ( int x , int y , ForceGeometry_t force = NormalGeometrySet ) override ;
2015-05-27 09:48:33 +00:00
using AbstractClient : : resizeWithChecks ;
void resizeWithChecks ( int w , int h , ForceGeometry_t force = NormalGeometrySet ) override ;
2015-10-13 08:52:01 +00:00
using AbstractClient : : setGeometry ;
void setGeometry ( int x , int y , int w , int h , ForceGeometry_t force = NormalGeometrySet ) override ;
2015-06-19 22:14:49 +00:00
bool hasStrut ( ) const override ;
2015-03-16 08:14:04 +00:00
2015-08-18 12:40:26 +00:00
void setInternalFramebufferObject ( const QSharedPointer < QOpenGLFramebufferObject > & fbo ) override ;
2015-05-18 12:51:40 +00:00
quint32 windowId ( ) const {
return m_windowId ;
}
2015-05-21 08:31:19 +00:00
bool isInternal ( ) const ;
2015-06-06 01:26:24 +00:00
QWindow * internalWindow ( ) const {
return m_internalWindow ;
}
2015-05-18 12:51:40 +00:00
2015-06-09 17:10:56 +00:00
void installPlasmaShellSurface ( KWayland : : Server : : PlasmaShellSurfaceInterface * surface ) ;
2015-06-09 22:59:53 +00:00
void installQtExtendedSurface ( KWayland : : Server : : QtExtendedSurfaceInterface * surface ) ;
2015-06-09 17:10:56 +00:00
bool isInitialPositionSet ( ) const ;
2015-09-11 10:11:01 +00:00
bool isTransient ( ) const override ;
2015-09-11 11:31:41 +00:00
bool hasTransientPlacementHint ( ) const override ;
QPoint transientPlacementHint ( ) const override ;
2015-09-11 10:11:01 +00:00
2015-03-04 08:21:10 +00:00
protected :
void addDamage ( const QRegion & damage ) override ;
2015-03-16 08:14:04 +00:00
bool belongsToSameApplication ( const AbstractClient * other , bool active_hack ) const override ;
2015-07-07 14:15:58 +00:00
void doSetActive ( ) override ;
2015-09-17 09:06:59 +00:00
Layer layerForDock ( ) const override ;
2015-10-13 08:22:18 +00:00
void changeMaximize ( bool horizontal , bool vertical , bool adjust ) override ;
2015-03-04 08:21:10 +00:00
2015-05-19 10:03:53 +00:00
private Q_SLOTS :
void clientFullScreenChanged ( bool fullScreen ) ;
2015-03-04 08:21:10 +00:00
private :
2015-05-19 10:03:53 +00:00
void requestGeometry ( const QRect & rect ) ;
2015-10-13 08:52:01 +00:00
void doSetGeometry ( const QRect & rect ) ;
2015-03-04 08:21:10 +00:00
void destroyClient ( ) ;
2015-06-03 19:19:00 +00:00
void unmap ( ) ;
2015-05-18 12:51:40 +00:00
void createWindowId ( ) ;
void findInternalWindow ( ) ;
2015-05-20 06:27:48 +00:00
void updateInternalWindowGeometry ( ) ;
2015-06-19 23:11:42 +00:00
void updateIcon ( ) ;
2015-07-22 06:38:00 +00:00
void markAsMapped ( ) ;
2015-09-11 10:11:01 +00:00
void setTransient ( ) ;
2015-03-04 08:21:10 +00:00
static void deleteClient ( ShellClient * c ) ;
KWayland : : Server : : ShellSurfaceInterface * m_shellSurface ;
QSize m_clientSize ;
2015-05-19 10:03:53 +00:00
ClearablePoint m_positionAfterResize ; // co-ordinates saved from a requestGeometry call, real geometry will be updated after the next damage event when the client has resized
QRect m_geomFsRestore ; //size and position of the window before it was set to fullscreen
2015-04-30 11:48:59 +00:00
bool m_closing = false ;
2015-05-18 12:51:40 +00:00
quint32 m_windowId = 0 ;
QWindow * m_internalWindow = nullptr ;
2015-06-03 19:19:00 +00:00
bool m_unmapped = true ;
2015-06-07 01:28:38 +00:00
MaximizeMode m_maximizeMode = MaximizeRestore ;
QRect m_geomMaximizeRestore ; // size and position of the window before it was set to maximize
2015-06-08 19:27:55 +00:00
NET : : WindowType m_windowType = NET : : Normal ;
2015-06-09 17:10:56 +00:00
QPointer < KWayland : : Server : : PlasmaShellSurfaceInterface > m_plasmaShellSurface ;
2015-06-09 22:59:53 +00:00
QPointer < KWayland : : Server : : QtExtendedSurfaceInterface > m_qtExtendedSurface ;
2015-10-08 08:05:40 +00:00
bool m_fullScreen = false ;
2015-10-08 09:04:06 +00:00
bool m_transient = false ;
2015-03-04 08:21:10 +00:00
} ;
}
2015-10-05 15:35:53 +00:00
Q_DECLARE_METATYPE ( KWin : : ShellClient * )
2015-03-04 08:21:10 +00:00
# endif