2017-04-25 17:48:36 +03:00
/*
* Copyright 2016 Smith AR < audoban @ openmailbox . org >
* Michail Vourlakos < mvourlakos @ gmail . com >
*
* This file is part of Latte - Dock
*
* Latte - Dock 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 .
*
* Latte - Dock 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 WAYLANDINTERFACE_H
# define WAYLANDINTERFACE_H
# include "abstractwindowinterface.h"
# include "windowinfowrap.h"
# include <QObject>
2017-06-29 23:33:12 +03:00
# include <QMap>
2017-04-25 17:48:36 +03:00
# include <KWindowInfo>
# include <KWindowEffects>
2017-06-11 00:33:46 +03:00
# include <QSignalMapper>
# include <KWayland/Client/registry.h>
# include <KWayland/Client/connection_thread.h>
# include <KWayland/Client/plasmawindowmanagement.h>
# include <KWayland/Client/plasmashell.h>
# include <KWayland/Client/surface.h>
2017-04-25 17:48:36 +03:00
namespace Latte {
2018-03-02 00:53:28 +03:00
class DockCorona ;
2017-06-29 23:33:12 +03:00
namespace Private {
2018-01-13 13:55:13 +03:00
/**
* @ brief this class is use for create the struts inside wayland
*/
class GhostWindow ;
2017-06-29 23:33:12 +03:00
}
2018-07-03 22:15:45 +03:00
class WaylandInterface : public AbstractWindowInterface
{
2017-04-25 17:48:36 +03:00
Q_OBJECT
public :
explicit WaylandInterface ( QObject * parent = nullptr ) ;
~ WaylandInterface ( ) override ;
2017-06-16 00:56:55 +03:00
void setDockExtraFlags ( QWindow & view ) override ;
2017-06-29 23:50:11 +03:00
void setDockStruts ( QWindow & view , const QRect & rect
2017-06-16 00:56:55 +03:00
, Plasma : : Types : : Location location ) override ;
2018-01-21 12:53:15 +03:00
void setWindowOnActivities ( QWindow & view , const QStringList & activities ) override ;
2017-04-25 17:48:36 +03:00
2017-06-16 00:56:55 +03:00
void removeDockStruts ( QWindow & view ) const override ;
2017-04-25 17:48:36 +03:00
2017-06-09 01:10:49 +03:00
WindowId activeWindow ( ) const override ;
WindowInfoWrap requestInfo ( WindowId wid ) const override ;
2017-04-25 17:48:36 +03:00
WindowInfoWrap requestInfoActive ( ) const override ;
2017-06-09 01:10:49 +03:00
bool isOnCurrentDesktop ( WindowId wid ) const override ;
2017-06-21 03:06:04 +03:00
bool isOnCurrentActivity ( WindowId wid ) const override ;
2017-06-09 01:10:49 +03:00
const std : : list < WindowId > & windows ( ) const override ;
2017-04-25 17:48:36 +03:00
2018-01-26 20:46:02 +03:00
void setKeepAbove ( const QDialog & dialog , bool above = true ) const override ;
2017-04-25 17:48:36 +03:00
void skipTaskBar ( const QDialog & dialog ) const override ;
2017-06-16 00:56:55 +03:00
void slideWindow ( QWindow & view , Slide location ) const override ;
void enableBlurBehind ( QWindow & view ) const override ;
2017-04-25 17:48:36 +03:00
2018-10-28 22:10:08 +03:00
void requestToggleMaximized ( WindowId wid ) const override ;
void requestMoveWindow ( WindowId wid , QPoint from ) const override ;
bool windowCanBeDragged ( WindowId wid ) const ;
2018-10-28 11:03:22 +03:00
2018-03-28 20:39:52 +03:00
void setEdgeStateFor ( QWindow * view , bool active ) const override ;
2018-03-02 00:53:28 +03:00
void initWindowManagement ( KWayland : : Client : : PlasmaWindowManagement * windowManagement ) ;
2017-04-25 17:48:36 +03:00
private :
2017-06-11 00:33:46 +03:00
void init ( ) ;
inline bool isValidWindow ( const KWayland : : Client : : PlasmaWindow * w ) const ;
void windowCreatedProxy ( KWayland : : Client : : PlasmaWindow * w ) ;
2018-10-28 22:10:08 +03:00
KWayland : : Client : : PlasmaWindow * windowFor ( WindowId wid ) const ;
2018-03-02 00:53:28 +03:00
KWayland : : Client : : PlasmaShell * waylandDockCoronaInterface ( ) const ;
2017-04-25 17:48:36 +03:00
2017-06-11 00:33:46 +03:00
QSignalMapper * mapper { nullptr } ;
2017-06-29 23:33:12 +03:00
friend class Private : : GhostWindow ;
mutable QMap < WindowId , Private : : GhostWindow * > m_ghostWindows ;
2018-03-02 00:53:28 +03:00
KWayland : : Client : : PlasmaWindowManagement * m_windowManagement { nullptr } ;
DockCorona * m_corona { nullptr } ;
2017-04-25 17:48:36 +03:00
} ;
2017-06-29 23:33:12 +03:00
2017-04-25 17:48:36 +03:00
}
# endif // WAYLANDINTERFACE_H