mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: Add QML Log viewer
Add the ability to preview the application log in QML. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
This commit is contained in:
parent
ab7db605e5
commit
ee13c5c282
3 changed files with 56 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ class QMLManager : public QObject
|
|||
Q_PROPERTY(QString cloudUserName READ cloudUserName WRITE setCloudUserName NOTIFY cloudUserNameChanged)
|
||||
Q_PROPERTY(QString cloudPassword READ cloudPassword WRITE setCloudPassword NOTIFY cloudPasswordChanged)
|
||||
Q_PROPERTY(bool saveCloudPassword READ saveCloudPassword WRITE setSaveCloudPassword NOTIFY saveCloudPasswordChanged)
|
||||
Q_PROPERTY(QString logText READ logText WRITE setLogText NOTIFY logTextChanged)
|
||||
public:
|
||||
QMLManager();
|
||||
~QMLManager();
|
||||
|
|
@ -23,6 +24,10 @@ public:
|
|||
bool saveCloudPassword() const;
|
||||
void setSaveCloudPassword(bool saveCloudPassword);
|
||||
|
||||
QString logText() const;
|
||||
void setLogText(const QString &logText);
|
||||
void appendTextToLog(const QString &newText);
|
||||
|
||||
public slots:
|
||||
void savePreferences();
|
||||
void loadDives();
|
||||
|
|
@ -33,11 +38,13 @@ private:
|
|||
QString m_cloudUserName;
|
||||
QString m_cloudPassword;
|
||||
bool m_saveCloudPassword;
|
||||
QString m_logText;
|
||||
|
||||
signals:
|
||||
void cloudUserNameChanged();
|
||||
void cloudPasswordChanged();
|
||||
void saveCloudPasswordChanged();
|
||||
void logTextChanged();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue