mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 06:45:37 +08:00
85 lines
2.7 KiB
C++
85 lines
2.7 KiB
C++
// SPDX-FileCopyrightText: Copyright (C) 2016 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "guisettings.h"
|
|
#include <QStyleFactory>
|
|
|
|
using namespace swift::misc;
|
|
|
|
SWIFT_DEFINE_VALUEOBJECT_MIXINS(swift::gui::settings, CGeneralGuiSettings)
|
|
|
|
namespace swift::gui::settings
|
|
{
|
|
CGeneralGuiSettings::CGeneralGuiSettings()
|
|
{}
|
|
|
|
void CGeneralGuiSettings::setWidgetStyle(const QString &widgetStyle)
|
|
{
|
|
if (this->m_widgetStyle == widgetStyle) { return; }
|
|
const auto availableStyles = QStyleFactory::keys();
|
|
if (availableStyles.contains(widgetStyle))
|
|
{
|
|
m_widgetStyle = widgetStyle;
|
|
}
|
|
}
|
|
|
|
bool CGeneralGuiSettings::isDifferentValidWidgetStyle(const QString &style) const
|
|
{
|
|
if (!QStyleFactory::keys().contains(style)) { return false; }
|
|
return style != this->m_widgetStyle;
|
|
}
|
|
|
|
QAbstractItemView::SelectionMode CGeneralGuiSettings::getPreferredSelection() const
|
|
{
|
|
return static_cast<QAbstractItemView::SelectionMode>(m_preferredSelection);
|
|
}
|
|
|
|
void CGeneralGuiSettings::setPreferredSelection(QAbstractItemView::SelectionMode selection)
|
|
{
|
|
this->m_preferredSelection = static_cast<int>(selection);
|
|
}
|
|
|
|
QString CGeneralGuiSettings::convertToQString(bool i18n) const
|
|
{
|
|
Q_UNUSED(i18n);
|
|
return QStringLiteral("Widget style: %1").arg(this->m_widgetStyle);
|
|
}
|
|
|
|
QVariant CGeneralGuiSettings::propertyByIndex(swift::misc::CPropertyIndexRef index) const
|
|
{
|
|
if (index.isMyself()) { return QVariant::fromValue(*this); }
|
|
const ColumnIndex i = index.frontCasted<ColumnIndex>();
|
|
switch (i)
|
|
{
|
|
case IndexWidgetStyle:
|
|
return QVariant::fromValue(this->m_widgetStyle);
|
|
case IndexPreferredSelection:
|
|
return QVariant::fromValue(this->m_preferredSelection);
|
|
default:
|
|
return CValueObject::propertyByIndex(index);
|
|
}
|
|
}
|
|
|
|
void CGeneralGuiSettings::setPropertyByIndex(swift::misc::CPropertyIndexRef index, const QVariant &variant)
|
|
{
|
|
if (index.isMyself())
|
|
{
|
|
(*this) = variant.value<CGeneralGuiSettings>();
|
|
return;
|
|
}
|
|
const ColumnIndex i = index.frontCasted<ColumnIndex>();
|
|
switch (i)
|
|
{
|
|
case IndexWidgetStyle:
|
|
this->setWidgetStyle(variant.toString());
|
|
break;
|
|
case IndexPreferredSelection:
|
|
this->m_preferredSelection = variant.toInt();
|
|
break;
|
|
default:
|
|
CValueObject::setPropertyByIndex(index, variant);
|
|
break;
|
|
}
|
|
}
|
|
} // ns
|