Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fb2logs.cpp « source - github.com/lintest/fb2edit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dd4964482a44f37a2dc59e9f2d5318cbb67a517 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include "fb2logs.hpp"

#include "fb2utils.h"

//---------------------------------------------------------------------------
//  FbLogModel::FbLogItem
//---------------------------------------------------------------------------

QVariant FbLogModel::FbLogItem::icon() const
{
    switch (m_type) {
        case QtInfoMsg: return QVariant();
        case QtDebugMsg: return FbIcon("dialog-information");
        case QtWarningMsg: return FbIcon("dialog-warning");
        case QtCriticalMsg: return FbIcon("dialog-error");
        case QtFatalMsg: return FbIcon("dialog-error");
    }
    return QVariant();
}

//---------------------------------------------------------------------------
//  FbLogModel
//---------------------------------------------------------------------------

FbLogModel::FbLogModel(QObject *parent)
    : QAbstractListModel(parent)
{
    for (FbLogItem *item: m_list) delete item;
}

QVariant FbLogModel::data(const QModelIndex &index, int role) const
{
    int row = index.row();
    if (row < 0) return QVariant();
    if (row >= m_list.count()) return QVariant();
    switch (role) {
        case Qt::DisplayRole: return m_list.at(row)->msg();
        case Qt::DecorationRole: return m_list.at(row)->icon();
    }
    return QVariant();
}

int FbLogModel::rowCount(const QModelIndex &parent) const
{
    if (parent.isValid()) return 0;
    return m_list.count();
}

void FbLogModel::add(QtMsgType type, int row, int col, const QString &msg)
{
    int count = m_list.count();
    QModelIndex parent = QModelIndex();
    beginInsertRows(parent, count, count);
    m_list.append(new FbLogItem(type, row, col, msg));
    endInsertRows();
    emit changeCurrent(createIndex(count, 0));
}

void FbLogModel::add(QtMsgType type, const QString &msg)
{
    add(type, 0, 0, msg);
}

//---------------------------------------------------------------------------
//  FbLogList
//---------------------------------------------------------------------------

FbLogList::FbLogList(QWidget *parent)
    : QListView(parent)
{
    setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
    setViewMode(ListMode);
}

//---------------------------------------------------------------------------
//  FbLogDock
//---------------------------------------------------------------------------

FbLogDock::FbLogDock(const QString &title, QWidget *parent, Qt::WindowFlags flags)
    : QDockWidget(title, parent, flags)
    , m_model(new FbLogModel(this))
    , m_list(new FbLogList(this))
{
    m_list->setModel(m_model);
    connect(m_model, SIGNAL(changeCurrent(QModelIndex)), m_list, SLOT(setCurrentIndex(QModelIndex)));
    setFeatures(QDockWidget::AllDockWidgetFeatures);
    setAttribute(Qt::WA_DeleteOnClose);
    setWidget(m_list);
}

void FbLogDock::append(QtMsgType type, const QString &message)
{
    m_model->add(type, message);
}