mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
86 lines
2.4 KiB
C++
86 lines
2.4 KiB
C++
/* Copyright (C) 2017
|
|
* 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. 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_CONFIGSIMULATORCOMPONENT_H
|
|
#define BLACKGUI_COMPONENTS_CONFIGSIMULATORCOMPONENT_H
|
|
|
|
#include "blackmisc/simulation/data/modelcaches.h"
|
|
#include "blackcore/application/applicationsettings.h"
|
|
#include <QWizardPage>
|
|
#include <QFrame>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui { class CConfigSimulatorComponent; }
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
/**
|
|
* Simulator configuration
|
|
*/
|
|
class CConfigSimulatorComponent : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CConfigSimulatorComponent(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CConfigSimulatorComponent();
|
|
|
|
//! Save data
|
|
void save();
|
|
|
|
//! Has unsaved changes
|
|
bool hasUnsavedChanges() const;
|
|
|
|
//! Reset the flag
|
|
void resetUnsavedChanges();
|
|
|
|
private:
|
|
//! Preselect simulators
|
|
void preselectSimulators();
|
|
|
|
//! Get the plugin ids
|
|
QStringList selectedSimsToPluginIds();
|
|
|
|
BlackMisc::CSetting<BlackCore::Application::TEnabledSimulators> m_enabledSimulators { this };
|
|
BlackMisc::Simulation::Data::CModelSetCaches m_modelSets { true, this };
|
|
QScopedPointer<Ui::CConfigSimulatorComponent> ui;
|
|
};
|
|
|
|
/**
|
|
* Wizard page for CConfigSimulatorComponent
|
|
*/
|
|
class CConfigSimulatorWizardPage : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructors
|
|
using QWizardPage::QWizardPage;
|
|
|
|
//! Set config
|
|
void setConfigComponent(CConfigSimulatorComponent *config) { m_config = config; }
|
|
|
|
//! \copydoc QWizardPage::initializePage
|
|
virtual void initializePage() override;
|
|
|
|
//! \copydoc QWizardPage::validatePage
|
|
virtual bool validatePage() override;
|
|
|
|
private:
|
|
CConfigSimulatorComponent *m_config = nullptr;
|
|
};
|
|
} // ns
|
|
} // ns
|
|
#endif // guard
|