blob: 3addee95ffbce3976f7493a27797202b859d38cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// SPDX-License-Identifier: GPL-2.0
#ifndef MESSAGEHANDLERMODEL_H
#define MESSAGEHANDLERMODEL_H
#include <QAbstractListModel>
class MessageHandlerModel : public QAbstractListModel {
Q_OBJECT
public:
static MessageHandlerModel *self();
enum MsgTypes {Message = Qt::UserRole + 1, Severity};
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
QVariant data(const QModelIndex& idx, int role) const override;
QHash<int, QByteArray> roleNames() const override;
void addLog(QtMsgType type, const QString& message);
const QString logAsString();
/* call this to clear the debug data */
Q_INVOKABLE void reset();
private:
MessageHandlerModel(QObject *parent = 0);
struct MessageData {
QString message;
QtMsgType type;
};
QVector<MessageData> m_data;
};
#endif
|