This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-09-12 00:34:50 +02:00

44 lines
1.3 KiB
C++

#ifndef PLATFORMHELPERIOS_H
#define PLATFORMHELPERIOS_H
#include <QObject>
#include "platformhelper.h"
class PlatformHelperIOS : public PlatformHelper
{
Q_OBJECT
public:
explicit PlatformHelperIOS(QObject *parent = nullptr);
Q_INVOKABLE virtual void requestPermissions() override;
Q_INVOKABLE void hideSplashScreen() override;
virtual bool hasPermissions() const override;
virtual QString machineHostname() const override;
virtual QString device() const override;
virtual QString deviceSerial() const override;
virtual QString deviceModel() const override;
virtual QString deviceManufacturer() const override;
Q_INVOKABLE virtual void vibrate(HapticsFeedback feedbackType) override;
void setTopPanelColor(const QColor &color) override;
void setBottomPanelColor(const QColor &color) override;
private:
// defined in platformhelperios.mm
QString readKeyChainEntry(const QString &service, const QString &key);
void writeKeyChainEntry(const QString &service, const QString &key, const QString &value);
void setTopPanelColorInternal(const QColor &color);
void setBottomPanelColorInternal(const QColor &color);
void generateSelectionFeedback();
void generateImpactFeedback();
void generateNotificationFeedback();
};
#endif // PLATFORMHELPERIOS_H