QML UI: make BT state available to QML

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-07-12 04:14:24 -07:00
parent bec5f3c44f
commit 2c111bb4cc
2 changed files with 12 additions and 0 deletions

View file

@ -129,6 +129,8 @@ public:
bool showPin() const;
void setShowPin(bool enable);
Q_INVOKABLE void setStatusbarColor(QColor color);
Q_INVOKABLE bool btEnabled() const;
#if defined(Q_OS_ANDROID)
void writeToAppLogFile(QString logText);
#endif
@ -216,6 +218,8 @@ private:
DCDeviceData *m_device_data;
QString m_progressMessage;
bool m_libdcLog;
bool m_btEnabled;
#if defined(Q_OS_ANDROID)
QString appLogFileName;
QFile appLogFile;