mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
90 lines
2.7 KiB
C++
90 lines
2.7 KiB
C++
/* Copyright (C) 2013
|
|
* swift Project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of Swift Project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#include "namevariantpair.h"
|
|
#include "iconlist.h"
|
|
#include "blackmisc/blackmiscfreefunctions.h"
|
|
|
|
namespace BlackMisc
|
|
{
|
|
|
|
CNameVariantPair::CNameVariantPair(const QString &name, const CVariant &variant, const CIcon &icon)
|
|
: m_name(name), m_variant(variant), m_icon(icon)
|
|
{ }
|
|
|
|
CIcon CNameVariantPair::toIcon() const { return m_icon; }
|
|
|
|
bool CNameVariantPair::hasIcon() const
|
|
{
|
|
return this->m_icon.isSet();
|
|
}
|
|
|
|
QString CNameVariantPair::convertToQString(bool i18n) const
|
|
{
|
|
QString s(this->m_name);
|
|
s.append(" ").append(this->m_variant.toQString(i18n));
|
|
return s;
|
|
}
|
|
|
|
CVariant CNameVariantPair::propertyByIndex(const BlackMisc::CPropertyIndex &index) const
|
|
{
|
|
if (index.isMyself()) { return this->toCVariant(); }
|
|
ColumnIndex i = index.frontCasted<ColumnIndex>();
|
|
switch (i)
|
|
{
|
|
case IndexName:
|
|
return CVariant(this->m_name);
|
|
case IndexVariant:
|
|
return this->m_variant;
|
|
default:
|
|
return CValueObject::propertyByIndex(index);
|
|
}
|
|
}
|
|
|
|
void CNameVariantPair::setPropertyByIndex(const CVariant &variant, const BlackMisc::CPropertyIndex &index)
|
|
{
|
|
if (index.isMyself())
|
|
{
|
|
this->convertFromCVariant(variant);
|
|
return;
|
|
}
|
|
ColumnIndex i = index.frontCasted<ColumnIndex>();
|
|
|
|
// special case, handle icon and allow to set it
|
|
// doing this in the switch gives gcc warning as IndexIcon is no member of ColumnIndex
|
|
if (i == static_cast<int>(IndexIcon))
|
|
{
|
|
if (static_cast<QMetaType::Type>(variant.type()) == QMetaType::Int)
|
|
{
|
|
CIcons::IconIndex index = static_cast<CIcons::IconIndex>(variant.toInt());
|
|
this->m_icon = CIconList::iconByIndex(index);
|
|
}
|
|
else
|
|
{
|
|
this->m_icon = variant.value<BlackMisc::CIcon>();
|
|
}
|
|
return;
|
|
}
|
|
|
|
// properties
|
|
switch (i)
|
|
{
|
|
case IndexName:
|
|
this->setName(variant.value<QString>());
|
|
break;
|
|
case IndexVariant:
|
|
this->m_variant = variant;
|
|
break;
|
|
default:
|
|
CValueObject::setPropertyByIndex(variant, index);
|
|
break;
|
|
}
|
|
}
|
|
} // namespace
|