141 lines
3.5 KiB
C++
141 lines
3.5 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 General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, GNU 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 General
|
|
* Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU 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 "package.h"
|
|
|
|
Package::Package(const QString &id, const QString &displayName, QObject *parent):
|
|
QObject(parent),
|
|
m_id(id),
|
|
m_displayName(displayName)
|
|
{
|
|
|
|
}
|
|
|
|
QString Package::id() const
|
|
{
|
|
return m_id;
|
|
}
|
|
|
|
QString Package::displayName() const
|
|
{
|
|
return m_displayName;
|
|
}
|
|
|
|
QString Package::summary() const
|
|
{
|
|
return m_summary;
|
|
}
|
|
|
|
void Package::setSummary(const QString &summary)
|
|
{
|
|
if(m_summary != summary) {
|
|
m_summary = summary;
|
|
emit summaryChanged();
|
|
}
|
|
}
|
|
|
|
QString Package::installedVersion() const
|
|
{
|
|
return m_installedVersion;
|
|
}
|
|
|
|
void Package::setInstalledVersion(const QString &installedVersion)
|
|
{
|
|
if (m_installedVersion != installedVersion) {
|
|
m_installedVersion = installedVersion;
|
|
emit installedVersionChanged();
|
|
}
|
|
}
|
|
|
|
QString Package::candidateVersion() const
|
|
{
|
|
return m_candidateVersion;
|
|
}
|
|
|
|
void Package::setCandidateVersion(const QString &candidateVersion)
|
|
{
|
|
if (m_candidateVersion != candidateVersion) {
|
|
m_candidateVersion = candidateVersion;
|
|
emit candidateVersionChanged();
|
|
}
|
|
}
|
|
|
|
QString Package::changelog() const
|
|
{
|
|
return m_changelog;
|
|
}
|
|
|
|
void Package::setChangelog(const QString &changelog)
|
|
{
|
|
if (m_changelog != changelog) {
|
|
m_changelog = changelog;
|
|
emit changelogChanged();
|
|
}
|
|
}
|
|
|
|
bool Package::updateAvailable() const
|
|
{
|
|
return m_updateAvailable;
|
|
}
|
|
|
|
void Package::setUpdateAvailable(bool updateAvailable)
|
|
{
|
|
if (m_updateAvailable != updateAvailable) {
|
|
m_updateAvailable = updateAvailable;
|
|
emit updateAvailableChanged();
|
|
}
|
|
}
|
|
|
|
bool Package::rollbackAvailable() const
|
|
{
|
|
return m_rollbackAvailable;
|
|
}
|
|
|
|
void Package::setRollbackAvailable(bool rollbackAvailable)
|
|
{
|
|
if (m_rollbackAvailable != rollbackAvailable) {
|
|
m_rollbackAvailable = rollbackAvailable;
|
|
emit rollbackAvailableChanged();
|
|
}
|
|
}
|
|
|
|
bool Package::canRemove() const
|
|
{
|
|
return m_canRemove;
|
|
}
|
|
|
|
void Package::setCanRemove(bool canRemove)
|
|
{
|
|
if (m_canRemove != canRemove) {
|
|
m_canRemove = canRemove;
|
|
emit canRemoveChanged();
|
|
}
|
|
}
|