2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2016-09-15 17:55:28 +02:00
|
|
|
|
|
|
|
|
#include "scxmlnamespace.h"
|
|
|
|
|
|
|
|
|
|
using namespace ScxmlEditor::PluginInterface;
|
|
|
|
|
|
|
|
|
|
ScxmlNamespace::ScxmlNamespace(const QString &prefix, const QString &name, QObject *parent)
|
|
|
|
|
: QObject(parent)
|
|
|
|
|
, m_prefix(prefix)
|
|
|
|
|
, m_name(name)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ScxmlNamespace::prefix() const
|
|
|
|
|
{
|
|
|
|
|
return m_prefix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ScxmlNamespace::name() const
|
|
|
|
|
{
|
|
|
|
|
return m_name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ScxmlNamespace::isTagVisible(const QString &tag) const
|
|
|
|
|
{
|
|
|
|
|
return m_tagVisibility.value(tag, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ScxmlNamespace::setTagVisibility(const QString &tag, bool visible)
|
|
|
|
|
{
|
|
|
|
|
m_tagVisibility[tag] = visible;
|
|
|
|
|
}
|