/* * Copyright 2019 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 VIEWCONTAINMENTINTERFACE_H #define VIEWCONTAINMENTINTERFACE_H // local #include "tasksmodel.h" // Qt #include #include #include #include #include #include #include namespace Plasma { class Applet; } namespace PlasmaQuick { class AppletQuickItem; } namespace Latte { class Corona; class View; } namespace Latte { namespace ViewPart { class ContainmentInterface: public QObject { Q_OBJECT Q_PROPERTY(bool hasExpandedApplet READ hasExpandedApplet NOTIFY hasExpandedAppletChanged) Q_PROPERTY(bool hasLatteTasks READ hasLatteTasks NOTIFY hasLatteTasksChanged) Q_PROPERTY(bool hasPlasmaTasks READ hasPlasmaTasks NOTIFY hasPlasmaTasksChanged) Q_PROPERTY(QAbstractListModel *latteTasksModel READ latteTasksModel() NOTIFY latteTasksModelChanged) Q_PROPERTY(QAbstractListModel *plasmaTasksModel READ plasmaTasksModel() NOTIFY plasmaTasksModelChanged) public: ContainmentInterface(Latte::View *parent); virtual ~ContainmentInterface(); bool hasExpandedApplet() const; bool hasLatteTasks() const; bool hasPlasmaTasks() const; bool applicationLauncherInPopup() const; bool applicationLauncherHasGlobalShortcut() const; bool containsApplicationLauncher() const; bool isCapableToShowShortcutBadges(); bool activateEntry(const int index); bool newInstanceForEntry(const int index); bool activatePlasmaTask(const int index); bool newInstanceForPlasmaTask(const int index); bool hideShortcutBadges(); bool showOnlyMeta(); bool showShortcutBadges(const bool showLatteShortcuts, const bool showMeta); //! this is updated from external apps e.g. a thunderbird plugin bool updateBadgeForLatteTask(const QString identifier, const QString value); int applicationLauncherId() const; int appletIdForVisualIndex(const int index); QAbstractListModel *latteTasksModel() const; QAbstractListModel *plasmaTasksModel() const; public slots: Q_INVOKABLE void deactivateApplets(); Q_INVOKABLE void toggleAppletExpanded(const int id); Q_INVOKABLE bool appletIsExpandable(const int id); Q_INVOKABLE bool appletIsExpanded(const int id); Q_INVOKABLE bool isApplication(const QUrl &url) const; signals: void expandedAppletStateChanged(); void hasExpandedAppletChanged(); void hasLatteTasksChanged(); void hasPlasmaTasksChanged(); void latteTasksModelChanged(); void plasmaTasksModelChanged(); void appletRequestedVisualIndicator(const int &plasmoidId); private slots: void identifyShortcutsHost(); void identifyMethods(); void updateAppletsTracking(); void onAppletAdded(Plasma::Applet *applet); void onAppletExpandedChanged(); void onLatteTasksCountChanged(); void onPlasmaTasksCountChanged(); private: void addExpandedApplet(PlasmaQuick::AppletQuickItem * appletQuickItem); void removeExpandedApplet(PlasmaQuick::AppletQuickItem *appletQuickItem); bool appletIsExpandable(PlasmaQuick::AppletQuickItem *appletQuickItem); private: bool m_hasLatteTasks{false}; bool m_hasPlasmaTasks{false}; QMetaMethod m_activateEntryMethod; QMetaMethod m_appletIdForIndexMethod; QMetaMethod m_newInstanceMethod; QMetaMethod m_showShortcutsMethod; QPointer m_corona; QPointer m_view; QPointer m_shortcutsHost; //! startup timer to initialize //! applets tracking QTimer m_appletsExpandedConnectionsTimer; TasksModel *m_latteTasksModel; TasksModel *m_plasmaTasksModel; //!keep record of applet ids and avoid crashes when trying to access ids for already destroyed applets QHash m_expandedAppletIds; QHash m_appletsExpandedConnections; }; } } #endif