Implement basic developer tools

This commit is contained in:
Tobias Fella
2022-11-16 22:30:28 +01:00
parent 752e7f4d9a
commit c58d8b58ff
12 changed files with 187 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ class Controller : public QObject
Q_PROPERTY(bool isOnline READ isOnline NOTIFY isOnlineChanged)
Q_PROPERTY(bool encryptionSupported READ encryptionSupported CONSTANT)
Q_PROPERTY(int activeConnectionIndex READ activeConnectionIndex NOTIFY activeConnectionIndexChanged)
Q_PROPERTY(int quotientMinorVersion READ quotientMinorVersion CONSTANT)
public:
static Controller &instance();
@@ -104,6 +105,8 @@ public:
Q_INVOKABLE void setApplicationProxy();
int quotientMinorVersion() const;
private:
explicit Controller(QObject *parent = nullptr);