mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 15:37:23 +00:00
80 lines
3.2 KiB
C++
80 lines
3.2 KiB
C++
/***************************************************************************
|
|
* This file is part of awesome-widgets *
|
|
* *
|
|
* awesome-widgets 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 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* awesome-widgets 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 awesome-widgets. If not, see http://www.gnu.org/licenses/ *
|
|
***************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
// ui library required by WId definition
|
|
#include <QGuiApplication>
|
|
#include <QRect>
|
|
|
|
|
|
namespace TaskManager
|
|
{
|
|
class VirtualDesktopInfo;
|
|
class WindowTasksModel;
|
|
} // namespace TaskManager
|
|
|
|
class __attribute__((visibility("default"))) DPAdds : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
typedef struct {
|
|
QString name;
|
|
QRect rect;
|
|
} WindowData;
|
|
|
|
typedef struct {
|
|
QList<WindowData> desktopsData;
|
|
QList<WindowData> windowsData;
|
|
} DesktopWindowsInfo;
|
|
|
|
public:
|
|
explicit DPAdds(QObject *_parent = nullptr);
|
|
~DPAdds() override;
|
|
Q_INVOKABLE [[nodiscard]] int currentDesktop() const;
|
|
Q_INVOKABLE static QStringList dictKeys(bool _sorted = true, const QString &_regexp = "");
|
|
Q_INVOKABLE [[nodiscard]] int numberOfDesktops() const;
|
|
Q_INVOKABLE [[nodiscard]] QString toolTipImage(int _desktop) const;
|
|
Q_INVOKABLE [[nodiscard]] QString parsePattern(const QString &_pattern, int _desktop) const;
|
|
// values
|
|
Q_INVOKABLE void setMark(const QString &_newMark);
|
|
Q_INVOKABLE void setToolTipData(const QVariantMap &_tooltipData);
|
|
Q_INVOKABLE static QString infoByKey(const QString &_key);
|
|
Q_INVOKABLE [[nodiscard]] QString valueByKey(const QString &_key, int _desktop = -1) const;
|
|
// configuration slots
|
|
Q_INVOKABLE static QString getAboutText(const QString &_type);
|
|
Q_INVOKABLE static QVariantMap getFont(const QVariantMap &_defaultFont);
|
|
|
|
signals:
|
|
void desktopChanged() const;
|
|
void windowListChanged() const;
|
|
|
|
public slots:
|
|
Q_INVOKABLE static void sendNotification(const QString &_eventId, const QString &_message);
|
|
Q_INVOKABLE void setCurrentDesktop(int _desktop);
|
|
|
|
private:
|
|
[[nodiscard]] DesktopWindowsInfo getInfoByDesktop(int _desktop) const;
|
|
// variables
|
|
TaskManager::VirtualDesktopInfo *m_vdi = nullptr;
|
|
TaskManager::WindowTasksModel *m_taskModel = nullptr;
|
|
int m_tooltipWidth = 200;
|
|
QString m_mark = "*";
|
|
QString m_tooltipColor = "#000000";
|
|
QString m_tooltipType = "none";
|
|
};
|