/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright 2013 - 2020, nymea GmbH * Contact: contact@nymea.io * * This file is part of nymea. * This project including source code and documentation is protected by * copyright law, and remains the property of nymea GmbH. All rights, including * reproduction, publication, editing and translation, are reserved. The use of * this project is subject to the terms of a license agreement to be concluded * with nymea GmbH in accordance with the terms of use of nymea GmbH, available * under https://nymea.io/license * * GNU General Public License Usage * Alternatively, this project may be redistributed and/or modified under the * terms of the GNU General Public License as published by the Free Software * Foundation, GNU version 3. This project 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 project. If not, see . * * For any further details and any questions please contact us under * contact@nymea.io or see our FAQ/Licensing Information on * https://nymea.io/license/faq * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef PLATFORMHELPER_H #define PLATFORMHELPER_H #include #include class QQmlEngine; class QJSEngine; class PlatformHelper : public QObject { Q_OBJECT Q_PROPERTY(bool hasPermissions READ hasPermissions NOTIFY permissionsRequestFinished) Q_PROPERTY(QString platform READ platform CONSTANT) Q_PROPERTY(QString deviceSerial READ deviceSerial CONSTANT) Q_PROPERTY(QString device READ device CONSTANT) Q_PROPERTY(QString deviceModel READ deviceModel CONSTANT) Q_PROPERTY(QString deviceManufacturer READ deviceManufacturer CONSTANT) Q_PROPERTY(QString machineHostname READ machineHostname CONSTANT) Q_PROPERTY(bool splashVisible READ splashVisible WRITE setSplashVisible NOTIFY splashVisibleChanged) Q_PROPERTY(bool canControlScreen READ canControlScreen CONSTANT) Q_PROPERTY(int screenTimeout READ screenTimeout WRITE setScreenTimeout NOTIFY screenTimeoutChanged) Q_PROPERTY(int screenBrightness READ screenBrightness WRITE setScreenBrightness NOTIFY screenBrightnessChanged) Q_PROPERTY(QColor topPanelColor READ topPanelColor WRITE setTopPanelColor NOTIFY topPanelColorChanged) Q_PROPERTY(QColor bottomPanelColor READ bottomPanelColor WRITE setBottomPanelColor NOTIFY bottomPanelColorChanged) Q_PROPERTY(bool darkModeEnabled READ darkModeEnabled NOTIFY darkModeEnabledChanged) public: enum HapticsFeedback { HapticsFeedbackSelection, HapticsFeedbackImpact, HapticsFeedbackNotification }; Q_ENUM(HapticsFeedback) static PlatformHelper* instance(); virtual ~PlatformHelper() = default; virtual bool hasPermissions() const; Q_INVOKABLE virtual void requestPermissions(); virtual QString platform() const; virtual QString machineHostname() const; virtual QString device() const; virtual QString deviceSerial() const; virtual QString deviceModel() const; virtual QString deviceManufacturer() const; virtual bool canControlScreen() const; virtual int screenTimeout() const; virtual void setScreenTimeout(int screenTimeout); virtual int screenBrightness() const; virtual void setScreenBrightness(int percent); virtual QColor topPanelColor() const; virtual void setTopPanelColor(const QColor &color); virtual QColor bottomPanelColor() const; virtual void setBottomPanelColor(const QColor &color); virtual bool darkModeEnabled() const; virtual bool splashVisible() const; virtual void setSplashVisible(bool splashVisible); Q_INVOKABLE virtual void hideSplashScreen(); Q_INVOKABLE virtual void vibrate(HapticsFeedback feedbackType); Q_INVOKABLE virtual void toClipBoard(const QString &text); Q_INVOKABLE virtual QString fromClipBoard(); Q_INVOKABLE virtual void shareFile(const QString &fileName); static QObject *platformHelperProvider(QQmlEngine *engine, QJSEngine *scriptEngine); signals: void permissionsRequestFinished(); void screenTimeoutChanged(); void screenBrightnessChanged(); void topPanelColorChanged(); void bottomPanelColorChanged(); void darkModeEnabledChanged(); void splashVisibleChanged(); protected: explicit PlatformHelper(QObject *parent = nullptr); private: static PlatformHelper *s_instance; QColor m_topPanelColor = QColor("black"); QColor m_bottomPanelColor = QColor("black"); bool m_splashVisible = true; }; #endif // PLATFORMHELPER_H