aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scxmleditor/outputpane/warning.cpp
blob: 5d1f82f1caf09010b8bbd0d3d79fd938ff89eb36 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "warning.h"

using namespace ScxmlEditor::OutputPane;

Warning::Warning(Severity severity, const QString &name, const QString &reason,
    const QString &description, bool active, QObject *parent)
    : QObject(parent)
    , m_severity(severity)
    , m_typeName(name)
    , m_reason(reason)
    , m_description(description)
    , m_active(active)
{
}

void Warning::setSeverity(Warning::Severity sev)
{
    if (m_severity != sev) {
        m_severity = sev;
        emit dataChanged();
    }
}
void Warning::setTypeName(const QString &name)
{
    if (m_typeName != name) {
        m_typeName = name;
        emit dataChanged();
    }
}
void Warning::setReason(const QString &reason)
{
    if (m_reason != reason) {
        m_reason = reason;
        emit dataChanged();
    }
}
void Warning::setDescription(const QString &description)
{
    if (m_description != description) {
        m_description = description;
        emit dataChanged();
    }
}
void Warning::setActive(bool active)
{
    if (m_active != active) {
        m_active = active;
        emit dataChanged();
    }
}