mirror of https://github.com/nymea/nymea.git
152 lines
3.4 KiB
C++
152 lines
3.4 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright 2013 - 2020, nymea GmbH
|
|
* Contact: contact@nymea.io
|
|
*
|
|
* This file is part of nymea.
|
|
* This project including source code and documentation is protected by
|
|
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
* reproduction, publication, editing and translation, are reserved. The use of
|
|
* this project is subject to the terms of a license agreement to be concluded
|
|
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
* under https://nymea.io/license
|
|
*
|
|
* GNU Lesser General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation; version 3. This project is distributed in the hope that
|
|
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For any further details and any questions please contact us under
|
|
* contact@nymea.io or see our FAQ/Licensing Information on
|
|
* https://nymea.io/license/faq
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "browseritem.h"
|
|
|
|
|
|
BrowserItem::BrowserItem(const QString &id, const QString &displayName, bool browsable, bool executable):
|
|
m_id(id),
|
|
m_displayName(displayName),
|
|
m_browsable(browsable),
|
|
m_executable(executable)
|
|
{
|
|
|
|
}
|
|
|
|
QString BrowserItem::id() const
|
|
{
|
|
return m_id;
|
|
}
|
|
|
|
void BrowserItem::setId(const QString &id)
|
|
{
|
|
m_id = id;
|
|
}
|
|
|
|
QString BrowserItem::displayName() const
|
|
{
|
|
return m_displayName;
|
|
}
|
|
|
|
void BrowserItem::setDisplayName(const QString &displayName)
|
|
{
|
|
m_displayName = displayName;
|
|
}
|
|
|
|
QString BrowserItem::description() const
|
|
{
|
|
return m_description;
|
|
}
|
|
|
|
void BrowserItem::setDescription(const QString &description)
|
|
{
|
|
m_description = description;
|
|
}
|
|
|
|
bool BrowserItem::executable() const
|
|
{
|
|
return m_executable;
|
|
}
|
|
|
|
void BrowserItem::setExecutable(bool executable)
|
|
{
|
|
m_executable = executable;
|
|
}
|
|
|
|
bool BrowserItem::browsable() const
|
|
{
|
|
return m_browsable;
|
|
}
|
|
|
|
void BrowserItem::setBrowsable(bool browsable)
|
|
{
|
|
m_browsable = browsable;
|
|
}
|
|
|
|
bool BrowserItem::disabled() const
|
|
{
|
|
return m_disabled;
|
|
}
|
|
|
|
void BrowserItem::setDisabled(bool disabled)
|
|
{
|
|
m_disabled = disabled;
|
|
}
|
|
|
|
BrowserItem::BrowserIcon BrowserItem::icon() const
|
|
{
|
|
return m_icon;
|
|
}
|
|
|
|
void BrowserItem::setIcon(BrowserIcon icon)
|
|
{
|
|
m_icon = icon;
|
|
}
|
|
|
|
QString BrowserItem::thumbnail() const
|
|
{
|
|
return m_thumbnail;
|
|
}
|
|
|
|
void BrowserItem::setThumbnail(const QString &thumbnail)
|
|
{
|
|
m_thumbnail = thumbnail;
|
|
}
|
|
|
|
QList<ActionTypeId> BrowserItem::actionTypeIds() const
|
|
{
|
|
return m_actionTypeIds;
|
|
}
|
|
|
|
void BrowserItem::setActionTypeIds(const QList<ActionTypeId> &actionTypeIds)
|
|
{
|
|
m_actionTypeIds = actionTypeIds;
|
|
}
|
|
|
|
BrowserItem::ExtendedPropertiesFlags BrowserItem::extendedPropertiesFlags() const
|
|
{
|
|
return m_extendedPropertiesFlags;
|
|
}
|
|
|
|
QVariant BrowserItem::extendedProperty(const QString &propertyName) const
|
|
{
|
|
return m_extendedProperties[propertyName];
|
|
}
|
|
|
|
BrowserItems::BrowserItems()
|
|
{
|
|
|
|
}
|
|
|
|
BrowserItems::BrowserItems(const QList<BrowserItem> &other): QList<BrowserItem>(other)
|
|
{
|
|
|
|
}
|