remove all the session functionality

--the session functionality is not removed only from
globalsettings class which is just waiting to be removed
tottaly when its functionality moves to the new classes
pull/1/head
Michail Vourlakos 8 years ago
parent 091295126d
commit b15e919bab

@ -556,7 +556,7 @@ int DockCorona::noDocksWithTasks() const
int result = 0; int result = 0;
foreach (auto view, m_dockViews) { foreach (auto view, m_dockViews) {
if (view->tasksPresent() && view->session() == m_session) { if (view->tasksPresent()) {
result++; result++;
} }
} }
@ -621,14 +621,13 @@ void DockCorona::syncDockViews()
bool onPrimary = cont->config().readEntry("onPrimary", true); 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)); Plasma::Types::Location location = static_cast<Plasma::Types::Location>((int)cont->config().readEntry("location", (int)Plasma::Types::BottomEdge));
Dock::SessionType session = static_cast<Dock::SessionType>((int)cont->config().readEntry("session", (int)Dock::DefaultSession));
//! two main situations that a dock must be added when it is not already running //! 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 //! 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 //! 2. when a dock in explicit, not running and the associated screen currently exists
//! e.g. the screen has just been added //! e.g. the screen has just been added
if (((onPrimary && freeEdges(qGuiApp->primaryScreen()).contains(location)) || (!onPrimary && (m_screenPool->connector(id) == scr->name()))) if (((onPrimary && freeEdges(qGuiApp->primaryScreen()).contains(location)) || (!onPrimary && (m_screenPool->connector(id) == scr->name())))
&& (!m_dockViews.contains(cont)) && session == currentSession()) { && (!m_dockViews.contains(cont))) {
qDebug() << "screen Count signal: view must be added... for:" << scr->name(); qDebug() << "screen Count signal: view must be added... for:" << scr->name();
addDock(cont); addDock(cont);
} }
@ -689,14 +688,10 @@ void DockCorona::syncDockViews()
} }
} }
if (view->session() != currentSession()) {
qDebug() << "deleting view that does not belong in this session..."; //! which explicit docks can be deleted
auto viewToDelete = m_dockViews.take(view->containment()); if (!found && !view->onPrimary() && (m_dockViews.size() > 1) && m_dockViews.contains(view->containment())
viewToDelete->deactivateApplets(); && !(view->tasksPresent() && noDocksWithTasks() == 1)) {
viewToDelete->deleteLater();
//! which explicit docks can be deleted
} else if (!found && !view->onPrimary() && (m_dockViews.size() > 1) && m_dockViews.contains(view->containment())
&& !(view->tasksPresent() && noDocksWithTasks() == 1)) {
//do not delete last dock containing tasks //do not delete last dock containing tasks
if (dockWithTasksWillBeShown || preserveContainmentId != view->containment()->id()) { if (dockWithTasksWillBeShown || preserveContainmentId != view->containment()->id()) {
qDebug() << "screen Count signal: view must be deleted... for:" << view->currentScreen(); qDebug() << "screen Count signal: view must be deleted... for:" << view->currentScreen();
@ -791,50 +786,9 @@ void DockCorona::aboutApplication()
aboutDialog->show(); aboutDialog->show();
} }
Dock::SessionType DockCorona::currentSession() int DockCorona::noOfDocks()
{ {
return m_session; return m_dockViews.count();
}
void DockCorona::setCurrentSession(Dock::SessionType session)
{
if (m_session == session) {
return;
}
m_session = session;
emit currentSessionChanged(m_session);;
}
void DockCorona::switchToSession(Dock::SessionType session)
{
if (currentSession() == session) {
return;
}
setCurrentSession(session);
if (noDocksForSession(session) == 0) {
m_waitingSessionDocksCreation = true;
loadDefaultLayout();
} else {
m_waitingSessionDocksCreation = false;
syncDockViews();
}
}
int DockCorona::noDocksForSession(Dock::SessionType session)
{
int count{0};
foreach (auto cont, containments()) {
Dock::SessionType ses = static_cast<Dock::SessionType>(cont->config().readEntry("session", (int)Dock::DefaultSession));
if (session == ses)
count++;
}
return count;
} }
QList<Plasma::Types::Location> DockCorona::freeEdges(QScreen *screen) const QList<Plasma::Types::Location> DockCorona::freeEdges(QScreen *screen) const
@ -844,7 +798,7 @@ QList<Plasma::Types::Location> DockCorona::freeEdges(QScreen *screen) const
Types::TopEdge, Types::RightEdge}; Types::TopEdge, Types::RightEdge};
for (auto *view : m_dockViews) { for (auto *view : m_dockViews) {
if (view && view->currentScreen() == screen->name() && view->session() == m_session) { if (view && view->currentScreen() == screen->name()) {
edges.removeOne(view->location()); edges.removeOne(view->location());
} }
} }
@ -861,7 +815,7 @@ QList<Plasma::Types::Location> DockCorona::freeEdges(int screen) const
QScreen *scr = m_screenPool->screenForId(screen); QScreen *scr = m_screenPool->screenForId(screen);
for (auto *view : m_dockViews) { for (auto *view : m_dockViews) {
if (view && scr && view->currentScreen() == scr->name() && view->session() == m_session) { if (view && scr && view->currentScreen() == scr->name()) {
edges.removeOne(view->location()); edges.removeOne(view->location());
} }
} }
@ -929,14 +883,6 @@ void DockCorona::addDock(Plasma::Containment *containment, int expDockScreen)
if (metadata.pluginId() != "org.kde.latte.containment") if (metadata.pluginId() != "org.kde.latte.containment")
return; return;
int session = containment->config().readEntry("session", (int)Dock::DefaultSession);
//! when this containment does not belong to this session
if (session != currentSession() && !m_waitingSessionDocksCreation) {
return;
}
for (auto *dock : m_dockViews) { for (auto *dock : m_dockViews) {
if (dock->containment() == containment) if (dock->containment() == containment)
return; return;
@ -1012,8 +958,6 @@ void DockCorona::addDock(Plasma::Containment *containment, int expDockScreen)
dockView->setOnPrimary(true); dockView->setOnPrimary(true);
} }
dockView->setSession(currentSession());
connect(containment, &QObject::destroyed, this, &DockCorona::dockContainmentDestroyed); connect(containment, &QObject::destroyed, this, &DockCorona::dockContainmentDestroyed);
connect(containment, &Plasma::Applet::destroyedChanged, this, &DockCorona::destroyedChanged); connect(containment, &Plasma::Applet::destroyedChanged, this, &DockCorona::destroyedChanged);
connect(containment, &Plasma::Applet::locationChanged, this, &DockCorona::dockLocationChanged); connect(containment, &Plasma::Applet::locationChanged, this, &DockCorona::dockLocationChanged);
@ -1029,14 +973,6 @@ void DockCorona::addDock(Plasma::Containment *containment, int expDockScreen)
m_dockViews[containment] = dockView; m_dockViews[containment] = dockView;
if (m_waitingSessionDocksCreation) {
m_waitingSessionDocksCreation = false;
if (noDocksForSession(currentSession()) == 1) {
syncDockViews();
}
}
emit docksCountChanged(); emit docksCountChanged();
} }
@ -1172,16 +1108,12 @@ void DockCorona::loadDefaultLayout()
defaultContainment->restore(config); defaultContainment->restore(config);
QList<Plasma::Types::Location> edges = freeEdges(defaultContainment->screen()); QList<Plasma::Types::Location> edges = freeEdges(defaultContainment->screen());
if ((edges.count() > 0) && !m_waitingSessionDocksCreation) { if ((edges.count() > 0)) {
defaultContainment->setLocation(edges.at(0)); defaultContainment->setLocation(edges.at(0));
} else { } else {
defaultContainment->setLocation(Plasma::Types::BottomEdge); defaultContainment->setLocation(Plasma::Types::BottomEdge);
} }
if (currentSession() != Dock::DefaultSession) {
config.writeEntry("session", (int)currentSession());
}
defaultContainment->updateConstraints(Plasma::Types::StartupCompletedConstraint); defaultContainment->updateConstraints(Plasma::Types::StartupCompletedConstraint);
defaultContainment->save(config); defaultContainment->save(config);
@ -1353,10 +1285,6 @@ void DockCorona::copyDock(Plasma::Containment *containment)
newContainment->config().writeEntry("lastScreen", dockScrId); newContainment->config().writeEntry("lastScreen", dockScrId);
} }
if (currentSession() != Dock::DefaultSession) {
newContainment->config().writeEntry("session", (int)currentSession());
}
newContainment->updateConstraints(Plasma::Types::StartupCompletedConstraint); newContainment->updateConstraints(Plasma::Types::StartupCompletedConstraint);
newContainment->save(config); newContainment->save(config);
@ -1388,7 +1316,6 @@ bool DockCorona::heuresticForLoadingDockWithTasks()
if (plugin == "org.kde.latte.containment") { if (plugin == "org.kde.latte.containment") {
bool onPrimary = containmentsEntries.group(cId).readEntry("onPrimary", true); bool onPrimary = containmentsEntries.group(cId).readEntry("onPrimary", true);
int lastScreen = containmentsEntries.group(cId).readEntry("lastScreen", -1); int lastScreen = containmentsEntries.group(cId).readEntry("lastScreen", -1);
Dock::SessionType session = static_cast<Dock::SessionType>(containmentsEntries.group(cId).readEntry("session", (int)Dock::DefaultSession));
qDebug() << "containment values: " << onPrimary << " - " << lastScreen; qDebug() << "containment values: " << onPrimary << " - " << lastScreen;
@ -1403,7 +1330,7 @@ bool DockCorona::heuresticForLoadingDockWithTasks()
} }
} }
if (containsTasks && session == Dock::DefaultSession) { if (containsTasks) {
m_firstContainmentWithTasks = cId.toInt(); m_firstContainmentWithTasks = cId.toInt();
if (onPrimary) { if (onPrimary) {

@ -86,10 +86,6 @@ public:
void recreateDock(Plasma::Containment *containment); void recreateDock(Plasma::Containment *containment);
void copyDock(Plasma::Containment *containment); void copyDock(Plasma::Containment *containment);
Dock::SessionType currentSession();
void setCurrentSession(Dock::SessionType session);
void switchToSession(Dock::SessionType session);
void aboutApplication(); void aboutApplication();
void closeApplication(); void closeApplication();
@ -108,7 +104,6 @@ public slots:
signals: signals:
void configurationShown(PlasmaQuick::ConfigView *configView); void configurationShown(PlasmaQuick::ConfigView *configView);
void currentSessionChanged(Dock::SessionType type);
void docksCountChanged(); void docksCountChanged();
void dockLocationChanged(); void dockLocationChanged();
void raiseDocksTemporaryChanged(); void raiseDocksTemporaryChanged();
@ -136,12 +131,10 @@ private:
bool containmentContainsTasks(Plasma::Containment *cont); bool containmentContainsTasks(Plasma::Containment *cont);
bool containmentExists(uint id) const; bool containmentExists(uint id) const;
bool heuresticForLoadingDockWithTasks(); bool heuresticForLoadingDockWithTasks();
int noDocksForSession(Dock::SessionType session); int noOfDocks();
int primaryScreenId() const; int primaryScreenId() const;
bool m_activitiesStarting{true}; bool m_activitiesStarting{true};
//! used to initialize the docks when changing sessions
bool m_waitingSessionDocksCreation{false};
//! this is used to check if a dock with tasks in it will be loaded on startup //! this is used to check if a dock with tasks in it will be loaded on startup
bool m_tasksWillBeLoaded{false}; bool m_tasksWillBeLoaded{false};
//! this is used to record the first dock having tasks in it. It is used //! this is used to record the first dock having tasks in it. It is used
@ -150,7 +143,6 @@ private:
int m_firstContainmentWithTasks{ -1}; int m_firstContainmentWithTasks{ -1};
QString m_layoutDir; QString m_layoutDir;
Dock::SessionType m_session{Dock::DefaultSession};
QHash<const Plasma::Containment *, DockView *> m_dockViews; QHash<const Plasma::Containment *, DockView *> m_dockViews;
QHash<const Plasma::Containment *, DockView *> m_waitingDockViews; QHash<const Plasma::Containment *, DockView *> m_waitingDockViews;

@ -189,7 +189,6 @@ void DockView::init()
connect(this, &DockView::dockWinBehaviorChanged, this, &DockView::saveConfig); connect(this, &DockView::dockWinBehaviorChanged, this, &DockView::saveConfig);
connect(this, &DockView::onPrimaryChanged, this, &DockView::saveConfig); connect(this, &DockView::onPrimaryChanged, this, &DockView::saveConfig);
connect(this, &DockView::onPrimaryChanged, this, &DockView::reconsiderScreen); connect(this, &DockView::onPrimaryChanged, this, &DockView::reconsiderScreen);
connect(this, &DockView::sessionChanged, this, &DockView::saveConfig);
connect(this, &DockView::locationChanged, this, [&]() { connect(this, &DockView::locationChanged, this, [&]() {
updateFormFactor(); updateFormFactor();
syncGeometry(); syncGeometry();
@ -344,7 +343,7 @@ void DockView::reconsiderScreen()
//!check if the associated screen is running //!check if the associated screen is running
foreach (auto scr, qGuiApp->screens()) { foreach (auto scr, qGuiApp->screens()) {
if (m_screenToFollowId == scr->name() if (m_screenToFollowId == scr->name()
|| (onPrimary() && scr == qGuiApp->primaryScreen()) ) { || (onPrimary() && scr == qGuiApp->primaryScreen())) {
screenExists = true; screenExists = true;
} }
} }
@ -356,7 +355,7 @@ void DockView::reconsiderScreen()
//! even though it has been configured as an explicit //! even though it has been configured as an explicit
if ((m_onPrimary || (tasksPresent() && dockCorona->noDocksWithTasks() == 1 && !screenExists)) if ((m_onPrimary || (tasksPresent() && dockCorona->noDocksWithTasks() == 1 && !screenExists))
&& (m_screenToFollowId != qGuiApp->primaryScreen()->name() && (m_screenToFollowId != qGuiApp->primaryScreen()->name()
|| m_screenToFollow != qGuiApp->primaryScreen())) { || m_screenToFollow != qGuiApp->primaryScreen())) {
//change to primary screen only if the specific edge is free //change to primary screen only if the specific edge is free
qDebug() << "updating the primary screen for dock..."; qDebug() << "updating the primary screen for dock...";
qDebug() << "available primary screen edges:" << dockCorona->freeEdges(qGuiApp->primaryScreen()); qDebug() << "available primary screen edges:" << dockCorona->freeEdges(qGuiApp->primaryScreen());
@ -377,7 +376,7 @@ void DockView::reconsiderScreen()
syncGeometry(); syncGeometry();
} }
} else if (!m_onPrimary){ } else if (!m_onPrimary) {
//! 3.an explicit dock must be always on the correct associated screen //! 3.an explicit dock must be always on the correct associated screen
//! there are cases that window manager misplaces the dock, this function //! there are cases that window manager misplaces the dock, this function
//! ensures that this dock will return at its correct screen //! ensures that this dock will return at its correct screen
@ -966,21 +965,6 @@ void DockView::setOnPrimary(bool flag)
emit onPrimaryChanged(); emit onPrimaryChanged();
} }
Dock::SessionType DockView::session() const
{
return m_session;
}
void DockView::setSession(Dock::SessionType type)
{
if (m_session == type) {
return;
}
m_session = type;
emit sessionChanged();
}
float DockView::maxLength() const float DockView::maxLength() const
{ {
return m_maxLength; return m_maxLength;
@ -1908,7 +1892,6 @@ void DockView::saveConfig()
auto config = this->containment()->config(); auto config = this->containment()->config();
config.writeEntry("onPrimary", m_onPrimary); config.writeEntry("onPrimary", m_onPrimary);
config.writeEntry("session", (int)m_session);
config.writeEntry("dockWindowBehavior", m_dockWinBehavior); config.writeEntry("dockWindowBehavior", m_dockWinBehavior);
emit this->containment()->configNeedsSaving(); emit this->containment()->configNeedsSaving();
} }
@ -1920,7 +1903,6 @@ void DockView::restoreConfig()
auto config = this->containment()->config(); auto config = this->containment()->config();
setOnPrimary(config.readEntry("onPrimary", true)); setOnPrimary(config.readEntry("onPrimary", true));
setSession((Dock::SessionType)config.readEntry("session", (int)Dock::DefaultSession));
setDockWinBehavior(config.readEntry("dockWindowBehavior", true)); setDockWinBehavior(config.readEntry("dockWindowBehavior", true));
} }
//!END configuration functions //!END configuration functions

@ -85,8 +85,6 @@ class DockView : public PlasmaQuick::ContainmentView {
Q_PROPERTY(QRect maskArea READ maskArea WRITE setMaskArea NOTIFY maskAreaChanged) Q_PROPERTY(QRect maskArea READ maskArea WRITE setMaskArea NOTIFY maskAreaChanged)
Q_PROPERTY(QRect screenGeometry READ screenGeometry NOTIFY screenGeometryChanged) Q_PROPERTY(QRect screenGeometry READ screenGeometry NOTIFY screenGeometryChanged)
Q_PROPERTY(Latte::Dock::SessionType session READ session WRITE setSession NOTIFY sessionChanged)
public: public:
DockView(Plasma::Corona *corona, QScreen *targetScreen = nullptr, bool dockWindowBehavior = false); DockView(Plasma::Corona *corona, QScreen *targetScreen = nullptr, bool dockWindowBehavior = false);
virtual ~DockView(); virtual ~DockView();
@ -155,9 +153,6 @@ public:
QRect localGeometry() const; QRect localGeometry() const;
void setLocalGeometry(const QRect &geometry); void setLocalGeometry(const QRect &geometry);
Dock::SessionType session() const;
void setSession(Dock::SessionType type);
VisibilityManager *visibility() const; VisibilityManager *visibility() const;
QQmlListProperty<QScreen> screens(); QQmlListProperty<QScreen> screens();
@ -223,7 +218,6 @@ signals:
void visibilityChanged(); void visibilityChanged();
void maskAreaChanged(); void maskAreaChanged();
void screenGeometryChanged(); void screenGeometryChanged();
void sessionChanged();
void shadowChanged(); void shadowChanged();
void totalDocksCountChanged(); void totalDocksCountChanged();
void xChanged(); void xChanged();
@ -269,7 +263,6 @@ private:
float m_maxLength{1}; float m_maxLength{1};
Dock::Alignment m_alignment{Dock::Center}; Dock::Alignment m_alignment{Dock::Center};
Dock::SessionType m_session{Dock::DefaultSession};
QRect m_effectsArea; QRect m_effectsArea;
QRect m_localGeometry; QRect m_localGeometry;

@ -54,8 +54,6 @@ GlobalSettings::GlobalSettings(QObject *parent)
m_altSessionAction->setStatusTip(i18n("Enable/Disable Alternative Session")); m_altSessionAction->setStatusTip(i18n("Enable/Disable Alternative Session"));
m_altSessionAction->setCheckable(true); m_altSessionAction->setCheckable(true);
connect(m_altSessionAction, &QAction::triggered, this, &GlobalSettings::enableAltSession); connect(m_altSessionAction, &QAction::triggered, this, &GlobalSettings::enableAltSession);
connect(m_corona, &DockCorona::currentSessionChanged, this, &GlobalSettings::currentSessionChangedSlot);
connect(m_corona, &DockCorona::currentSessionChanged, this, &GlobalSettings::loadLaunchers);
//! create the add widgets action //! create the add widgets action
const QIcon addWidIcon = QIcon::fromTheme("add"); const QIcon addWidIcon = QIcon::fromTheme("add");
@ -109,11 +107,11 @@ void GlobalSettings::showWidgetsExplorer()
void GlobalSettings::enableAltSession(bool enabled) void GlobalSettings::enableAltSession(bool enabled)
{ {
if (enabled) { /*if (enabled) {
m_corona->switchToSession(Dock::AlternativeSession); m_corona->switchToSession(Dock::AlternativeSession);
} else { } else {
m_corona->switchToSession(Dock::DefaultSession); m_corona->switchToSession(Dock::DefaultSession);
} }*/
} }
bool GlobalSettings::exposeAltSession() const bool GlobalSettings::exposeAltSession() const
@ -132,15 +130,6 @@ void GlobalSettings::setExposeAltSession(bool state)
emit exposeAltSessionChanged(); emit exposeAltSessionChanged();
} }
void GlobalSettings::currentSessionChangedSlot(Dock::SessionType type)
{
if (m_corona->currentSession() == Dock::DefaultSession)
m_altSessionAction->setChecked(false);
else
m_altSessionAction->setChecked(true);
emit currentSessionChanged();
}
QAction *GlobalSettings::altSessionAction() const QAction *GlobalSettings::altSessionAction() const
{ {
@ -221,18 +210,6 @@ void GlobalSettings::setAutostart(bool state)
} }
} }
Dock::SessionType GlobalSettings::currentSession() const
{
return m_corona->currentSession();
}
void GlobalSettings::setCurrentSession(Dock::SessionType session)
{
if (currentSession() != session) {
m_corona->switchToSession(session);
}
}
//!BEGIN configuration functions //!BEGIN configuration functions
void GlobalSettings::load(bool all) void GlobalSettings::load(bool all)
{ {
@ -252,13 +229,13 @@ void GlobalSettings::load(bool all)
void GlobalSettings::loadLaunchers() void GlobalSettings::loadLaunchers()
{ {
if (m_corona->currentSession() == Latte::Dock::AlternativeSession) { /*if (m_corona->currentSession() == Latte::Dock::AlternativeSession) {
m_syncLaunchers = m_configGroup.readEntry("syncLaunchers_alternative", false); m_syncLaunchers = m_configGroup.readEntry("syncLaunchers_alternative", false);
m_globalLaunchers = m_configGroup.readEntry("globalLaunchers_alternative", QStringList()); m_globalLaunchers = m_configGroup.readEntry("globalLaunchers_alternative", QStringList());
} else { } else {
m_syncLaunchers = m_configGroup.readEntry("syncLaunchers_default", false); m_syncLaunchers = m_configGroup.readEntry("syncLaunchers_default", false);
m_globalLaunchers = m_configGroup.readEntry("globalLaunchers_default", QStringList()); m_globalLaunchers = m_configGroup.readEntry("globalLaunchers_default", QStringList());
} }*/
emit syncLaunchersChanged(); emit syncLaunchersChanged();
emit globalLaunchersChanged(); emit globalLaunchersChanged();
@ -268,14 +245,6 @@ void GlobalSettings::save()
{ {
m_configGroup.writeEntry("exposeAltSession", m_exposeAltSession); m_configGroup.writeEntry("exposeAltSession", m_exposeAltSession);
if (m_corona->currentSession() == Latte::Dock::AlternativeSession) {
m_configGroup.writeEntry("syncLaunchers_alternative", m_syncLaunchers);
m_configGroup.writeEntry("globalLaunchers_alternative", m_globalLaunchers);
} else {
m_configGroup.writeEntry("syncLaunchers_default", m_syncLaunchers);
m_configGroup.writeEntry("globalLaunchers_default", m_globalLaunchers);
}
m_configGroup.sync(); m_configGroup.sync();
} }
@ -437,7 +406,7 @@ void GlobalSettings::importConfiguration()
, m_fileDialog.data(), &QFileDialog::deleteLater); , m_fileDialog.data(), &QFileDialog::deleteLater);
connect(m_fileDialog.data(), &QFileDialog::fileSelected connect(m_fileDialog.data(), &QFileDialog::fileSelected
, this, [&](const QString & file) { , this, [&](const QString & file) {
importLayoutInternal(file); importLayoutInternal(file);
}); });
@ -596,7 +565,7 @@ void GlobalSettings::exportConfiguration()
, m_fileDialog.data(), &QFileDialog::deleteLater); , m_fileDialog.data(), &QFileDialog::deleteLater);
connect(m_fileDialog.data(), &QFileDialog::fileSelected connect(m_fileDialog.data(), &QFileDialog::fileSelected
, this, [&](const QString & file) { , this, [&](const QString & file) {
auto showNotificationError = []() { auto showNotificationError = []() {
auto notification = new KNotification("export-fail", KNotification::CloseOnTimeout); auto notification = new KNotification("export-fail", KNotification::CloseOnTimeout);
notification->setText(i18nc("import/export config", "Failed to export configuration")); notification->setText(i18nc("import/export config", "Failed to export configuration"));
@ -634,7 +603,7 @@ void GlobalSettings::exportConfiguration()
notification->setText(i18nc("import/export config", "Configuration exported successfully")); notification->setText(i18nc("import/export config", "Configuration exported successfully"));
connect(notification, &KNotification::action1Activated connect(notification, &KNotification::action1Activated
, this, [file]() { , this, [file]() {
QDesktopServices::openUrl({QFileInfo(file).canonicalPath()}); QDesktopServices::openUrl({QFileInfo(file).canonicalPath()});
}); });

@ -44,8 +44,6 @@ class GlobalSettings : public QObject {
Q_PROPERTY(bool syncLaunchers READ syncLaunchers WRITE setSyncLaunchers NOTIFY syncLaunchersChanged) Q_PROPERTY(bool syncLaunchers READ syncLaunchers WRITE setSyncLaunchers NOTIFY syncLaunchersChanged)
Q_PROPERTY(QStringList globalLaunchers READ globalLaunchers WRITE setGlobalLaunchers NOTIFY globalLaunchersChanged) Q_PROPERTY(QStringList globalLaunchers READ globalLaunchers WRITE setGlobalLaunchers NOTIFY globalLaunchersChanged)
Q_PROPERTY(Latte::Dock::SessionType currentSession READ currentSession WRITE setCurrentSession NOTIFY currentSessionChanged)
Q_PROPERTY(QAction *altSessionAction READ altSessionAction NOTIFY altSessionActionChanged) Q_PROPERTY(QAction *altSessionAction READ altSessionAction NOTIFY altSessionActionChanged)
Q_PROPERTY(QAction *addWidgetsAction READ addWidgetsAction NOTIFY addWidgetsActionChanged) Q_PROPERTY(QAction *addWidgetsAction READ addWidgetsAction NOTIFY addWidgetsActionChanged)
@ -53,7 +51,7 @@ public:
GlobalSettings(QObject *parent = nullptr); GlobalSettings(QObject *parent = nullptr);
~GlobalSettings() override; ~GlobalSettings() override;
void load(bool all=true); void load(bool all = true);
void reload(); void reload();
bool autostart() const; bool autostart() const;
@ -71,9 +69,6 @@ public:
QAction *addWidgetsAction() const; QAction *addWidgetsAction() const;
Latte::Dock::SessionType currentSession() const;
void setCurrentSession(Latte::Dock::SessionType session);
static bool importHelper(const QString &fileName); static bool importHelper(const QString &fileName);
Q_INVOKABLE void importConfiguration(); Q_INVOKABLE void importConfiguration();
Q_INVOKABLE void exportConfiguration(); Q_INVOKABLE void exportConfiguration();
@ -85,13 +80,12 @@ signals:
void altSessionActionChanged(); void altSessionActionChanged();
void autostartChanged(); void autostartChanged();
void clearLayoutSelection(); void clearLayoutSelection();
void currentSessionChanged();
void exposeAltSessionChanged(); void exposeAltSessionChanged();
void globalLaunchersChanged(); void globalLaunchersChanged();
void syncLaunchersChanged(); void syncLaunchersChanged();
private slots: private slots:
void currentSessionChangedSlot(Dock::SessionType type); // void currentSessionChangedSlot(Dock::SessionType type);
void enableAltSession(bool enabled); void enableAltSession(bool enabled);
void importLayoutInternal(const QString &file); void importLayoutInternal(const QString &file);
void loadLaunchers(); void loadLaunchers();

Loading…
Cancel
Save