2017-07-02 16:12:58 +03:00
/*
* Copyright 2017 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/>.
*/
2018-01-07 19:33:18 +02:00
# include "layout.h"
2017-07-02 16:12:58 +03:00
2018-01-07 19:59:18 +02:00
# include "screenpool.h"
# include <QDir>
2017-07-02 16:12:58 +03:00
# include <QFile>
# include <KSharedConfig>
namespace Latte {
2018-01-13 12:00:47 +02:00
const QString Layout : : MultipleLayoutsName = " .multiple-layouts_hidden " ;
2018-01-07 19:33:18 +02:00
Layout : : Layout ( QObject * parent , QString layoutFile , QString assignedName )
2017-07-02 16:12:58 +03:00
: QObject ( parent )
{
2017-07-22 10:39:35 +03:00
qDebug ( ) < < " Layout file to create object: " < < layoutFile < < " with name: " < < assignedName ;
2017-07-03 21:33:27 +03:00
2017-07-02 20:19:18 +03:00
if ( QFile ( layoutFile ) . exists ( ) ) {
2017-07-22 10:39:35 +03:00
if ( assignedName . isEmpty ( ) ) {
assignedName = layoutName ( layoutFile ) ;
2017-07-03 19:25:16 +03:00
}
2018-01-12 20:37:13 +02:00
m_filePtr = KSharedConfig : : openConfig ( layoutFile ) ;
m_layoutGroup = KConfigGroup ( m_filePtr , " LayoutSettings " ) ;
2017-07-02 16:12:58 +03:00
2017-07-03 19:25:16 +03:00
setFile ( layoutFile ) ;
2017-07-22 10:39:35 +03:00
setName ( assignedName ) ;
2017-07-03 19:50:42 +03:00
loadConfig ( ) ;
2017-07-02 20:19:18 +03:00
init ( ) ;
2017-07-02 16:12:58 +03:00
}
}
2018-01-07 19:33:18 +02:00
Layout : : ~ Layout ( )
2017-07-02 16:12:58 +03:00
{
2017-07-17 22:07:04 +03:00
if ( ! m_layoutFile . isEmpty ( ) ) {
2017-07-20 11:27:22 +03:00
//saveConfig();
2017-07-17 22:07:04 +03:00
m_layoutGroup . sync ( ) ;
}
2018-01-10 19:48:23 +02:00
}
2018-01-08 19:21:34 +02:00
2018-01-10 19:48:23 +02:00
void Layout : : unloadContainments ( )
{
if ( ! m_corona ) {
return ;
}
qDebug ( ) < < " Layout - " + name ( ) + " unload: containments ... size: " < < m_containments . size ( ) ;
2018-01-11 21:11:46 +02:00
foreach ( auto view , m_dockViews ) {
view - > disconnectSensitiveSignals ( ) ;
}
foreach ( auto view , m_waitingDockViews ) {
view - > disconnectSensitiveSignals ( ) ;
}
QList < Plasma : : Containment * > systrays ;
//!identify systrays and unload them first
foreach ( auto containment , m_containments ) {
if ( Plasma : : Applet * parentApplet = qobject_cast < Plasma : : Applet * > ( containment - > parent ( ) ) ) {
systrays . append ( containment ) ;
}
}
while ( ! systrays . isEmpty ( ) ) {
Plasma : : Containment * systray = systrays . at ( 0 ) ;
systrays . removeFirst ( ) ;
m_containments . removeAll ( systray ) ;
delete systray ;
}
2018-01-10 19:48:23 +02:00
while ( ! m_containments . isEmpty ( ) ) {
Plasma : : Containment * containment = m_containments . at ( 0 ) ;
m_containments . removeFirst ( ) ;
delete containment ;
}
2018-01-08 19:21:34 +02:00
}
void Layout : : unloadDockViews ( )
{
2018-01-10 19:48:23 +02:00
if ( ! m_corona ) {
return ;
}
qDebug ( ) < < " Layout - " + name ( ) + " unload: dockViews ... size: " < < m_dockViews . size ( ) ;
2018-01-08 19:21:34 +02:00
qDeleteAll ( m_dockViews ) ;
qDeleteAll ( m_waitingDockViews ) ;
m_dockViews . clear ( ) ;
m_waitingDockViews . clear ( ) ;
2017-07-02 16:12:58 +03:00
}
2018-01-07 19:33:18 +02:00
void Layout : : init ( )
2017-07-02 20:19:18 +03:00
{
2018-01-07 19:33:18 +02:00
connect ( this , & Layout : : activitiesChanged , this , & Layout : : saveConfig ) ;
connect ( this , & Layout : : versionChanged , this , & Layout : : saveConfig ) ;
connect ( this , & Layout : : colorChanged , this , & Layout : : saveConfig ) ;
connect ( this , & Layout : : showInMenuChanged , this , & Layout : : saveConfig ) ;
connect ( this , & Layout : : launchersChanged , this , & Layout : : saveConfig ) ;
2017-07-02 20:19:18 +03:00
}
2018-01-08 19:21:34 +02:00
void Layout : : initToCorona ( DockCorona * corona )
{
m_corona = corona ;
2018-01-10 19:48:23 +02:00
foreach ( auto containment , m_corona - > containments ( ) ) {
2018-01-13 12:00:47 +02:00
if ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Dock : : SingleLayout ) {
addContainment ( containment ) ;
} else if ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Dock : : MultipleLayouts ) {
QString layoutId = containment - > config ( ) . readEntry ( " layoutId " , QString ( ) ) ;
if ( ! layoutId . isEmpty ( ) & & ( layoutId = = m_layoutName ) ) {
addContainment ( containment ) ;
}
}
2018-01-10 19:48:23 +02:00
}
qDebug ( ) < < " Layout ::::: " < < name ( ) < < " added contaiments ::: " < < m_containments . size ( ) ;
connect ( m_corona , & Plasma : : Corona : : containmentAdded , this , & Layout : : addContainment ) ;
2018-01-08 19:21:34 +02:00
}
2018-01-07 19:33:18 +02:00
int Layout : : version ( ) const
2017-07-02 20:19:18 +03:00
{
return m_version ;
}
2018-01-07 19:33:18 +02:00
void Layout : : setVersion ( int ver )
2017-07-02 20:19:18 +03:00
{
if ( m_version = = ver ) {
return ;
}
m_version = ver ;
emit versionChanged ( ) ;
}
2018-01-07 19:33:18 +02:00
bool Layout : : showInMenu ( ) const
2017-07-17 18:31:43 +03:00
{
return m_showInMenu ;
}
2018-01-07 19:33:18 +02:00
void Layout : : setShowInMenu ( bool show )
2017-07-17 18:31:43 +03:00
{
if ( m_showInMenu = = show ) {
return ;
}
m_showInMenu = show ;
emit showInMenuChanged ( ) ;
}
2018-01-07 19:33:18 +02:00
QString Layout : : name ( ) const
2017-07-03 19:25:16 +03:00
{
return m_layoutName ;
}
2018-01-07 19:33:18 +02:00
void Layout : : setName ( QString name )
2017-07-03 19:25:16 +03:00
{
if ( m_layoutName = = name ) {
return ;
}
2017-07-03 21:33:27 +03:00
qDebug ( ) < < " Layout name: " < < name ;
2017-07-03 19:25:16 +03:00
m_layoutName = name ;
emit nameChanged ( ) ;
}
2018-01-07 19:33:18 +02:00
QString Layout : : color ( ) const
2017-07-04 16:53:55 +03:00
{
return m_color ;
}
2018-01-07 19:33:18 +02:00
void Layout : : setColor ( QString color )
2017-07-04 16:53:55 +03:00
{
if ( m_color = = color ) {
return ;
}
m_color = color ;
emit colorChanged ( ) ;
}
2017-07-03 19:25:16 +03:00
2018-01-07 19:33:18 +02:00
QString Layout : : file ( ) const
2017-07-03 19:25:16 +03:00
{
return m_layoutFile ;
}
2018-01-07 19:33:18 +02:00
void Layout : : setFile ( QString file )
2017-07-03 19:25:16 +03:00
{
if ( m_layoutFile = = file ) {
return ;
}
2017-07-03 21:33:27 +03:00
qDebug ( ) < < " Layout file: " < < file ;
2017-07-03 19:25:16 +03:00
m_layoutFile = file ;
emit fileChanged ( ) ;
}
2018-01-07 19:33:18 +02:00
QStringList Layout : : launchers ( ) const
2017-07-02 21:02:27 +03:00
{
2017-07-24 17:47:53 +03:00
return m_launchers ;
2017-07-02 21:02:27 +03:00
}
2018-01-07 19:33:18 +02:00
void Layout : : setLaunchers ( QStringList launcherList )
2017-07-02 21:02:27 +03:00
{
2017-07-24 17:56:07 +03:00
if ( m_launchers = = launcherList )
2017-07-02 21:02:27 +03:00
return ;
2017-07-24 17:56:07 +03:00
m_launchers = launcherList ;
2017-07-02 21:02:27 +03:00
2017-07-24 17:47:53 +03:00
emit launchersChanged ( ) ;
2017-07-02 21:02:27 +03:00
}
2018-01-07 19:33:18 +02:00
QStringList Layout : : activities ( ) const
2017-07-17 18:31:43 +03:00
{
return m_activities ;
}
2018-01-07 19:59:18 +02:00
void Layout : : setActivities ( QStringList activities )
2017-07-17 18:31:43 +03:00
{
if ( m_activities = = activities ) {
return ;
}
m_activities = activities ;
emit activitiesChanged ( ) ;
}
2018-01-07 19:33:18 +02:00
bool Layout : : fileIsBroken ( ) const
2017-07-27 22:00:51 +03:00
{
if ( m_layoutFile . isEmpty ( ) | | ! QFile ( m_layoutFile ) . exists ( ) ) {
return false ;
}
KSharedConfigPtr lFile = KSharedConfig : : openConfig ( m_layoutFile ) ;
KConfigGroup containmentsEntries = KConfigGroup ( lFile , " Containments " ) ;
QStringList ids ;
ids < < containmentsEntries . groupList ( ) ;
2017-08-20 23:55:35 +03:00
QStringList conts ;
conts < < ids ;
QStringList applets ;
2017-07-27 22:00:51 +03:00
foreach ( auto cId , containmentsEntries . groupList ( ) ) {
auto appletsEntries = containmentsEntries . group ( cId ) . group ( " Applets " ) ;
ids < < appletsEntries . groupList ( ) ;
2017-08-20 23:55:35 +03:00
applets < < appletsEntries . groupList ( ) ;
2017-07-27 22:00:51 +03:00
}
QSet < QString > idsSet = QSet < QString > : : fromList ( ids ) ;
2017-08-20 23:55:35 +03:00
QMap < QString , int > countOfStrings ;
for ( int i = 0 ; i < ids . count ( ) ; i + + ) {
countOfStrings [ ids [ i ] ] + + ;
}
2017-07-27 22:00:51 +03:00
if ( idsSet . count ( ) ! = ids . count ( ) ) {
2017-08-20 23:55:35 +03:00
qDebug ( ) < < " ---- ERROR: BROKEN LAYOUT ---- " ;
foreach ( QString c , conts ) {
if ( applets . contains ( c ) ) {
qDebug ( ) < < " Error: Same applet and containment id found ::: " < < c ;
}
}
for ( int i = 0 ; i < ids . count ( ) ; + + i ) {
for ( int j = i + 1 ; j < ids . count ( ) ; + + j ) {
if ( ids [ i ] = = ids [ j ] ) {
qDebug ( ) < < " Error: Applets with same id ::: " < < ids [ i ] ;
}
}
}
2017-07-27 22:00:51 +03:00
return true ;
}
return false ;
}
2018-01-07 19:33:18 +02:00
QString Layout : : layoutName ( const QString & fileName )
2017-07-22 10:39:35 +03:00
{
int lastSlash = fileName . lastIndexOf ( " / " ) ;
QString tempLayoutFile = fileName ;
QString layoutName = tempLayoutFile . remove ( 0 , lastSlash + 1 ) ;
int ext = layoutName . lastIndexOf ( " .layout.latte " ) ;
layoutName = layoutName . remove ( ext , 13 ) ;
return layoutName ;
}
2018-01-07 19:33:18 +02:00
void Layout : : loadConfig ( )
2017-07-02 20:19:18 +03:00
{
2017-07-03 19:50:42 +03:00
m_version = m_layoutGroup . readEntry ( " version " , 2 ) ;
2017-07-04 16:53:55 +03:00
m_color = m_layoutGroup . readEntry ( " color " , QString ( " blue " ) ) ;
2017-07-17 18:31:43 +03:00
m_showInMenu = m_layoutGroup . readEntry ( " showInMenu " , false ) ;
m_activities = m_layoutGroup . readEntry ( " activities " , QStringList ( ) ) ;
2017-07-24 17:47:53 +03:00
m_launchers = m_layoutGroup . readEntry ( " launchers " , QStringList ( ) ) ;
2017-07-02 20:19:18 +03:00
}
2018-01-07 19:33:18 +02:00
void Layout : : saveConfig ( )
2017-07-02 20:19:18 +03:00
{
2017-07-03 19:50:42 +03:00
qDebug ( ) < < " layout is saving... for layout: " < < m_layoutName ;
2017-07-02 20:19:18 +03:00
m_layoutGroup . writeEntry ( " version " , m_version ) ;
2017-07-17 18:31:43 +03:00
m_layoutGroup . writeEntry ( " showInMenu " , m_showInMenu ) ;
2017-07-04 16:53:55 +03:00
m_layoutGroup . writeEntry ( " color " , m_color ) ;
2017-07-24 17:47:53 +03:00
m_layoutGroup . writeEntry ( " launchers " , m_launchers ) ;
2017-07-17 18:31:43 +03:00
m_layoutGroup . writeEntry ( " activities " , m_activities ) ;
2017-07-24 18:27:53 +03:00
m_layoutGroup . sync ( ) ;
2017-07-02 20:19:18 +03:00
}
2018-01-07 19:59:18 +02:00
//! Containments Actions
2018-01-10 19:48:23 +02:00
void Layout : : addContainment ( Plasma : : Containment * containment )
{
if ( m_containments . contains ( containment ) ) {
return ;
}
2018-01-13 12:00:47 +02:00
bool containmentInLayout { false } ;
if ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Dock : : SingleLayout ) {
m_containments . append ( containment ) ;
containmentInLayout = true ;
} else if ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Dock : : MultipleLayouts ) {
QString layoutId = containment - > config ( ) . readEntry ( " layoutId " , QString ( ) ) ;
if ( ! layoutId . isEmpty ( ) & & ( layoutId = = m_layoutName ) ) {
m_containments . append ( containment ) ;
containmentInLayout = true ;
}
}
if ( containmentInLayout ) {
connect ( containment , & QObject : : destroyed , this , & Layout : : containmentDestroyed ) ;
}
2018-01-10 19:48:23 +02:00
}
2018-01-08 19:21:34 +02:00
QHash < const Plasma : : Containment * , DockView * > * Layout : : dockViews ( )
{
return & m_dockViews ;
}
2018-01-13 12:55:13 +02:00
const QStringList Layout : : appliedActivities ( )
{
if ( ! m_corona ) {
return { } ;
}
if ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Dock : : SingleLayout ) {
return { " 0 " } ;
} else if ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Dock : : MultipleLayouts ) {
if ( m_activities . isEmpty ( ) ) {
return m_corona - > layoutManager ( ) - > orphanedActivities ( ) ;
} else {
return m_activities ;
}
}
}
2018-01-08 19:21:34 +02:00
void Layout : : destroyedChanged ( bool destroyed )
{
if ( ! m_corona ) {
return ;
}
qDebug ( ) < < " dock containment destroyed changed!!!! " ;
Plasma : : Containment * sender = qobject_cast < Plasma : : Containment * > ( QObject : : sender ( ) ) ;
if ( ! sender ) {
return ;
}
if ( destroyed ) {
m_waitingDockViews [ sender ] = m_dockViews . take ( static_cast < Plasma : : Containment * > ( sender ) ) ;
} else {
m_dockViews [ sender ] = m_waitingDockViews . take ( static_cast < Plasma : : Containment * > ( sender ) ) ;
}
emit m_corona - > docksCountChanged ( ) ;
emit m_corona - > availableScreenRectChanged ( ) ;
emit m_corona - > availableScreenRegionChanged ( ) ;
}
2018-01-10 19:48:23 +02:00
void Layout : : containmentDestroyed ( QObject * cont )
2018-01-08 19:21:34 +02:00
{
if ( ! m_corona ) {
return ;
}
2018-01-10 19:48:23 +02:00
Plasma : : Containment * containment = static_cast < Plasma : : Containment * > ( cont ) ;
2018-01-08 19:21:34 +02:00
2018-01-10 19:48:23 +02:00
if ( containment ) {
int containmentIndex = m_containments . indexOf ( containment ) ;
2018-01-08 19:21:34 +02:00
2018-01-10 19:48:23 +02:00
if ( containmentIndex > = 0 ) {
m_containments . removeAt ( containmentIndex ) ;
}
2018-01-08 19:21:34 +02:00
2018-01-10 19:48:23 +02:00
qDebug ( ) < < " Layout " < < name ( ) < < " :: containment destroyed!!!! " ;
auto view = m_dockViews . take ( containment ) ;
if ( ! view ) {
view = m_waitingDockViews . take ( containment ) ;
}
if ( view ) {
view - > deleteLater ( ) ;
emit m_corona - > docksCountChanged ( ) ;
emit m_corona - > availableScreenRectChanged ( ) ;
emit m_corona - > availableScreenRegionChanged ( ) ;
}
}
2018-01-08 19:21:34 +02:00
}
void Layout : : addDock ( Plasma : : Containment * containment , bool forceLoading , int expDockScreen )
{
if ( ! containment | | ! m_corona | | ! containment - > kPackage ( ) . isValid ( ) ) {
qWarning ( ) < < " the requested containment plugin can not be located or loaded " ;
return ;
}
auto metadata = containment - > kPackage ( ) . metadata ( ) ;
if ( metadata . pluginId ( ) ! = " org.kde.latte.containment " )
return ;
for ( auto * dock : m_dockViews ) {
if ( dock - > containment ( ) = = containment )
return ;
}
QScreen * nextScreen { qGuiApp - > primaryScreen ( ) } ;
bool onPrimary = containment - > config ( ) . readEntry ( " onPrimary " , true ) ;
int id = containment - > screen ( ) ;
if ( id = = - 1 & & expDockScreen = = - 1 ) {
id = containment - > lastScreen ( ) ;
}
if ( expDockScreen > - 1 ) {
id = expDockScreen ;
}
qDebug ( ) < < " add dock - containment id: " < < containment - > id ( ) < < " ,screen id : " < < id < < " ,onprimary: " < < onPrimary < < " ,forceDockLoad: " < < forceLoading ;
if ( id > = 0 & & ! onPrimary & & ! forceLoading ) {
QString connector = m_corona - > screenPool ( ) - > connector ( id ) ;
qDebug ( ) < < " add dock - connector : " < < connector ;
bool found { false } ;
foreach ( auto scr , qGuiApp - > screens ( ) ) {
if ( scr & & scr - > name ( ) = = connector ) {
found = true ;
nextScreen = scr ;
break ;
}
}
if ( ! found ) {
qDebug ( ) < < " adding dock rejected, screen not available : " < < connector ;
return ;
}
} else if ( onPrimary ) {
if ( m_corona - > explicitDockOccupyEdge ( m_corona - > screenPool ( ) - > primaryScreenId ( ) , containment - > location ( ) ) ) {
//we must check that an onPrimary dock should never catch up the same edge on
//the same screen with an explicit dock
return ;
}
}
qDebug ( ) < < " Adding dock for container... " ;
qDebug ( ) < < " onPrimary: " < < onPrimary < < " screen!!! : " < < nextScreen - > name ( ) ;
//! it is used to set the correct flag during the creation
//! of the window... This of course is also used during
//! recreations of the window between different visibility modes
auto mode = static_cast < Dock : : Visibility > ( containment - > config ( ) . readEntry ( " visibility " , static_cast < int > ( Dock : : DodgeActive ) ) ) ;
bool dockWin { true } ;
if ( mode = = Dock : : AlwaysVisible | | mode = = Dock : : WindowsGoBelow ) {
dockWin = true ;
} else {
dockWin = containment - > config ( ) . readEntry ( " dockWindowBehavior " , true ) ;
}
auto dockView = new DockView ( m_corona , nextScreen , dockWin ) ;
dockView - > init ( ) ;
dockView - > setContainment ( containment ) ;
2018-01-10 22:55:19 +02:00
dockView - > setManagedLayout ( this ) ;
2018-01-08 19:21:34 +02:00
//! force this special dock case to become primary
//! even though it isnt
if ( forceLoading ) {
dockView - > setOnPrimary ( true ) ;
}
2018-01-10 19:48:23 +02:00
// connect(containment, &QObject::destroyed, this, &Layout::containmentDestroyed);
2018-01-08 19:21:34 +02:00
connect ( containment , & Plasma : : Applet : : destroyedChanged , this , & Layout : : destroyedChanged ) ;
connect ( containment , & Plasma : : Applet : : locationChanged , m_corona , & DockCorona : : dockLocationChanged ) ;
connect ( containment , & Plasma : : Containment : : appletAlternativesRequested
, m_corona , & DockCorona : : showAlternativesForApplet , Qt : : QueuedConnection ) ;
//! Qt 5.9 creates a crash for this in wayland, that is why the check is used
//! but on the other hand we need this for copy to work correctly and show
//! the copied dock under X11
//if (!KWindowSystem::isPlatformWayland()) {
dockView - > show ( ) ;
//}
m_dockViews [ containment ] = dockView ;
emit m_corona - > docksCountChanged ( ) ;
}
2018-01-07 19:59:18 +02:00
void Layout : : copyDock ( Plasma : : Containment * containment )
{
if ( ! containment | | ! m_corona )
return ;
qDebug ( ) < < " copying containment layout " ;
//! Settting mutable for create a containment
m_corona - > setImmutability ( Plasma : : Types : : Mutable ) ;
QString temp1File = QDir : : homePath ( ) + " /.config/lattedock.copy1.bak " ;
//! WE NEED A WAY TO COPY A CONTAINMENT!!!!
QFile copyFile ( temp1File ) ;
if ( copyFile . exists ( ) )
copyFile . remove ( ) ;
KSharedConfigPtr newFile = KSharedConfig : : openConfig ( QDir : : homePath ( ) + " /.config/lattedock.copy1.bak " ) ;
KConfigGroup copied_conts = KConfigGroup ( newFile , " Containments " ) ;
KConfigGroup copied_c1 = KConfigGroup ( & copied_conts , QString : : number ( containment - > id ( ) ) ) ;
KConfigGroup copied_systray ;
2018-01-13 03:08:32 +02:00
// toCopyContainmentIds << QString::number(containment->id());
// toCopyAppletIds << containment->config().group("Applets").groupList();
2018-01-07 19:59:18 +02:00
containment - > config ( ) . copyTo ( & copied_c1 ) ;
//!investigate if there is a systray in the containment to copy also
int systrayId = - 1 ;
QString systrayAppletId ;
auto applets = containment - > config ( ) . group ( " Applets " ) ;
foreach ( auto applet , applets . groupList ( ) ) {
KConfigGroup appletSettings = applets . group ( applet ) . group ( " Configuration " ) ;
int tSysId = appletSettings . readEntry ( " SystrayContainmentId " , " -1 " ) . toInt ( ) ;
if ( tSysId ! = - 1 ) {
systrayId = tSysId ;
systrayAppletId = applet ;
2018-01-13 03:08:32 +02:00
qDebug ( ) < < " systray was found in the containment... ::: " < < tSysId ;
2018-01-07 19:59:18 +02:00
break ;
}
}
if ( systrayId ! = - 1 ) {
Plasma : : Containment * systray { nullptr } ;
foreach ( auto containment , m_corona - > containments ( ) ) {
if ( containment - > id ( ) = = systrayId ) {
systray = containment ;
break ;
}
}
if ( systray ) {
copied_systray = KConfigGroup ( & copied_conts , QString : : number ( systray - > id ( ) ) ) ;
2018-01-13 03:08:32 +02:00
// toCopyContainmentIds << QString::number(systray->id());
// toCopyAppletIds << systray->config().group("Applets").groupList();
2018-01-07 19:59:18 +02:00
systray - > config ( ) . copyTo ( & copied_systray ) ;
}
}
//! end of systray specific code
2018-01-13 03:08:32 +02:00
//! update ids to unique ones
QString temp2File = newUniqueIdsLayoutFromFile ( temp1File ) ;
2018-01-07 19:59:18 +02:00
//! Finally import the configuration
2018-01-13 03:08:32 +02:00
QList < Plasma : : Containment * > importedDocks = importLayoutFile ( temp2File ) ;
2018-01-07 19:59:18 +02:00
Plasma : : Containment * newContainment { nullptr } ;
2018-01-13 03:08:32 +02:00
if ( importedDocks . size ( ) = = 1 ) {
newContainment = importedDocks [ 0 ] ;
2018-01-07 19:59:18 +02:00
}
if ( ! newContainment | | ! newContainment - > kPackage ( ) . isValid ( ) ) {
qWarning ( ) < < " the requested containment plugin can not be located or loaded " ;
return ;
}
auto config = newContainment - > config ( ) ;
//in multi-screen environment the copied dock is moved to alternative screens first
const auto screens = qGuiApp - > screens ( ) ;
2018-01-08 19:21:34 +02:00
auto dock = m_dockViews [ containment ] ;
2018-01-07 19:59:18 +02:00
bool setOnExplicitScreen = false ;
int dockScrId = - 1 ;
int copyScrId = - 1 ;
if ( dock ) {
dockScrId = m_corona - > screenPool ( ) - > id ( dock - > currentScreen ( ) ) ;
qDebug ( ) < < " COPY DOCK SCREEN ::: " < < dockScrId ;
if ( dockScrId ! = - 1 & & screens . count ( ) > 1 ) {
foreach ( auto scr , screens ) {
copyScrId = m_corona - > screenPool ( ) - > id ( scr - > name ( ) ) ;
//the screen must exist and not be the same with the original dock
if ( copyScrId > - 1 & & copyScrId ! = dockScrId ) {
QList < Plasma : : Types : : Location > fEdges = m_corona - > freeEdges ( copyScrId ) ;
if ( fEdges . contains ( ( Plasma : : Types : : Location ) containment - > location ( ) ) ) {
///set this containment to an explicit screen
config . writeEntry ( " onPrimary " , false ) ;
config . writeEntry ( " lastScreen " , copyScrId ) ;
newContainment - > setLocation ( containment - > location ( ) ) ;
qDebug ( ) < < " COPY DOCK SCREEN NEW SCREEN ::: " < < copyScrId ;
setOnExplicitScreen = true ;
break ;
}
}
}
}
}
if ( ! setOnExplicitScreen ) {
QList < Plasma : : Types : : Location > edges = m_corona - > freeEdges ( newContainment - > screen ( ) ) ;
if ( edges . count ( ) > 0 ) {
newContainment - > setLocation ( edges . at ( 0 ) ) ;
} else {
newContainment - > setLocation ( Plasma : : Types : : BottomEdge ) ;
}
config . writeEntry ( " onPrimary " , false ) ;
config . writeEntry ( " lastScreen " , dockScrId ) ;
}
newContainment - > config ( ) . sync ( ) ;
if ( setOnExplicitScreen & & copyScrId > - 1 ) {
qDebug ( ) < < " Copy Dock in explicit screen ::: " < < copyScrId ;
2018-01-08 19:21:34 +02:00
addDock ( newContainment , copyScrId ) ;
2018-01-07 19:59:18 +02:00
newContainment - > reactToScreenChange ( ) ;
} else {
qDebug ( ) < < " Copy Dock in current screen... " ;
2018-01-08 19:21:34 +02:00
addDock ( newContainment , dockScrId ) ;
2018-01-07 19:59:18 +02:00
}
}
QString Layout : : availableId ( QStringList all , QStringList assigned , int base )
{
bool found = false ;
int i = base ;
2018-01-13 03:08:32 +02:00
while ( ! found & & i < 32000 ) {
2018-01-07 19:59:18 +02:00
QString iStr = QString : : number ( i ) ;
if ( ! all . contains ( iStr ) & & ! assigned . contains ( iStr ) ) {
return iStr ;
}
i + + ;
}
return QString ( " " ) ;
}
2018-01-13 03:08:32 +02:00
QString Layout : : newUniqueIdsLayoutFromFile ( QString file )
{
if ( ! m_corona ) {
return QString ( ) ;
}
QString tempFile = QDir : : homePath ( ) + " /.config/lattedock.copy2.bak " ;
QFile copyFile ( tempFile ) ;
if ( copyFile . exists ( ) )
copyFile . remove ( ) ;
//! BEGIN updating the ids in the temp file
QStringList allIds ;
allIds < < m_corona - > containmentsIds ( ) ;
allIds < < m_corona - > appletsIds ( ) ;
QStringList toInvestigateContainmentIds ;
QStringList toInvestigateAppletIds ;
QStringList toInvestigateSystrayContIds ;
//! first is the systray containment id
QHash < QString , QString > systrayParentContainmentIds ;
QHash < QString , QString > systrayAppletIds ;
//qDebug() << "Ids:" << allIds;
//qDebug() << "to copy containments: " << toCopyContainmentIds;
//qDebug() << "to copy applets: " << toCopyAppletIds;
QStringList assignedIds ;
QHash < QString , QString > assigned ;
KSharedConfigPtr filePtr = KSharedConfig : : openConfig ( file ) ;
KConfigGroup investigate_conts = KConfigGroup ( filePtr , " Containments " ) ;
//KConfigGroup copied_c1 = KConfigGroup(&copied_conts, QString::number(containment->id()));
//! Record the containment and applet ids
foreach ( auto cId , investigate_conts . groupList ( ) ) {
toInvestigateContainmentIds < < cId ;
auto appletsEntries = investigate_conts . group ( cId ) . group ( " Applets " ) ;
toInvestigateAppletIds < < appletsEntries . groupList ( ) ;
//! investigate for systrays
foreach ( auto appletId , appletsEntries . groupList ( ) ) {
KConfigGroup appletSettings = appletsEntries . group ( appletId ) . group ( " Configuration " ) ;
QString tSysId = appletSettings . readEntry ( " SystrayContainmentId " , " -1 " ) ;
//! It is a systray !!!
if ( tSysId ! = " -1 " ) {
toInvestigateSystrayContIds < < tSysId ;
systrayParentContainmentIds [ tSysId ] = cId ;
systrayAppletIds [ tSysId ] = appletId ;
qDebug ( ) < < " systray was found in the containment... " ;
}
}
}
//! Reassign containment and applet ids to unique ones
foreach ( auto contId , toInvestigateContainmentIds ) {
QString newId = availableId ( allIds , assignedIds , 12 ) ;
assignedIds < < newId ;
assigned [ contId ] = newId ;
}
foreach ( auto appId , toInvestigateAppletIds ) {
QString newId = availableId ( allIds , assignedIds , 40 ) ;
assignedIds < < newId ;
assigned [ appId ] = newId ;
}
qDebug ( ) < < " full assignments ::: " < < assigned ;
2018-01-13 12:00:47 +02:00
//! update applet ids in their contaiment order and in MultipleLayouts update also the layoutId
2018-01-13 03:08:32 +02:00
foreach ( auto cId , investigate_conts . groupList ( ) ) {
QString order1 = investigate_conts . group ( cId ) . group ( " General " ) . readEntry ( " appletOrder " , QString ( ) ) ;
if ( ! order1 . isEmpty ( ) ) {
QStringList order1Ids = order1 . split ( " ; " ) ;
QStringList fixedOrder1Ids ;
//qDebug() << "order1 :: " << order1;
for ( int i = 0 ; i < order1Ids . count ( ) ; + + i ) {
fixedOrder1Ids . append ( assigned [ order1Ids [ i ] ] ) ;
}
QString fixedOrder1 = fixedOrder1Ids . join ( " ; " ) ;
//qDebug() << "fixed order ::: " << fixedOrder1;
investigate_conts . group ( cId ) . group ( " General " ) . writeEntry ( " appletOrder " , fixedOrder1 ) ;
}
2018-01-13 12:00:47 +02:00
if ( m_corona - > layoutManager ( ) - > memoryUsage ( ) = = Dock : : MultipleLayouts ) {
investigate_conts . group ( cId ) . writeEntry ( " layoutId " , m_layoutName ) ;
}
2018-01-13 03:08:32 +02:00
}
//! must update also the systray id in its applet
foreach ( auto systrayId , toInvestigateSystrayContIds ) {
KConfigGroup systrayParentContainment = investigate_conts . group ( systrayParentContainmentIds [ systrayId ] ) ;
systrayParentContainment . group ( " Applets " ) . group ( systrayAppletIds [ systrayId ] ) . group ( " Configuration " ) . writeEntry ( " SystrayContainmentId " , assigned [ systrayId ] ) ;
systrayParentContainment . sync ( ) ;
}
investigate_conts . sync ( ) ;
QFile ( file ) . copy ( tempFile ) ;
QFile f ( tempFile ) ;
if ( ! f . open ( QFile : : ReadOnly ) ) {
qDebug ( ) < < " temp file couldnt be opened... " ;
return QString ( ) ;
}
QTextStream in ( & f ) ;
QString fileText = in . readAll ( ) ;
foreach ( auto contId , toInvestigateContainmentIds ) {
fileText = fileText . replace ( " [Containments][ " + contId + " ] " , " [Containments][ " + assigned [ contId ] + " ] " ) ;
}
foreach ( auto appId , toInvestigateAppletIds ) {
fileText = fileText . replace ( " ][Applets][ " + appId + " ] " , " ][Applets][ " + assigned [ appId ] + " ] " ) ;
}
f . close ( ) ;
if ( ! f . open ( QFile : : WriteOnly ) ) {
qDebug ( ) < < " temp file couldnt be opened for writing... " ;
return QString ( ) ;
}
QTextStream outputStream ( & f ) ;
outputStream < < fileText ;
f . close ( ) ;
return tempFile ;
}
QList < Plasma : : Containment * > Layout : : importLayoutFile ( QString file )
{
KSharedConfigPtr filePtr = KSharedConfig : : openConfig ( file ) ;
2018-01-13 12:00:47 +02:00
auto newContainments = m_corona - > importLayout ( KConfigGroup ( filePtr , " " ) ) ;
2018-01-13 03:08:32 +02:00
///Find latte and systray containments
2018-01-13 12:00:47 +02:00
qDebug ( ) < < " imported containments ::: " < < newContainments . length ( ) ;
2018-01-13 03:08:32 +02:00
QList < Plasma : : Containment * > importedDocks ;
//QList<Plasma::Containment *> systrays;
2018-01-13 12:00:47 +02:00
foreach ( auto containment , newContainments ) {
2018-01-13 03:08:32 +02:00
KPluginMetaData meta = containment - > kPackage ( ) . metadata ( ) ;
if ( meta . pluginId ( ) = = " org.kde.latte.containment " ) {
qDebug ( ) < < " new latte containment id: " < < containment - > id ( ) ;
importedDocks < < containment ;
}
}
///after systrays were found we must update in latte the relevant ids
/*if (!systrays.isEmpty()) {
foreach ( auto systray , systrays ) {
qDebug ( ) < < " systray found with id : " < < systray - > id ( ) ;
Plasma : : Applet * parentApplet = qobject_cast < Plasma : : Applet * > ( systray - > parent ( ) ) ;
if ( parentApplet ) {
KConfigGroup appletSettings = parentApplet - > config ( ) . group ( " Configuration " ) ;
if ( appletSettings . hasKey ( " SystrayContainmentId " ) ) {
qDebug ( ) < < " !!! updating systray id to : " < < systray - > id ( ) ;
appletSettings . writeEntry ( " SystrayContainmentId " , systray - > id ( ) ) ;
}
}
}
} */
return importedDocks ;
}
2018-01-08 19:21:34 +02:00
void Layout : : recreateDock ( Plasma : : Containment * containment )
{
if ( ! m_corona ) {
return ;
}
//! give the time to config window to close itself first and then recreate the dock
//! step:1 remove the dockview
QTimer : : singleShot ( 350 , [ this , containment ] ( ) {
auto view = m_dockViews . take ( containment ) ;
if ( view ) {
qDebug ( ) < < " recreate - step 1: removing dock for containment: " < < containment - > id ( ) ;
//! step:2 add the new dockview
connect ( view , & QObject : : destroyed , this , [ this , containment ] ( ) {
QTimer : : singleShot ( 250 , this , [ this , containment ] ( ) {
if ( ! m_dockViews . contains ( containment ) ) {
qDebug ( ) < < " recreate - step 2: adding dock for containment: " < < containment - > id ( ) ;
addDock ( containment ) ;
}
} ) ;
} ) ;
view - > deleteLater ( ) ;
}
} ) ;
}
//! the central functions that updates loading/unloading dockviews
//! concerning screen changed (for multi-screen setups mainly)
void Layout : : syncDockViewsToScreens ( )
{
if ( ! m_corona ) {
return ;
}
qDebug ( ) < < " screen count changed -+-+ " < < qGuiApp - > screens ( ) . size ( ) ;
qDebug ( ) < < " adding consideration.... " ;
qDebug ( ) < < " dock view running : " < < m_dockViews . count ( ) ;
foreach ( auto scr , qGuiApp - > screens ( ) ) {
qDebug ( ) < < " Found screen: " < < scr - > name ( ) ;
foreach ( auto cont , m_corona - > containments ( ) ) {
int id = cont - > screen ( ) ;
if ( id = = - 1 ) {
id = cont - > lastScreen ( ) ;
}
bool onPrimary = cont - > config ( ) . readEntry ( " onPrimary " , true ) ;
Plasma : : Types : : Location location = static_cast < Plasma : : Types : : Location > ( ( int ) cont - > config ( ) . readEntry ( " location " , ( int ) Plasma : : Types : : BottomEdge ) ) ;
//! two main situations that a dock must be added when it is not already running
//! 1. when a dock is primary, not running and the edge for which is associated is free
//! 2. when a dock in explicit, not running and the associated screen currently exists
//! e.g. the screen has just been added
if ( ( ( onPrimary & & m_corona - > freeEdges ( qGuiApp - > primaryScreen ( ) ) . contains ( location ) ) | | ( ! onPrimary & & ( m_corona - > screenPool ( ) - > connector ( id ) = = scr - > name ( ) ) ) )
& & ( ! m_dockViews . contains ( cont ) ) ) {
qDebug ( ) < < " screen Count signal: view must be added... for: " < < scr - > name ( ) ;
addDock ( cont ) ;
}
}
}
qDebug ( ) < < " removing consideration & updating screen for always on primary docks.... " ;
//! this code tries to find a containment that must not be deleted by
//! automatic algorithm. Currently the containment with the minimum id
//! containing tasks plasmoid wins
int preserveContainmentId { - 1 } ;
bool dockWithTasksWillBeShown { false } ;
//! associate correct values for preserveContainmentId and
//! dockWithTasksWillBeShown
foreach ( auto view , m_dockViews ) {
bool found { false } ;
foreach ( auto scr , qGuiApp - > screens ( ) ) {
if ( scr - > name ( ) = = view - > currentScreen ( )
| | ( view - > onPrimary ( ) & & scr = = qGuiApp - > primaryScreen ( ) ) ) {
found = true ;
break ;
}
}
//!check if a tasks dock will be shown (try to prevent its deletion)
if ( found & & view - > tasksPresent ( ) ) {
dockWithTasksWillBeShown = true ;
}
if ( ! found & & ! view - > onPrimary ( ) & & ( m_dockViews . size ( ) > 1 ) & & m_dockViews . contains ( view - > containment ( ) )
& & ! ( view - > tasksPresent ( ) & & m_corona - > noDocksWithTasks ( ) = = 1 ) ) { //do not delete last dock containing tasks
if ( view - > tasksPresent ( ) ) {
if ( preserveContainmentId = = - 1 )
preserveContainmentId = view - > containment ( ) - > id ( ) ;
else if ( view - > containment ( ) - > id ( ) < preserveContainmentId )
preserveContainmentId = view - > containment ( ) - > id ( ) ;
}
}
}
//! check which docks must be deleted e.g. when the corresponding
//! screen does not exist any more.
//! The code is smart enough in order
//! to never delete the last tasks dock and also it makes sure that
//! the last tasks dock which will exist in the end will be the one
//! with the lowest containment id
foreach ( auto view , m_dockViews ) {
bool found { false } ;
foreach ( auto scr , qGuiApp - > screens ( ) ) {
if ( scr - > name ( ) = = view - > currentScreen ( )
| | ( view - > onPrimary ( ) & & scr = = qGuiApp - > primaryScreen ( ) ) ) {
found = true ;
break ;
}
}
//! which explicit docks can be deleted
if ( ! found & & ! view - > onPrimary ( ) & & ( m_dockViews . size ( ) > 1 ) & & m_dockViews . contains ( view - > containment ( ) )
& & ! ( view - > tasksPresent ( ) & & m_corona - > noDocksWithTasks ( ) = = 1 ) ) {
//do not delete last dock containing tasks
if ( dockWithTasksWillBeShown | | preserveContainmentId ! = view - > containment ( ) - > id ( ) ) {
qDebug ( ) < < " screen Count signal: view must be deleted... for: " < < view - > currentScreen ( ) ;
auto viewToDelete = m_dockViews . take ( view - > containment ( ) ) ;
viewToDelete - > deleteLater ( ) ;
}
//!which primary docks can be deleted
} else if ( view - > onPrimary ( ) & & ! found
& & ! m_corona - > freeEdges ( qGuiApp - > primaryScreen ( ) ) . contains ( view - > location ( ) ) ) {
qDebug ( ) < < " screen Count signal: primary view must be deleted... for: " < < view - > currentScreen ( ) ;
auto viewToDelete = m_dockViews . take ( view - > containment ( ) ) ;
viewToDelete - > deleteLater ( ) ;
} else {
//! if the dock will not be deleted its a very good point to reconsider
//! if the screen in which is running is the correct one
view - > reconsiderScreen ( ) ;
}
}
qDebug ( ) < < " end of screens count change.... " ;
}
2017-07-02 16:12:58 +03:00
}