1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-26 23:21:37 +03:00
latte-dock/app/lattecorona.h
Michail Vourlakos 20b76a182c add/enable option for MetaPressAndHold action
--user can now enable/disable the Meta pressAndHold
behavior that shows shortcuts badges. The new option
is located at Latte preferences.

BUG: 403840
2019-02-10 02:39:09 +02:00

198 lines
5.6 KiB
C++

/*
* Copyright 2016 Smith AR <audoban@openmailbox.org>
* Michail Vourlakos <mvourlakos@gmail.com>
*
* This file is part of Latte-Dock
*
* Latte-Dock is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* Latte-Dock is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LATTECORONA_H
#define LATTECORONA_H
// local
#include "plasma/quick/configview.h"
#include "../liblatte2/types.h"
// Qt
#include <QObject>
#include <QTimer>
// Plasma
#include <Plasma/Corona>
// KDE
#include <KAboutApplicationDialog>
namespace KDeclarative {
class QmlObject;
}
namespace Plasma {
class Corona;
class Containment;
class Types;
}
namespace PlasmaQuick {
class ConfigView;
}
namespace KActivities {
class Consumer;
}
namespace KWayland {
namespace Client {
class PlasmaShell;
}
}
namespace Latte {
class AbstractWindowInterface;
class ScreenPool;
class GlobalShortcuts;
class UniversalSettings;
class LayoutManager;
class LaunchersSignals;
namespace PlasmaExtended{
class ScreenPool;
class Theme;
}
}
namespace Latte {
class Corona : public Plasma::Corona
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.LatteDock")
public:
Corona(bool defaultLayoutOnStartup = false,
QString layoutNameOnStartUp = QString(),
int userSetMemoryUsage = -1,
QObject *parent = nullptr);
virtual ~Corona();
int numScreens() const override;
QRect screenGeometry(int id) const override;
QRegion availableScreenRegion(int id) const override;
QRect availableScreenRect(int id) const override;
//! This is a very generic function in order to return the availableScreenRect of specific screen
//! by calculating only the user specified visibility modes and edges. Empty QLists for both
//! arguments mean that all choices are accepted in calculations
QRect availableScreenRectWithCriteria(int id,
QList<Types::Visibility> modes = QList<Types::Visibility>(),
QList<Plasma::Types::Location> edges = QList<Plasma::Types::Location>()) const;
QRegion availableScreenRegionWithCriteria(int id, QString forLayout = QString()) const;
int screenForContainment(const Plasma::Containment *containment) const override;
void closeApplication();
AbstractWindowInterface *wm() const;
KActivities::Consumer *activitiesConsumer() const;
GlobalShortcuts *globalShortcuts() const;
ScreenPool *screenPool() const;
UniversalSettings *universalSettings() const;
LayoutManager *layoutManager() const;
PlasmaExtended::ScreenPool *plasmaScreenPool() const;
PlasmaExtended::Theme *themeExtended() const;
KWayland::Client::PlasmaShell *waylandCoronaInterface() const;
//! these functions are used from context menu through containmentactions
void switchToLayout(QString layout);
void showSettingsWindow(int page);
QStringList contextMenuData();
public slots:
void aboutApplication();
void activateLauncherMenu();
//! they are separated with a "-" character
void windowColorScheme(QString windowIdAndScheme);
void loadDefaultLayout() override;
void updateDockItemBadge(QString identifier, QString value);
void unload();
signals:
void configurationShown(PlasmaQuick::ConfigView *configView);
void viewLocationChanged();
void raiseViewsTemporaryChanged();
private slots:
void alternativesVisibilityChanged(bool visible);
void showAlternativesForApplet(Plasma::Applet *applet);
void load();
void addOutput(QScreen *screen);
void primaryOutputChanged();
void screenRemoved(QScreen *screen);
void screenCountChanged();
void syncLatteViewsToScreens();
private:
void cleanConfig();
void qmlRegisterTypes() const;
void setupWaylandIntegration();
bool appletExists(uint containmentId, uint appletId) const;
bool containmentExists(uint id) const;
int primaryScreenId() const;
QStringList containmentsIds();
QStringList appletsIds();
bool m_activitiesStarting{true};
bool m_defaultLayoutOnStartup{false}; //! this is used to enforce loading the default layout on startup
bool m_quitTimedEnded{false}; //! this is used on destructor in order to delay it and slide-out the views
//!it can be used on startup to change memory usage from command line
int m_userSetMemoryUsage{ -1};
QString m_layoutNameOnStartUp;
QList<KDeclarative::QmlObject *> m_alternativesObjects;
QTimer m_viewsScreenSyncTimer;
KActivities::Consumer *m_activityConsumer;
QPointer<KAboutApplicationDialog> aboutDialog;
AbstractWindowInterface *m_wm{nullptr};
ScreenPool *m_screenPool{nullptr};
UniversalSettings *m_universalSettings{nullptr};
GlobalShortcuts *m_globalShortcuts{nullptr};
LayoutManager *m_layoutManager{nullptr};
PlasmaExtended::ScreenPool *m_plasmaScreenPool{nullptr};
PlasmaExtended::Theme *m_themeExtended{nullptr};
KWayland::Client::PlasmaShell *m_waylandCorona{nullptr};
friend class GlobalShortcuts;
friend class Layout;
friend class LayoutManager;
friend class LaunchersSignals;
};
}
#endif // LATTECORONA_H