/* * Copyright 2016 Smith AR * Michail Vourlakos * * 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 . */ #ifndef NOWDOCKCORONA_H #define NOWDOCKCORONA_H #include "dockview.h" #include #include namespace Plasma { class Corona; class Containment; class Types; } namespace KActivities { class Consumer; } namespace Latte { class DockCorona : public Plasma::Corona { Q_OBJECT public: DockCorona(QStringList debugFlags = QStringList(), QObject *parent = nullptr); virtual ~DockCorona(); int numScreens() const override; QRect screenGeometry(int id) const override; QRegion availableScreenRegion(int id) const override; QRect availableScreenRect(int id) const override; QList freeEdges(int screen) const; QStringList debugFlags() const; int docksCount(int screen) const; int screenForContainment(const Plasma::Containment *containment) const override; void addDock(Plasma::Containment *containment); void aboutApplication(); void closeApplication(); public slots: void loadDefaultLayout() override; void dockContainmentDestroyed(QObject *cont); signals: void configurationShown(PlasmaQuick::ConfigView *configView); void docksCountChanged(); void dockLocationChanged(); private slots: void destroyedChanged(bool destroyed); void load(); private: bool appletExists(uint containmentId, uint appletId) const; void cleanConfig(); bool containmentExists(uint id) const; void qmlRegisterTypes() const; int primaryScreenId() const; bool m_activitiesStarting{true}; QStringList m_debugFlags; QHash m_dockViews; QHash m_waitingDockViews; KActivities::Consumer *m_activityConsumer; QPointer aboutDialog; }; } #endif