mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
* use own default constructor error: default initialization of an object of const type 'const BlackMisc::CIcon' without a user-provided default constructor static const CIcon empty; * same for CDbOwnModelsComponent() * fixed guard
88 lines
3.3 KiB
C++
88 lines
3.3 KiB
C++
/* Copyright (C) 2016
|
|
* 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.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKGUI_COMPONENTS_DATA_LASTSELECTIONS_H
|
|
#define BLACKGUI_COMPONENTS_DATA_LASTSELECTIONS_H
|
|
|
|
#include "blackgui/blackguiexport.h"
|
|
#include "blackmisc/valueobject.h"
|
|
#include "blackmisc/datacache.h"
|
|
#include "blackmisc/simulation/simulatorinfo.h"
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
namespace Data
|
|
{
|
|
/*!
|
|
* Store last selections/interactions with this component
|
|
*/
|
|
class BLACKGUI_EXPORT CDbOwnModelsComponent : public BlackMisc::CValueObject<CDbOwnModelsComponent>
|
|
{
|
|
public:
|
|
//! Properties by index
|
|
enum ColumnIndex
|
|
{
|
|
IndexLastSimulator = BlackMisc::CPropertyIndex::GlobalIndexCDbOwnModelsComponent
|
|
};
|
|
|
|
//! Constructor
|
|
CDbOwnModelsComponent() {}
|
|
|
|
//! Simulator last selected
|
|
const BlackMisc::Simulation::CSimulatorInfo &getLastSimulatorSelection() const { return m_simulator; }
|
|
|
|
//! Simulator last selected
|
|
void setLastSimulatorSelection(const BlackMisc::Simulation::CSimulatorInfo &simulator) { m_simulator = simulator; }
|
|
|
|
//! \copydoc BlackMisc::Mixin::String::toQString
|
|
QString convertToQString(bool i18n = false) const;
|
|
|
|
//! \copydoc BlackMisc::Mixin::Index::propertyByIndex
|
|
BlackMisc::CVariant propertyByIndex(const BlackMisc::CPropertyIndex &index) const;
|
|
|
|
//! \copydoc BlackMisc::Mixin::Index::setPropertyByIndex
|
|
void setPropertyByIndex(const BlackMisc::CVariant &variant, const BlackMisc::CPropertyIndex &index);
|
|
|
|
//! Compare by index
|
|
int comparePropertyByIndex(const CDbOwnModelsComponent &compareValue, const BlackMisc::CPropertyIndex &index) const;
|
|
|
|
private:
|
|
BLACK_ENABLE_TUPLE_CONVERSION(CDbOwnModelsComponent)
|
|
BlackMisc::Simulation::CSimulatorInfo m_simulator; //!< Last simulator selection
|
|
};
|
|
|
|
//! Trait for model cache
|
|
struct DbOwnModelsComponent : public BlackMisc::CDataTrait<CDbOwnModelsComponent>
|
|
{
|
|
//! Default value
|
|
static const CDbOwnModelsComponent &defaultValue()
|
|
{
|
|
static const CDbOwnModelsComponent ls;
|
|
return ls;
|
|
}
|
|
|
|
//! Key in data cache
|
|
static const char *key() { return "dbownmodelscomponent"; }
|
|
};
|
|
} // ns
|
|
} // ns
|
|
} // ns
|
|
|
|
Q_DECLARE_METATYPE(BlackGui::Components::Data::CDbOwnModelsComponent)
|
|
BLACK_DECLARE_TUPLE_CONVERSION(BlackGui::Components::Data::CDbOwnModelsComponent, (
|
|
attr(o.m_simulator)
|
|
))
|
|
|
|
#endif // guard
|
|
|