2017-01-03 01:05:30 +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/>.
*/
2016-12-25 10:25:27 +03:00
# include "visibilitymanager.h"
2018-02-03 12:34:13 +03:00
2018-12-02 03:05:52 +03:00
// local
2018-11-29 22:30:00 +03:00
# include "positioner.h"
2018-03-28 20:39:52 +03:00
# include "screenedgeghostwindow.h"
2018-12-06 13:15:58 +03:00
# include "view.h"
2018-12-06 15:35:34 +03:00
# include "../lattecorona.h"
2018-02-03 12:34:13 +03:00
# include "../layoutmanager.h"
2018-08-02 14:23:01 +03:00
# include "../screenpool.h"
2018-12-02 02:29:18 +03:00
# include "../wm/windowinfowrap.h"
2018-12-07 19:55:35 +03:00
# include "../../liblatte2/extras.h"
2016-12-25 10:25:27 +03:00
2018-12-02 03:05:52 +03:00
// Qt
# include <QDebug>
// KDE
2018-03-28 20:39:52 +03:00
# include <KWayland/Client/plasmashell.h>
# include <KWayland/Client/surface.h>
2016-12-29 08:40:35 +03:00
namespace Latte {
2018-12-09 01:29:35 +03:00
namespace ViewPart {
2016-12-25 10:25:27 +03:00
2018-12-20 19:59:38 +03:00
//! BEGIN: VisiblityManager implementation
VisibilityManager : : VisibilityManager ( PlasmaQuick : : ContainmentView * view )
: QObject ( view )
2016-12-29 08:40:35 +03:00
{
2018-12-20 19:59:38 +03:00
qDebug ( ) < < " VisibilityManager creating... " ;
2018-12-06 13:51:15 +03:00
m_latteView = qobject_cast < Latte : : View * > ( view ) ;
2018-12-06 15:35:34 +03:00
m_corona = qobject_cast < Latte : : Corona * > ( view - > corona ( ) ) ;
wm = m_corona - > wm ( ) ;
2017-01-16 22:07:49 +03:00
2018-12-06 13:51:15 +03:00
if ( m_latteView ) {
2018-12-20 19:59:38 +03:00
connect ( m_latteView , & Latte : : View : : absGeometryChanged , this , & VisibilityManager : : setViewGeometry ) ;
connect ( m_latteView , & Latte : : View : : eventTriggered , this , & VisibilityManager : : viewEventManager ) ;
2016-12-30 14:46:56 +03:00
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
if ( m_corona ) {
connect ( this , & VisibilityManager : : modeChanged , m_corona , & Plasma : : Corona : : availableScreenRectChanged ) ;
}
m_timerStartUp . setInterval ( 5000 ) ;
m_timerStartUp . setSingleShot ( true ) ;
m_timerCheckWindows . setInterval ( 350 ) ;
m_timerCheckWindows . setSingleShot ( true ) ;
m_timerShow . setSingleShot ( true ) ;
m_timerHide . setSingleShot ( true ) ;
connect ( & m_timerCheckWindows , & QTimer : : timeout , this , & VisibilityManager : : checkAllWindows ) ;
connect ( & m_timerShow , & QTimer : : timeout , this , [ & ] ( ) {
if ( m_isHidden ) {
2017-01-28 20:34:03 +03:00
// qDebug() << "must be shown";
2018-12-20 19:59:38 +03:00
emit mustBeShown ( ) ;
2017-01-02 09:04:10 +03:00
}
} ) ;
2018-12-20 19:59:38 +03:00
connect ( & m_timerHide , & QTimer : : timeout , this , [ & ] ( ) {
if ( ! m_blockHiding & & ! m_isHidden & & ! dragEnter ) {
2017-01-28 20:34:03 +03:00
// qDebug() << "must be hide";
2018-12-20 19:59:38 +03:00
emit mustBeHide ( ) ;
2017-01-02 09:04:10 +03:00
}
} ) ;
2018-12-20 19:59:38 +03:00
wm - > setViewExtraFlags ( * m_latteView ) ;
wm - > addView ( m_latteView - > winId ( ) ) ;
2017-02-27 02:43:48 +03:00
restoreConfig ( ) ;
2016-12-29 08:40:35 +03:00
}
2016-12-25 10:25:27 +03:00
2018-12-20 19:59:38 +03:00
VisibilityManager : : ~ VisibilityManager ( )
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
qDebug ( ) < < " VisibilityManager deleting... " ;
wm - > removeViewStruts ( * m_latteView ) ;
wm - > removeView ( m_latteView - > winId ( ) ) ;
2018-03-28 20:39:52 +03:00
if ( edgeGhostWindow ) {
edgeGhostWindow - > deleteLater ( ) ;
}
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
Types : : Visibility VisibilityManager : : mode ( ) const
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
return m_mode ;
}
void VisibilityManager : : setMode ( Latte : : Types : : Visibility mode )
{
if ( m_mode = = mode )
2016-12-30 10:17:38 +03:00
return ;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
Q_ASSERT_X ( m_mode ! = Types : : None , staticMetaObject . className ( ) , " set visibility to Types::None " ) ;
2017-02-27 02:43:48 +03:00
2016-12-30 10:17:38 +03:00
// clear mode
for ( auto & c : connections ) {
disconnect ( c ) ;
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
if ( m_mode ! = Types : : DodgeAllWindows & & ! enabledDynamicBackgroundFlag ) {
2017-12-24 21:54:45 +03:00
windows . clear ( ) ;
}
2018-12-20 19:59:38 +03:00
if ( m_mode = = Types : : AlwaysVisible ) {
wm - > removeViewStruts ( * m_latteView ) ;
2017-03-12 12:01:27 +03:00
} else {
connections [ 3 ] = connect ( wm , & WindowSystem : : currentDesktopChanged
2017-03-12 23:14:30 +03:00
, this , [ & ] {
2017-03-12 12:01:27 +03:00
if ( raiseOnDesktopChange )
2018-12-06 17:17:35 +03:00
raiseViewTemporarily ( ) ;
2017-03-12 12:01:27 +03:00
} ) ;
connections [ 4 ] = connect ( wm , & WindowSystem : : currentActivityChanged
2017-03-12 23:14:30 +03:00
, this , [ & ] ( ) {
if ( raiseOnActivityChange )
2018-12-06 17:17:35 +03:00
raiseViewTemporarily ( ) ;
2017-03-12 23:14:30 +03:00
else
updateHiddenState ( ) ;
2017-03-12 12:01:27 +03:00
} ) ;
}
2018-12-20 19:59:38 +03:00
m_timerShow . stop ( ) ;
m_timerHide . stop ( ) ;
m_timerCheckWindows . stop ( ) ;
m_mode = mode ;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
switch ( m_mode ) {
2018-12-07 19:55:35 +03:00
case Types : : AlwaysVisible : {
2018-03-28 20:39:52 +03:00
//set wayland visibility mode
2018-12-06 13:51:15 +03:00
if ( m_latteView - > surface ( ) ) {
m_latteView - > surface ( ) - > setPanelBehavior ( KWayland : : Client : : PlasmaShellSurface : : PanelBehavior : : WindowsGoBelow ) ;
2018-03-28 20:39:52 +03:00
}
2018-12-20 19:59:38 +03:00
if ( m_latteView - > containment ( ) & & ! m_latteView - > inEditMode ( ) & & m_latteView - > screen ( ) ) {
2018-01-13 21:00:03 +03:00
updateStrutsBasedOnLayoutsAndActivities ( ) ;
2017-03-23 08:03:45 +03:00
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
connections [ 0 ] = connect ( m_latteView - > containment ( ) , & Plasma : : Containment : : locationChanged
2017-01-16 21:24:46 +03:00
, this , [ & ] ( ) {
2018-12-06 13:51:15 +03:00
if ( m_latteView - > inEditMode ( ) )
2018-12-20 19:59:38 +03:00
wm - > removeViewStruts ( * m_latteView ) ;
2017-01-14 00:33:42 +03:00
} ) ;
2018-12-06 13:51:15 +03:00
connections [ 1 ] = connect ( m_latteView , & Latte : : View : : inEditModeChanged
2018-02-12 17:11:33 +03:00
, this , [ & ] ( ) {
2018-12-20 19:59:38 +03:00
if ( ! m_latteView - > inEditMode ( ) & & ! m_latteView - > positioner ( ) - > inLocationChangeAnimation ( ) & & m_latteView - > screen ( ) )
wm - > setViewStruts ( * m_latteView , m_viewGeometry , m_latteView - > containment ( ) - > location ( ) ) ;
2017-01-14 00:33:42 +03:00
} ) ;
2018-01-13 20:27:32 +03:00
2018-12-07 19:55:35 +03:00
if ( m_corona & & m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Types : : MultipleLayouts ) {
2018-12-06 15:35:34 +03:00
connections [ 2 ] = connect ( m_corona - > activitiesConsumer ( ) , & KActivities : : Consumer : : currentActivityChanged , this , [ & ] ( ) {
2018-01-13 21:00:03 +03:00
updateStrutsBasedOnLayoutsAndActivities ( ) ;
2018-01-13 20:27:32 +03:00
} ) ;
2018-12-06 13:51:15 +03:00
connections [ 3 ] = connect ( m_latteView , & Latte : : View : : activitiesChanged , this , [ & ] ( ) {
2018-01-14 14:21:11 +03:00
updateStrutsBasedOnLayoutsAndActivities ( ) ;
} ) ;
2018-01-13 20:27:32 +03:00
}
2018-12-06 17:17:35 +03:00
raiseView ( true ) ;
2016-12-30 10:24:04 +03:00
}
2016-12-30 10:17:38 +03:00
break ;
2017-01-16 22:07:49 +03:00
2018-12-07 19:55:35 +03:00
case Types : : AutoHide : {
2018-03-28 20:39:52 +03:00
//set wayland visibility mode
2018-12-06 13:51:15 +03:00
if ( m_latteView - > surface ( ) ) {
m_latteView - > surface ( ) - > setPanelBehavior ( KWayland : : Client : : PlasmaShellSurface : : PanelBehavior : : AutoHide ) ;
2018-03-28 20:39:52 +03:00
}
2018-12-20 19:59:38 +03:00
raiseView ( m_containsMouse ) ;
2016-12-30 10:24:04 +03:00
}
2016-12-30 10:17:38 +03:00
break ;
2017-01-16 22:07:49 +03:00
2018-12-07 19:55:35 +03:00
case Types : : DodgeActive : {
2018-03-28 20:39:52 +03:00
//set wayland visibility mode
2018-12-06 13:51:15 +03:00
if ( m_latteView - > surface ( ) ) {
m_latteView - > surface ( ) - > setPanelBehavior ( KWayland : : Client : : PlasmaShellSurface : : PanelBehavior : : AutoHide ) ;
2018-03-28 20:39:52 +03:00
}
2017-03-12 12:01:27 +03:00
connections [ 0 ] = connect ( wm , & WindowSystem : : activeWindowChanged
2018-12-20 19:59:38 +03:00
, this , & VisibilityManager : : dodgeActive ) ;
2017-03-12 12:01:27 +03:00
connections [ 1 ] = connect ( wm , & WindowSystem : : windowChanged
2018-12-20 19:59:38 +03:00
, this , & VisibilityManager : : dodgeActive ) ;
2016-12-30 10:24:04 +03:00
dodgeActive ( wm - > activeWindow ( ) ) ;
2016-12-30 10:17:38 +03:00
}
2016-12-30 10:24:04 +03:00
break ;
2017-01-16 22:07:49 +03:00
2018-12-07 19:55:35 +03:00
case Types : : DodgeMaximized : {
2018-03-28 20:39:52 +03:00
//set wayland visibility mode
2018-12-06 13:51:15 +03:00
if ( m_latteView - > surface ( ) ) {
m_latteView - > surface ( ) - > setPanelBehavior ( KWayland : : Client : : PlasmaShellSurface : : PanelBehavior : : AutoHide ) ;
2018-03-28 20:39:52 +03:00
}
2017-03-12 12:01:27 +03:00
connections [ 0 ] = connect ( wm , & WindowSystem : : activeWindowChanged
2018-12-20 19:59:38 +03:00
, this , & VisibilityManager : : dodgeMaximized ) ;
2017-03-12 12:01:27 +03:00
connections [ 1 ] = connect ( wm , & WindowSystem : : windowChanged
2018-12-20 19:59:38 +03:00
, this , & VisibilityManager : : dodgeMaximized ) ;
2017-01-02 09:04:10 +03:00
dodgeMaximized ( wm - > activeWindow ( ) ) ;
2016-12-30 10:24:04 +03:00
}
break ;
2017-01-16 22:07:49 +03:00
2018-12-07 19:55:35 +03:00
case Types : : DodgeAllWindows : {
2018-03-28 20:39:52 +03:00
//set wayland visibility mode
2018-12-06 13:51:15 +03:00
if ( m_latteView - > surface ( ) ) {
m_latteView - > surface ( ) - > setPanelBehavior ( KWayland : : Client : : PlasmaShellSurface : : PanelBehavior : : AutoHide ) ;
2018-03-28 20:39:52 +03:00
}
2016-12-30 10:24:04 +03:00
for ( const auto & wid : wm - > windows ( ) ) {
2017-06-09 01:10:49 +03:00
windows . insert ( wid , wm - > requestInfo ( wid ) ) ;
2016-12-30 10:24:04 +03:00
}
2017-01-16 22:07:49 +03:00
2017-03-12 12:01:27 +03:00
connections [ 0 ] = connect ( wm , & WindowSystem : : windowChanged
2018-12-20 19:59:38 +03:00
, this , & VisibilityManager : : dodgeWindows ) ;
2017-03-12 12:01:27 +03:00
connections [ 1 ] = connect ( wm , & WindowSystem : : windowRemoved
2017-06-09 01:10:49 +03:00
, this , [ & ] ( WindowId wid ) {
windows . remove ( wid ) ;
2018-12-20 19:59:38 +03:00
m_timerCheckWindows . start ( ) ;
2016-12-30 10:24:04 +03:00
} ) ;
2017-03-12 12:01:27 +03:00
connections [ 2 ] = connect ( wm , & WindowSystem : : windowAdded
2017-06-09 01:10:49 +03:00
, this , [ & ] ( WindowId wid ) {
windows . insert ( wid , wm - > requestInfo ( wid ) ) ;
2018-12-20 19:59:38 +03:00
m_timerCheckWindows . start ( ) ;
2016-12-30 10:24:04 +03:00
} ) ;
2017-02-12 11:01:12 +03:00
2018-12-20 19:59:38 +03:00
m_timerCheckWindows . start ( ) ;
2016-12-30 10:24:04 +03:00
}
2017-02-12 11:01:12 +03:00
break ;
2017-06-04 02:43:52 +03:00
2018-12-07 19:55:35 +03:00
case Types : : WindowsGoBelow :
2018-03-28 20:39:52 +03:00
//set wayland visibility mode
2018-12-06 13:51:15 +03:00
if ( m_latteView - > surface ( ) ) {
m_latteView - > surface ( ) - > setPanelBehavior ( KWayland : : Client : : PlasmaShellSurface : : PanelBehavior : : WindowsGoBelow ) ;
2018-03-28 20:39:52 +03:00
}
2017-06-09 01:10:49 +03:00
break ;
default :
break ;
2016-12-30 10:17:38 +03:00
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
m_latteView - > containment ( ) - > config ( ) . writeEntry ( " visibility " , static_cast < int > ( m_mode ) ) ;
2017-03-12 12:01:27 +03:00
2018-03-28 20:39:52 +03:00
updateKWinEdgesSupport ( ) ;
2018-12-20 19:59:38 +03:00
emit modeChanged ( ) ;
2017-03-12 12:01:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : updateStrutsBasedOnLayoutsAndActivities ( )
2018-01-13 21:00:03 +03:00
{
2018-12-07 19:55:35 +03:00
bool multipleLayoutsAndCurrent = ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Types : : MultipleLayouts
2018-12-06 13:51:15 +03:00
& & m_latteView - > managedLayout ( ) & & ! m_latteView - > positioner ( ) - > inLocationChangeAnimation ( )
2018-12-06 15:35:34 +03:00
& & m_latteView - > managedLayout ( ) - > name ( ) = = m_corona - > layoutManager ( ) - > currentLayoutName ( ) ) ;
2018-01-13 21:00:03 +03:00
2018-12-07 19:55:35 +03:00
if ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Types : : SingleLayout | | multipleLayoutsAndCurrent ) {
2018-12-20 19:59:38 +03:00
wm - > setViewStruts ( * m_latteView , m_viewGeometry , m_latteView - > location ( ) ) ;
2018-01-13 21:00:03 +03:00
} else {
2018-12-20 19:59:38 +03:00
wm - > removeViewStruts ( * m_latteView ) ;
2018-01-13 21:00:03 +03:00
}
}
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : raiseOnDesktop ( ) const
{
return raiseOnDesktopChange ;
}
void VisibilityManager : : setRaiseOnDesktop ( bool enable )
2017-03-12 12:01:27 +03:00
{
if ( enable = = raiseOnDesktopChange )
return ;
raiseOnDesktopChange = enable ;
2018-12-20 19:59:38 +03:00
emit raiseOnDesktopChanged ( ) ;
2017-03-12 12:01:27 +03:00
}
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : raiseOnActivity ( ) const
{
return raiseOnActivityChange ;
}
void VisibilityManager : : setRaiseOnActivity ( bool enable )
2017-03-12 12:01:27 +03:00
{
if ( enable = = raiseOnActivityChange )
return ;
raiseOnActivityChange = enable ;
2018-12-20 19:59:38 +03:00
emit raiseOnActivityChanged ( ) ;
}
bool VisibilityManager : : isHidden ( ) const
{
return m_isHidden ;
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : setIsHidden ( bool isHidden )
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
if ( m_isHidden = = isHidden )
2016-12-30 10:17:38 +03:00
return ;
2017-01-16 22:07:49 +03:00
2018-12-26 18:53:17 +03:00
if ( m_blockHiding & & isHidden ) {
2017-01-02 11:06:47 +03:00
qWarning ( ) < < " isHidden property is blocked, ignoring update " ;
return ;
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
m_isHidden = isHidden ;
2018-03-28 20:39:52 +03:00
2018-12-20 19:59:38 +03:00
if ( supportsKWinEdges ( ) ) {
2018-12-07 19:55:35 +03:00
bool inCurrentLayout = ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Types : : SingleLayout | |
( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Types : : MultipleLayouts
2018-12-06 13:51:15 +03:00
& & m_latteView - > managedLayout ( ) & & ! m_latteView - > positioner ( ) - > inLocationChangeAnimation ( )
2018-12-06 15:35:34 +03:00
& & m_latteView - > managedLayout ( ) - > name ( ) = = m_corona - > layoutManager ( ) - > currentLayoutName ( ) ) ) ;
2018-03-28 20:39:52 +03:00
if ( inCurrentLayout ) {
2018-12-20 19:59:38 +03:00
wm - > setEdgeStateFor ( edgeGhostWindow , m_isHidden ) ;
2018-03-28 20:39:52 +03:00
} else {
wm - > setEdgeStateFor ( edgeGhostWindow , false ) ;
}
}
2018-12-20 19:59:38 +03:00
emit isHiddenChanged ( ) ;
2016-12-29 08:40:35 +03:00
}
2016-12-25 10:25:27 +03:00
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : blockHiding ( ) const
2017-01-02 11:06:47 +03:00
{
2018-12-20 19:59:38 +03:00
return m_blockHiding ;
}
void VisibilityManager : : setBlockHiding ( bool blockHiding )
{
if ( m_blockHiding = = blockHiding ) {
2017-01-02 11:06:47 +03:00
return ;
2018-12-20 19:59:38 +03:00
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
m_blockHiding = blockHiding ;
2017-01-28 20:34:03 +03:00
// qDebug() << "blockHiding:" << blockHiding;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
if ( m_blockHiding ) {
m_timerHide . stop ( ) ;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
if ( m_isHidden ) {
emit mustBeShown ( ) ;
2017-01-04 03:52:31 +03:00
}
2017-01-02 11:06:47 +03:00
} else {
updateHiddenState ( ) ;
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
emit blockHidingChanged ( ) ;
}
int VisibilityManager : : timerShow ( ) const
{
return m_timerShow . interval ( ) ;
}
void VisibilityManager : : setTimerShow ( int msec )
{
m_timerShow . setInterval ( msec ) ;
emit timerShowChanged ( ) ;
}
int VisibilityManager : : timerHide ( ) const
{
return m_timerHide . interval ( ) ;
2017-01-02 11:06:47 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : setTimerHide ( int msec )
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
m_timerHide . setInterval ( msec ) ;
emit timerHideChanged ( ) ;
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : supportsKWinEdges ( ) const
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
return ( edgeGhostWindow ! = nullptr ) ;
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : raiseView ( bool raise )
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
if ( m_blockHiding )
2017-03-12 20:16:23 +03:00
return ;
2016-12-29 08:40:35 +03:00
if ( raise ) {
2018-12-20 19:59:38 +03:00
m_timerHide . stop ( ) ;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
if ( ! m_timerShow . isActive ( ) ) {
m_timerShow . start ( ) ;
2016-12-30 14:46:56 +03:00
}
2017-03-12 20:16:23 +03:00
} else if ( ! dragEnter ) {
2018-12-20 19:59:38 +03:00
m_timerShow . stop ( ) ;
2017-01-16 22:07:49 +03:00
2017-02-12 11:01:12 +03:00
if ( hideNow ) {
hideNow = false ;
2018-12-20 19:59:38 +03:00
emit mustBeHide ( ) ;
} else if ( ! m_timerHide . isActive ( ) ) {
m_timerHide . start ( ) ;
2018-11-13 20:06:33 +03:00
}
2016-12-29 08:40:35 +03:00
}
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : raiseViewTemporarily ( )
2017-02-12 11:01:12 +03:00
{
2017-03-12 12:01:27 +03:00
if ( raiseTemporarily )
2017-02-12 11:01:12 +03:00
return ;
raiseTemporarily = true ;
2018-12-20 19:59:38 +03:00
m_timerHide . stop ( ) ;
m_timerShow . stop ( ) ;
2017-02-12 11:01:12 +03:00
2018-12-20 19:59:38 +03:00
if ( m_isHidden )
emit mustBeShown ( ) ;
2017-02-12 11:01:12 +03:00
2018-12-20 19:59:38 +03:00
QTimer : : singleShot ( qBound ( 1800 , 2 * m_timerHide . interval ( ) , 3000 ) , this , [ & ] ( ) {
2017-03-08 00:26:09 +03:00
raiseTemporarily = false ;
hideNow = true ;
updateHiddenState ( ) ;
2017-02-12 11:01:12 +03:00
} ) ;
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : updateHiddenState ( )
2017-01-02 11:06:47 +03:00
{
2017-01-03 20:36:40 +03:00
if ( dragEnter )
return ;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
switch ( m_mode ) {
2018-12-07 19:55:35 +03:00
case Types : : AutoHide :
2018-12-20 19:59:38 +03:00
raiseView ( m_containsMouse ) ;
2017-01-02 11:06:47 +03:00
break ;
2017-01-16 22:07:49 +03:00
2018-12-07 19:55:35 +03:00
case Types : : DodgeActive :
2017-01-02 11:06:47 +03:00
dodgeActive ( wm - > activeWindow ( ) ) ;
break ;
2017-01-16 22:07:49 +03:00
2018-12-07 19:55:35 +03:00
case Types : : DodgeMaximized :
2017-01-02 11:06:47 +03:00
dodgeMaximized ( wm - > activeWindow ( ) ) ;
break ;
2017-01-16 22:07:49 +03:00
2018-12-07 19:55:35 +03:00
case Types : : DodgeAllWindows :
2017-01-02 11:06:47 +03:00
dodgeWindows ( wm - > activeWindow ( ) ) ;
break ;
2017-08-13 13:00:46 +03:00
2017-06-09 01:10:49 +03:00
default :
break ;
2017-01-02 11:06:47 +03:00
}
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : setViewGeometry ( const QRect & geometry )
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
if ( ! m_latteView - > containment ( ) )
2016-12-30 10:17:38 +03:00
return ;
2017-01-16 22:07:49 +03:00
2018-12-06 17:17:35 +03:00
m_viewGeometry = geometry ;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
if ( m_mode = = Types : : AlwaysVisible & & ! m_latteView - > inEditMode ( ) & & m_latteView - > screen ( ) ) {
2018-01-13 21:00:03 +03:00
updateStrutsBasedOnLayoutsAndActivities ( ) ;
2016-12-30 10:17:38 +03:00
}
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : setWindowOnActivities ( QWindow & window , const QStringList & activities )
2018-01-13 13:55:13 +03:00
{
2018-01-21 12:53:15 +03:00
wm - > setWindowOnActivities ( window , activities ) ;
2018-01-13 13:55:13 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : applyActivitiesToHiddenWindows ( const QStringList & activities )
2018-03-28 20:39:52 +03:00
{
if ( edgeGhostWindow ) {
wm - > setWindowOnActivities ( * edgeGhostWindow , activities ) ;
}
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : dodgeActive ( WindowId wid )
2016-12-25 10:25:27 +03:00
{
2017-02-12 11:01:12 +03:00
if ( raiseTemporarily )
return ;
2018-12-06 17:17:35 +03:00
//!don't send false raiseView signal when containing mouse
2018-12-20 19:59:38 +03:00
if ( m_containsMouse ) {
2018-12-06 17:17:35 +03:00
raiseView ( true ) ;
2017-08-13 13:24:32 +03:00
return ;
}
2016-12-30 10:17:38 +03:00
auto winfo = wm - > requestInfo ( wid ) ;
2017-01-16 22:07:49 +03:00
2018-09-01 17:45:08 +03:00
if ( ! winfo . isValid ( ) | | ! winfo . isActive ( ) ) {
2017-03-12 12:01:27 +03:00
winfo = wm - > requestInfo ( wm - > activeWindow ( ) ) ;
2018-08-31 15:27:21 +03:00
if ( ! winfo . isValid ( ) ) {
//! very rare case that window manager doesnt have any active window at all
2018-12-06 17:17:35 +03:00
raiseView ( true ) ;
2018-08-31 15:27:21 +03:00
return ;
}
2017-01-02 09:04:10 +03:00
}
2017-01-16 22:07:49 +03:00
2018-12-06 17:17:35 +03:00
//! don't send false raiseView signal when containing mouse, // Johan comment
2018-08-31 16:49:47 +03:00
//! I dont know why that wasnt winfo.wid() //active window, but just wid//the window that made the call
if ( wm - > isOnCurrentDesktop ( winfo . wid ( ) ) & & wm - > isOnCurrentActivity ( winfo . wid ( ) ) ) {
2018-09-01 17:45:08 +03:00
bool overlaps { intersects ( winfo ) } ;
2018-12-06 17:17:35 +03:00
raiseView ( ! overlaps ) ;
2017-08-13 13:00:46 +03:00
}
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : dodgeMaximized ( WindowId wid )
2016-12-25 10:25:27 +03:00
{
2017-02-12 11:01:12 +03:00
if ( raiseTemporarily )
return ;
2018-12-06 17:17:35 +03:00
//!don't send false raiseView signal when containing mouse
2018-12-20 19:59:38 +03:00
if ( m_containsMouse ) {
2018-12-06 17:17:35 +03:00
raiseView ( true ) ;
2017-08-13 13:24:32 +03:00
return ;
}
2016-12-30 10:17:38 +03:00
auto winfo = wm - > requestInfo ( wid ) ;
2017-01-16 22:07:49 +03:00
2018-09-01 17:45:08 +03:00
if ( ! winfo . isValid ( ) | | ! winfo . isActive ( ) ) {
2017-03-12 12:01:27 +03:00
winfo = wm - > requestInfo ( wm - > activeWindow ( ) ) ;
2018-08-31 15:27:21 +03:00
if ( ! winfo . isValid ( ) ) {
//! very rare case that window manager doesnt have any active window at all
2018-12-06 17:17:35 +03:00
raiseView ( true ) ;
2018-08-31 15:27:21 +03:00
return ;
}
2017-01-02 09:04:10 +03:00
}
2017-01-16 22:07:49 +03:00
2018-09-01 17:45:08 +03:00
auto intersectsMaxVert = [ & ] ( ) noexcept - > bool {
2018-03-08 19:08:55 +03:00
return ( ( winfo . isMaxVert ( )
2018-12-20 19:59:38 +03:00
| | ( m_latteView - > screen ( ) & & m_latteView - > screen ( ) - > availableSize ( ) . height ( ) < = winfo . geometry ( ) . height ( ) ) )
2018-03-08 19:08:55 +03:00
& & intersects ( winfo ) ) ;
2017-03-24 06:15:04 +03:00
} ;
2018-09-01 17:45:08 +03:00
auto intersectsMaxHoriz = [ & ] ( ) noexcept - > bool {
2018-03-08 19:08:55 +03:00
return ( ( winfo . isMaxHoriz ( )
2018-12-20 19:59:38 +03:00
| | ( m_latteView - > screen ( ) & & m_latteView - > screen ( ) - > availableSize ( ) . width ( ) < = winfo . geometry ( ) . width ( ) ) )
2018-03-08 19:08:55 +03:00
& & intersects ( winfo ) ) ;
2017-03-24 06:15:04 +03:00
} ;
2018-12-06 17:17:35 +03:00
//! don't send false raiseView signal when containing mouse, // Johan comment
2018-08-31 16:49:47 +03:00
//! I dont know why that wasnt winfo.wid() //active window, but just wid//the window that made the call
if ( wm - > isOnCurrentDesktop ( winfo . wid ( ) ) & & wm - > isOnCurrentActivity ( winfo . wid ( ) ) ) {
2018-12-20 19:59:38 +03:00
bool overlapsMaximized { m_latteView - > formFactor ( ) = = Plasma : : Types : : Vertical ? intersectsMaxHoriz ( ) : intersectsMaxVert ( ) } ;
2018-12-06 17:17:35 +03:00
raiseView ( ! overlapsMaximized ) ;
2018-08-31 16:49:47 +03:00
}
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : dodgeWindows ( WindowId wid )
2016-12-25 10:25:27 +03:00
{
2017-02-12 11:01:12 +03:00
if ( raiseTemporarily )
return ;
2017-01-02 09:04:10 +03:00
if ( windows . find ( wid ) = = std : : end ( windows ) )
return ;
2017-01-16 22:07:49 +03:00
2018-12-06 17:17:35 +03:00
//!don't send false raiseView signal when containing mouse
2018-12-20 19:59:38 +03:00
if ( m_containsMouse ) {
2018-12-06 17:17:35 +03:00
raiseView ( true ) ;
2017-08-13 13:24:32 +03:00
return ;
}
2017-03-15 10:24:24 +03:00
windows [ wid ] = wm - > requestInfo ( wid ) ;
auto & winfo = windows [ wid ] ;
2017-01-16 22:07:49 +03:00
2017-06-21 03:06:04 +03:00
if ( ! winfo . isValid ( ) | | ! wm - > isOnCurrentDesktop ( wid ) | | ! wm - > isOnCurrentActivity ( wid ) )
2016-12-30 10:17:38 +03:00
return ;
2017-01-16 22:07:49 +03:00
2017-08-13 13:24:32 +03:00
if ( intersects ( winfo ) )
2018-12-06 17:17:35 +03:00
raiseView ( false ) ;
2016-12-30 10:17:38 +03:00
else
2018-12-20 19:59:38 +03:00
m_timerCheckWindows . start ( ) ;
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : checkAllWindows ( )
2016-12-25 10:25:27 +03:00
{
2017-02-12 11:01:12 +03:00
if ( raiseTemporarily )
return ;
2016-12-30 10:17:38 +03:00
bool raise { true } ;
2018-01-04 19:36:41 +03:00
bool existsFaultyWindow { false } ;
2017-01-16 22:07:49 +03:00
2016-12-30 10:17:38 +03:00
for ( const auto & winfo : windows ) {
2017-06-15 00:10:31 +03:00
// <WindowId, WindowInfoWrap>
2018-01-04 19:36:41 +03:00
if ( winfo . geometry ( ) = = QRect ( 0 , 0 , 0 , 0 ) ) {
existsFaultyWindow = true ;
}
2017-06-21 03:06:04 +03:00
if ( ! winfo . isValid ( ) | | ! wm - > isOnCurrentDesktop ( winfo . wid ( ) ) | | ! wm - > isOnCurrentActivity ( winfo . wid ( ) ) )
2016-12-30 10:17:38 +03:00
continue ;
2017-01-16 22:07:49 +03:00
2017-06-09 01:10:49 +03:00
if ( winfo . isFullscreen ( ) ) {
2016-12-30 10:17:38 +03:00
raise = false ;
break ;
2017-06-09 01:10:49 +03:00
} else if ( intersects ( winfo ) ) {
2016-12-30 10:17:38 +03:00
raise = false ;
break ;
}
}
2017-01-16 22:07:49 +03:00
2018-01-04 19:36:41 +03:00
cleanupFaultyWindows ( ) ;
2018-12-06 17:17:35 +03:00
raiseView ( raise ) ;
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : intersects ( const WindowInfoWrap & winfo )
2016-12-25 10:25:27 +03:00
{
2017-03-24 06:06:59 +03:00
return ( ! winfo . isMinimized ( )
2018-12-06 17:17:35 +03:00
& & winfo . geometry ( ) . intersects ( m_viewGeometry )
2017-03-24 06:06:59 +03:00
& & ! winfo . isShaded ( ) ) ;
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : saveConfig ( )
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
if ( ! m_latteView - > containment ( ) )
2016-12-30 10:17:38 +03:00
return ;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
auto config = m_latteView - > containment ( ) - > config ( ) ;
2017-04-02 08:23:47 +03:00
2018-03-28 20:39:52 +03:00
config . writeEntry ( " enableKWinEdges " , enableKWinEdgesFromUser ) ;
2018-12-20 19:59:38 +03:00
config . writeEntry ( " timerShow " , m_timerShow . interval ( ) ) ;
config . writeEntry ( " timerHide " , m_timerHide . interval ( ) ) ;
2017-03-12 20:05:02 +03:00
config . writeEntry ( " raiseOnDesktopChange " , raiseOnDesktopChange ) ;
config . writeEntry ( " raiseOnActivityChange " , raiseOnActivityChange ) ;
2018-03-28 20:39:52 +03:00
2018-12-20 19:59:38 +03:00
m_latteView - > containment ( ) - > configNeedsSaving ( ) ;
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : restoreConfig ( )
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
if ( ! m_latteView | | ! m_latteView - > containment ( ) ) {
2016-12-30 10:24:04 +03:00
return ;
2018-12-20 19:59:38 +03:00
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
auto config = m_latteView - > containment ( ) - > config ( ) ;
m_timerShow . setInterval ( config . readEntry ( " timerShow " , 0 ) ) ;
m_timerHide . setInterval ( config . readEntry ( " timerHide " , 700 ) ) ;
emit timerShowChanged ( ) ;
emit timerHideChanged ( ) ;
2017-02-11 08:55:22 +03:00
2018-03-28 20:39:52 +03:00
enableKWinEdgesFromUser = config . readEntry ( " enableKWinEdges " , true ) ;
2018-12-20 19:59:38 +03:00
emit enableKWinEdgesChanged ( ) ;
2018-03-28 20:39:52 +03:00
2017-03-26 00:17:41 +03:00
setRaiseOnDesktop ( config . readEntry ( " raiseOnDesktopChange " , false ) ) ;
setRaiseOnActivity ( config . readEntry ( " raiseOnActivityChange " , false ) ) ;
2018-12-20 19:59:38 +03:00
auto storedMode = static_cast < Types : : Visibility > ( m_latteView - > containment ( ) - > config ( ) . readEntry ( " visibility " , static_cast < int > ( Types : : DodgeActive ) ) ) ;
2017-04-02 08:23:47 +03:00
2018-12-20 19:59:38 +03:00
if ( storedMode = = Types : : AlwaysVisible ) {
qDebug ( ) < < " Loading visibility mode: Always Visible , on startup... " ;
2018-12-07 19:55:35 +03:00
setMode ( Types : : AlwaysVisible ) ;
2017-02-12 11:01:12 +03:00
} else {
2018-12-20 19:59:38 +03:00
connect ( & m_timerStartUp , & QTimer : : timeout , this , [ & ] ( ) {
auto fMode = static_cast < Types : : Visibility > ( m_latteView - > containment ( ) - > config ( ) . readEntry ( " visibility " , static_cast < int > ( Types : : DodgeActive ) ) ) ;
qDebug ( ) < < " Loading visibility mode: " < < fMode < < " on startup... " ;
setMode ( fMode ) ;
2017-02-11 08:55:22 +03:00
} ) ;
2018-12-20 19:59:38 +03:00
connect ( m_latteView - > containment ( ) , & Plasma : : Containment : : userConfiguringChanged
2017-06-04 02:43:52 +03:00
, this , [ & ] ( bool configuring ) {
2018-12-20 19:59:38 +03:00
if ( configuring & & m_timerStartUp . isActive ( ) )
m_timerStartUp . start ( 100 ) ;
2017-04-02 12:24:49 +03:00
} ) ;
2018-12-20 19:59:38 +03:00
m_timerStartUp . start ( ) ;
2017-02-11 08:55:22 +03:00
}
2017-03-12 12:01:27 +03:00
2018-12-20 19:59:38 +03:00
connect ( m_latteView - > containment ( ) , & Plasma : : Containment : : userConfiguringChanged
2017-03-12 23:14:30 +03:00
, this , [ & ] ( bool configuring ) {
2018-12-20 19:59:38 +03:00
if ( ! configuring ) {
2017-03-12 21:30:54 +03:00
saveConfig ( ) ;
2018-12-20 19:59:38 +03:00
}
2017-03-12 12:01:27 +03:00
} ) ;
2016-12-25 10:25:27 +03:00
}
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : containsMouse ( ) const
2016-12-25 10:25:27 +03:00
{
2018-12-20 19:59:38 +03:00
return m_containsMouse ;
}
void VisibilityManager : : setContainsMouse ( bool contains )
{
if ( m_containsMouse = = contains ) {
2018-11-13 20:06:33 +03:00
return ;
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
m_containsMouse = contains ;
emit containsMouseChanged ( ) ;
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
if ( contains & & m_mode ! = Types : : AlwaysVisible ) {
2018-12-06 17:17:35 +03:00
raiseView ( true ) ;
2018-11-13 20:06:33 +03:00
}
}
2017-01-16 22:07:49 +03:00
2018-12-20 19:59:38 +03:00
void VisibilityManager : : viewEventManager ( QEvent * ev )
2018-11-13 20:06:33 +03:00
{
switch ( ev - > type ( ) ) {
case QEvent : : Enter :
setContainsMouse ( true ) ;
2017-01-03 20:36:40 +03:00
break ;
2017-01-16 22:07:49 +03:00
2017-01-05 18:48:27 +03:00
case QEvent : : Leave :
2018-11-13 20:06:33 +03:00
setContainsMouse ( false ) ;
2017-01-05 18:48:27 +03:00
updateHiddenState ( ) ;
2018-11-13 20:06:33 +03:00
2017-01-05 18:48:27 +03:00
break ;
2017-01-16 22:07:49 +03:00
2017-01-05 18:48:27 +03:00
case QEvent : : DragEnter :
dragEnter = true ;
2017-03-12 23:14:30 +03:00
2018-12-20 19:59:38 +03:00
if ( m_isHidden )
emit mustBeShown ( ) ;
2017-03-12 21:09:38 +03:00
2017-01-05 18:48:27 +03:00
break ;
2017-01-16 22:07:49 +03:00
2017-01-05 18:48:27 +03:00
case QEvent : : DragLeave :
case QEvent : : Drop :
dragEnter = false ;
updateHiddenState ( ) ;
break ;
2017-01-16 22:07:49 +03:00
2017-01-05 18:48:27 +03:00
case QEvent : : Show :
2018-12-20 19:59:38 +03:00
wm - > setViewExtraFlags ( * m_latteView ) ;
2017-01-03 20:36:40 +03:00
break ;
2017-06-09 01:10:49 +03:00
default :
break ;
2016-12-25 10:25:27 +03:00
}
}
2017-12-24 21:54:45 +03:00
2018-12-20 19:59:38 +03:00
void VisibilityManager : : cleanupFaultyWindows ( )
2018-01-04 19:36:41 +03:00
{
foreach ( auto key , windows . keys ( ) ) {
auto winfo = windows [ key ] ;
//! garbage windows removing
if ( winfo . geometry ( ) = = QRect ( 0 , 0 , 0 , 0 ) ) {
//qDebug() << "Faulty Geometry ::: " << winfo.wid();
windows . remove ( key ) ;
}
}
}
2017-12-24 21:54:45 +03:00
//! Dynamic Background functions
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : enabledDynamicBackground ( ) const
{
return enabledDynamicBackgroundFlag ;
}
void VisibilityManager : : setEnabledDynamicBackground ( bool active )
2017-12-24 21:54:45 +03:00
{
if ( enabledDynamicBackgroundFlag = = active ) {
return ;
}
enabledDynamicBackgroundFlag = active ;
if ( active ) {
2018-12-20 19:59:38 +03:00
if ( m_mode ! = Types : : DodgeAllWindows ) {
2017-12-24 21:54:45 +03:00
for ( const auto & wid : wm - > windows ( ) ) {
windows . insert ( wid , wm - > requestInfo ( wid ) ) ;
}
}
2018-12-20 19:59:38 +03:00
connectionsDynBackground [ 0 ] = connect ( m_latteView - > corona ( ) , & Plasma : : Corona : : availableScreenRectChanged ,
this , & VisibilityManager : : updateAvailableScreenGeometry ) ;
2017-12-24 21:54:45 +03:00
connectionsDynBackground [ 1 ] = connect ( wm , & WindowSystem : : windowChanged , this , [ & ] ( WindowId wid ) {
windows [ wid ] = wm - > requestInfo ( wid ) ;
updateDynamicBackgroundWindowFlags ( ) ;
} ) ;
connectionsDynBackground [ 2 ] = connect ( wm , & WindowSystem : : windowRemoved , this , [ & ] ( WindowId wid ) {
windows . remove ( wid ) ;
} ) ;
connectionsDynBackground [ 3 ] = connect ( wm , & WindowSystem : : windowAdded , this , [ & ] ( WindowId wid ) {
windows . insert ( wid , wm - > requestInfo ( wid ) ) ;
updateDynamicBackgroundWindowFlags ( ) ;
} ) ;
connectionsDynBackground [ 4 ] = connect ( wm , & WindowSystem : : activeWindowChanged , this , [ & ] ( WindowId wid ) {
if ( windows . contains ( lastActiveWindowWid ) ) {
windows [ lastActiveWindowWid ] = wm - > requestInfo ( lastActiveWindowWid ) ;
}
windows [ wid ] = wm - > requestInfo ( wid ) ;
lastActiveWindowWid = wid ;
updateDynamicBackgroundWindowFlags ( ) ;
} ) ;
connectionsDynBackground [ 5 ] = connect ( wm , & WindowSystem : : currentDesktopChanged , this , [ & ] {
updateDynamicBackgroundWindowFlags ( ) ;
} ) ;
connectionsDynBackground [ 6 ] = connect ( wm , & WindowSystem : : currentActivityChanged , this , [ & ] {
updateDynamicBackgroundWindowFlags ( ) ;
} ) ;
updateAvailableScreenGeometry ( ) ;
updateDynamicBackgroundWindowFlags ( ) ;
} else {
// clear mode
for ( auto & c : connectionsDynBackground ) {
disconnect ( c ) ;
}
2018-12-20 19:59:38 +03:00
if ( m_mode ! = Types : : DodgeAllWindows ) {
2017-12-24 21:54:45 +03:00
windows . clear ( ) ;
}
2018-12-01 13:27:49 +03:00
// ATTENTION: this was creating a crash under wayland environment through the blur effect
// setExistsWindowMaximized(false);
// setExistsWindowSnapped(false);
2017-12-24 21:54:45 +03:00
}
2018-12-20 19:59:38 +03:00
emit enabledDynamicBackgroundChanged ( ) ;
}
bool VisibilityManager : : existsWindowMaximized ( ) const
{
return windowIsMaximizedFlag ;
2017-12-24 21:54:45 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : setExistsWindowMaximized ( bool windowMaximized )
2017-12-24 21:54:45 +03:00
{
if ( windowIsMaximizedFlag = = windowMaximized ) {
return ;
}
windowIsMaximizedFlag = windowMaximized ;
2018-12-20 19:59:38 +03:00
emit existsWindowMaximizedChanged ( ) ;
}
bool VisibilityManager : : existsWindowSnapped ( ) const
{
return windowIsSnappedFlag ;
2017-12-24 21:54:45 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : setExistsWindowSnapped ( bool windowSnapped )
2017-12-24 21:54:45 +03:00
{
if ( windowIsSnappedFlag = = windowSnapped ) {
return ;
}
windowIsSnappedFlag = windowSnapped ;
2018-12-20 19:59:38 +03:00
emit existsWindowSnappedChanged ( ) ;
}
SchemeColors * VisibilityManager : : touchingWindowScheme ( ) const
{
return touchingScheme ;
2017-12-24 21:54:45 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : setTouchingWindowScheme ( SchemeColors * scheme )
2018-10-14 13:54:09 +03:00
{
if ( touchingScheme = = scheme ) {
return ;
}
touchingScheme = scheme ;
2018-12-20 19:59:38 +03:00
emit touchingWindowSchemeChanged ( ) ;
2018-10-14 13:54:09 +03:00
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : updateAvailableScreenGeometry ( )
2017-12-24 21:54:45 +03:00
{
2018-12-20 19:59:38 +03:00
if ( ! m_latteView | | ! m_latteView - > containment ( ) ) {
2017-12-24 21:54:45 +03:00
return ;
}
2018-12-06 13:51:15 +03:00
int currentScrId = m_latteView - > positioner ( ) - > currentScreenId ( ) ;
2018-12-07 19:55:35 +03:00
QRect tempAvailableScreenGeometry = m_corona - > availableScreenRectWithCriteria ( currentScrId , { Types : : AlwaysVisible } , { } ) ;
2017-12-24 21:54:45 +03:00
if ( tempAvailableScreenGeometry ! = availableScreenGeometry ) {
availableScreenGeometry = tempAvailableScreenGeometry ;
snappedWindowsGeometries . clear ( ) ;
2018-12-06 17:17:35 +03:00
//! for top view the snapped geometries would be
2017-12-24 21:54:45 +03:00
int halfWidth1 = std : : floor ( availableScreenGeometry . width ( ) / 2 ) ;
int halfWidth2 = availableScreenGeometry . width ( ) - halfWidth1 ;
int halfHeight1 = std : : floor ( ( availableScreenGeometry . height ( ) ) / 2 ) ;
int halfHeight2 = availableScreenGeometry . height ( ) - halfHeight1 ;
int x1 = availableScreenGeometry . x ( ) ;
int x2 = availableScreenGeometry . x ( ) + halfWidth1 ;
int y1 = availableScreenGeometry . y ( ) ;
int y2 = availableScreenGeometry . y ( ) + halfHeight1 ;
QRect snap1 ;
QRect snap2 ;
QRect snap3 ;
QRect snap4 ;
2018-12-20 19:59:38 +03:00
if ( m_latteView - > formFactor ( ) = = Plasma : : Types : : Horizontal ) {
if ( m_latteView - > location ( ) = = Plasma : : Types : : TopEdge ) {
2017-12-24 21:54:45 +03:00
snap1 = QRect ( x1 , y1 , halfWidth1 , halfHeight1 ) ;
snap3 = QRect ( x2 , y1 , halfWidth2 , halfHeight1 ) ;
2018-12-20 19:59:38 +03:00
} else if ( ( m_latteView - > location ( ) = = Plasma : : Types : : BottomEdge ) ) {
2017-12-24 21:54:45 +03:00
snap1 = QRect ( x1 , y2 , halfWidth1 , halfHeight2 ) ;
snap3 = QRect ( x2 , y2 , halfWidth2 , halfHeight2 ) ;
}
snap2 = QRect ( x1 , y1 , halfWidth1 , availableScreenGeometry . height ( ) ) ;
snap4 = QRect ( x2 , y1 , halfWidth2 , availableScreenGeometry . height ( ) ) ;
2018-12-20 19:59:38 +03:00
} else if ( m_latteView - > formFactor ( ) = = Plasma : : Types : : Vertical ) {
2017-12-24 21:54:45 +03:00
QRect snap5 ;
2018-12-20 19:59:38 +03:00
if ( m_latteView - > location ( ) = = Plasma : : Types : : LeftEdge ) {
2017-12-24 21:54:45 +03:00
snap1 = QRect ( x1 , y1 , halfWidth1 , halfHeight1 ) ;
snap3 = QRect ( x1 , y2 , halfWidth1 , halfHeight2 ) ;
snap5 = QRect ( x1 , y1 , halfWidth1 , availableScreenGeometry . height ( ) ) ;
2018-12-20 19:59:38 +03:00
} else if ( ( m_latteView - > location ( ) = = Plasma : : Types : : RightEdge ) ) {
2017-12-24 21:54:45 +03:00
snap1 = QRect ( x2 , y1 , halfWidth2 , halfHeight1 ) ;
snap3 = QRect ( x2 , y2 , halfWidth2 , halfHeight2 ) ;
snap5 = QRect ( x2 , y1 , halfWidth2 , availableScreenGeometry . height ( ) ) ;
}
snap2 = QRect ( x1 , y1 , availableScreenGeometry . width ( ) , halfHeight1 ) ;
snap4 = QRect ( x1 , y2 , availableScreenGeometry . width ( ) , halfHeight2 ) ;
snappedWindowsGeometries . append ( snap5 ) ;
}
snappedWindowsGeometries . append ( snap1 ) ;
snappedWindowsGeometries . append ( snap2 ) ;
snappedWindowsGeometries . append ( snap3 ) ;
snappedWindowsGeometries . append ( snap4 ) ;
updateDynamicBackgroundWindowFlags ( ) ;
}
}
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : isMaximizedInCurrentScreen ( const WindowInfoWrap & winfo )
2018-10-26 18:47:13 +03:00
{
//! updated implementation to identify the screen that the maximized window is present
//! in order to avoid: https://bugs.kde.org/show_bug.cgi?id=397700
if ( winfo . isValid ( ) & & ! winfo . isMinimized ( ) & & wm - > isOnCurrentDesktop ( winfo . wid ( ) ) & & wm - > isOnCurrentActivity ( winfo . wid ( ) ) ) {
if ( winfo . isMaximized ( ) & & availableScreenGeometry . contains ( winfo . geometry ( ) . center ( ) ) ) {
return true ;
}
}
return false ;
}
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : isTouchingPanelEdge ( const WindowInfoWrap & winfo )
2018-10-26 18:47:13 +03:00
{
if ( winfo . isValid ( ) & & ! winfo . isMinimized ( ) & & wm - > isOnCurrentDesktop ( winfo . wid ( ) ) & & wm - > isOnCurrentActivity ( winfo . wid ( ) ) ) {
bool touchingPanelEdge { false } ;
2018-12-06 13:51:15 +03:00
QRect screenGeometry = m_latteView - > screenGeometry ( ) ;
2018-10-26 18:47:13 +03:00
bool inCurrentScreen { screenGeometry . contains ( winfo . geometry ( ) . topLeft ( ) ) | | screenGeometry . contains ( winfo . geometry ( ) . bottomRight ( ) ) } ;
if ( inCurrentScreen ) {
2018-12-20 19:59:38 +03:00
if ( m_latteView - > location ( ) = = Plasma : : Types : : TopEdge ) {
2018-10-26 18:47:13 +03:00
touchingPanelEdge = ( winfo . geometry ( ) . y ( ) = = availableScreenGeometry . y ( ) ) ;
2018-12-20 19:59:38 +03:00
} else if ( m_latteView - > location ( ) = = Plasma : : Types : : BottomEdge ) {
2018-10-26 18:47:13 +03:00
touchingPanelEdge = ( winfo . geometry ( ) . bottom ( ) = = availableScreenGeometry . bottom ( ) ) ;
2018-12-20 19:59:38 +03:00
} else if ( m_latteView - > location ( ) = = Plasma : : Types : : LeftEdge ) {
2018-10-26 18:47:13 +03:00
touchingPanelEdge = ( winfo . geometry ( ) . x ( ) = = availableScreenGeometry . x ( ) ) ;
2018-12-20 19:59:38 +03:00
} else if ( m_latteView - > location ( ) = = Plasma : : Types : : RightEdge ) {
2018-10-26 18:47:13 +03:00
touchingPanelEdge = ( winfo . geometry ( ) . right ( ) = = availableScreenGeometry . right ( ) ) ;
}
}
return touchingPanelEdge ;
}
return false ;
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : updateDynamicBackgroundWindowFlags ( )
2017-12-24 21:54:45 +03:00
{
bool foundSnap { false } ;
bool foundMaximized { false } ;
//! the notification window is not sending a remove signal and creates windows of geometry (0x0 0,0),
//! maybe a garbage collector here is a good idea!!!
bool existsFaultyWindow { false } ;
2018-10-14 13:54:09 +03:00
WindowId maxWinId ;
WindowId snapWinId ;
2017-12-24 21:54:45 +03:00
for ( const auto & winfo : windows ) {
2018-10-26 18:47:13 +03:00
if ( isMaximizedInCurrentScreen ( winfo ) ) {
foundMaximized = true ;
maxWinId = winfo . wid ( ) ;
}
2017-12-24 21:54:45 +03:00
2018-10-26 18:47:13 +03:00
if ( winfo . isActive ( ) & & isTouchingPanelEdge ( winfo ) ) {
foundSnap = true ;
snapWinId = winfo . wid ( ) ;
2017-12-24 21:54:45 +03:00
}
2018-10-26 18:47:13 +03:00
if ( ! existsFaultyWindow & & winfo . geometry ( ) = = QRect ( 0 , 0 , 0 , 0 ) ) {
2017-12-24 21:54:45 +03:00
existsFaultyWindow = true ;
}
//qDebug() << "window geometry ::: " << winfo.geometry();
}
2018-10-26 18:47:13 +03:00
//! active windows that are touching the panel edge should have a higher priority
//! this is why are identified first
if ( ! foundSnap ) {
for ( const auto & winfo : windows ) {
if ( ( winfo . isKeepAbove ( ) & & isTouchingPanelEdge ( winfo ) )
| | ( ! winfo . isActive ( ) & & snappedWindowsGeometries . contains ( winfo . geometry ( ) ) ) ) {
foundSnap = true ;
snapWinId = winfo . wid ( ) ;
break ;
}
}
}
2017-12-24 21:54:45 +03:00
if ( existsFaultyWindow ) {
2018-01-04 19:36:41 +03:00
cleanupFaultyWindows ( ) ;
2017-12-24 21:54:45 +03:00
}
/*if (!foundMaximized && !foundSnap) {
qDebug ( ) < < " SCREEN GEOMETRY : " < < availableScreenGeometry ;
qDebug ( ) < < " SNAPS ::: " < < snappedWindowsGeometries ;
}
qDebug ( ) < < " FOUND ::: " < < foundMaximized < < foundSnap ; */
setExistsWindowMaximized ( foundMaximized ) ;
setExistsWindowSnapped ( foundSnap ) ;
2018-10-14 13:54:09 +03:00
//! update color scheme for touching window
if ( foundSnap ) {
//! first the snap one because that would mean it is active
setTouchingWindowScheme ( wm - > schemeForWindow ( snapWinId ) ) ;
} else if ( foundMaximized ) {
setTouchingWindowScheme ( wm - > schemeForWindow ( maxWinId ) ) ;
} else {
setTouchingWindowScheme ( nullptr ) ;
}
2017-12-24 21:54:45 +03:00
}
2018-03-28 20:39:52 +03:00
//! KWin Edges Support functions
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : enableKWinEdges ( ) const
{
return enableKWinEdgesFromUser ;
}
void VisibilityManager : : setEnableKWinEdges ( bool enable )
2018-03-28 20:39:52 +03:00
{
if ( enableKWinEdgesFromUser = = enable ) {
return ;
}
enableKWinEdgesFromUser = enable ;
2018-12-20 19:59:38 +03:00
emit enableKWinEdgesChanged ( ) ;
2018-03-28 20:39:52 +03:00
updateKWinEdgesSupport ( ) ;
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : updateKWinEdgesSupport ( )
2018-03-28 20:39:52 +03:00
{
2018-12-20 19:59:38 +03:00
if ( m_mode = = Types : : AutoHide
| | m_mode = = Types : : DodgeActive
| | m_mode = = Types : : DodgeAllWindows
| | m_mode = = Types : : DodgeMaximized ) {
2018-03-28 20:39:52 +03:00
if ( enableKWinEdgesFromUser ) {
createEdgeGhostWindow ( ) ;
} else if ( ! enableKWinEdgesFromUser ) {
deleteEdgeGhostWindow ( ) ;
}
2018-12-20 19:59:38 +03:00
} else if ( m_mode = = Types : : AlwaysVisible
| | m_mode = = Types : : WindowsGoBelow ) {
2018-03-28 20:39:52 +03:00
deleteEdgeGhostWindow ( ) ;
}
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : createEdgeGhostWindow ( )
2018-03-28 20:39:52 +03:00
{
if ( ! edgeGhostWindow ) {
2018-12-09 01:29:35 +03:00
edgeGhostWindow = new ScreenEdgeGhostWindow ( m_latteView ) ;
2018-03-28 20:39:52 +03:00
2018-12-06 17:09:42 +03:00
wm - > setViewExtraFlags ( * edgeGhostWindow ) ;
2018-03-28 20:39:52 +03:00
2018-12-09 01:29:35 +03:00
connect ( edgeGhostWindow , & ScreenEdgeGhostWindow : : containsMouseChanged , this , [ = ] ( bool contains ) {
2018-11-13 20:06:33 +03:00
if ( contains ) {
2018-12-20 19:59:38 +03:00
emit mustBeShown ( ) ;
2018-11-13 20:06:33 +03:00
}
2018-03-28 20:39:52 +03:00
} ) ;
connectionsKWinEdges [ 0 ] = connect ( wm , & WindowSystem : : currentActivityChanged ,
this , [ & ] ( ) {
2018-12-07 19:55:35 +03:00
bool inCurrentLayout = ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Types : : SingleLayout | |
( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Types : : MultipleLayouts
2018-12-06 13:51:15 +03:00
& & m_latteView - > managedLayout ( ) & & ! m_latteView - > positioner ( ) - > inLocationChangeAnimation ( )
2018-12-06 15:35:34 +03:00
& & m_latteView - > managedLayout ( ) - > name ( ) = = m_corona - > layoutManager ( ) - > currentLayoutName ( ) ) ) ;
2018-03-28 20:39:52 +03:00
if ( edgeGhostWindow ) {
if ( inCurrentLayout ) {
2018-12-20 19:59:38 +03:00
wm - > setEdgeStateFor ( edgeGhostWindow , m_isHidden ) ;
2018-03-28 20:39:52 +03:00
} else {
wm - > setEdgeStateFor ( edgeGhostWindow , false ) ;
}
}
} ) ;
2018-12-20 19:59:38 +03:00
emit supportsKWinEdgesChanged ( ) ;
2018-03-28 20:39:52 +03:00
}
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : deleteEdgeGhostWindow ( )
2018-03-28 20:39:52 +03:00
{
if ( edgeGhostWindow ) {
edgeGhostWindow - > deleteLater ( ) ;
edgeGhostWindow = nullptr ;
for ( auto & c : connectionsKWinEdges ) {
disconnect ( c ) ;
}
2018-12-20 19:59:38 +03:00
emit supportsKWinEdgesChanged ( ) ;
2018-03-28 20:39:52 +03:00
}
}
2018-10-28 11:03:22 +03:00
//! Window Functions
2018-12-20 19:59:38 +03:00
void VisibilityManager : : requestToggleMaximizeForActiveWindow ( )
2018-10-28 22:10:08 +03:00
{
WindowInfoWrap actInfo = wm - > requestInfoActive ( ) ;
//active window can be toggled only when it is in the same screen
2018-12-06 13:51:15 +03:00
if ( actInfo . isValid ( ) & & ! actInfo . geometry ( ) . isNull ( ) & & m_latteView - > screenGeometry ( ) . contains ( actInfo . geometry ( ) . center ( ) ) ) {
2018-10-28 22:10:08 +03:00
wm - > requestToggleMaximized ( actInfo . wid ( ) ) ;
}
}
2018-12-20 19:59:38 +03:00
void VisibilityManager : : requestMoveActiveWindow ( int localX , int localY )
2018-10-28 11:03:22 +03:00
{
2018-10-28 22:10:08 +03:00
WindowInfoWrap actInfo = wm - > requestInfoActive ( ) ;
//active window can be dragged only when it is in the same screen
2018-12-06 13:51:15 +03:00
if ( actInfo . isValid ( ) & & ! actInfo . geometry ( ) . isNull ( ) & & m_latteView - > screenGeometry ( ) . contains ( actInfo . geometry ( ) . center ( ) ) ) {
QPoint globalPoint { m_latteView - > x ( ) + localX , m_latteView - > y ( ) + localY } ;
2018-10-28 22:10:08 +03:00
wm - > requestMoveWindow ( actInfo . wid ( ) , globalPoint ) ;
}
2018-10-28 11:03:22 +03:00
}
2018-12-20 19:59:38 +03:00
bool VisibilityManager : : activeWindowCanBeDragged ( )
2018-10-28 11:03:22 +03:00
{
2018-10-28 22:10:08 +03:00
WindowInfoWrap actInfo = wm - > requestInfoActive ( ) ;
//active window can be dragged only when it is in the same screen
2018-12-06 13:51:15 +03:00
if ( actInfo . isValid ( ) & & ! actInfo . geometry ( ) . isNull ( ) & & m_latteView - > screenGeometry ( ) . contains ( actInfo . geometry ( ) . center ( ) ) ) {
2018-10-28 22:10:08 +03:00
return wm - > windowCanBeDragged ( actInfo . wid ( ) ) ;
}
return false ;
2018-10-28 11:03:22 +03:00
}
2016-12-29 08:40:35 +03:00
//! END: VisibilityManager implementation
2018-10-28 11:03:22 +03:00
2016-12-25 10:25:27 +03:00
}
2018-12-09 01:29:35 +03:00
}