mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
95 lines
3.2 KiB
C++
95 lines
3.2 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. 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_DBAUTOSIMULATORSTASHINGCOMPONENT_H
|
|
#define BLACKGUI_COMPONENTS_DBAUTOSIMULATORSTASHINGCOMPONENT_H
|
|
|
|
#include "blackgui/blackguiexport.h"
|
|
#include "blackgui/components/dbmappingcomponentaware.h"
|
|
#include "blackgui/views/aircraftmodelview.h"
|
|
#include "blackcore/progress.h"
|
|
#include "blackmisc/simulation/aircraftmodel.h"
|
|
#include "blackmisc/statusmessage.h"
|
|
#include <QDialog>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui { class CDbAutoSimulatorStashingComponent; }
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
/**
|
|
* Allows to automatically update models if found in own model set, but already existing
|
|
* for a sibling simulator (ie. FSX/P3D/FS9)
|
|
*/
|
|
class BLACKGUI_EXPORT CDbAutoSimulatorStashingComponent :
|
|
public QDialog,
|
|
public Components::CDbMappingComponentAware,
|
|
public BlackCore::IProgressIndicator
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(BlackGui::Components::CDbMappingComponentAware)
|
|
|
|
public:
|
|
//! Current state of this component
|
|
enum State
|
|
{
|
|
Idle,
|
|
Running,
|
|
Completed
|
|
};
|
|
|
|
//! Constructor
|
|
explicit CDbAutoSimulatorStashingComponent(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CDbAutoSimulatorStashingComponent() override;
|
|
|
|
//! At least run once and completed
|
|
bool isCompleted() const { return m_state == Completed; }
|
|
|
|
//! \copydoc BlackCore::IProgressIndicator::updateProgressIndicator
|
|
virtual void updateProgressIndicator(int percent) override;
|
|
|
|
public slots:
|
|
//! \copydoc QDialog::accept
|
|
virtual void accept() override;
|
|
|
|
//! \copydoc QDialog::exec
|
|
virtual int exec() override;
|
|
|
|
private:
|
|
//! Init the GUI
|
|
void initGui();
|
|
|
|
//! Model view to take models from
|
|
BlackGui::Views::CAircraftModelView *currentModelView() const;
|
|
|
|
//! Add a status message
|
|
void addStatusMessage(const BlackMisc::CStatusMessage &msg);
|
|
|
|
//! Add a status messages
|
|
void addStatusMessages(const BlackMisc::CStatusMessageList &msgs);
|
|
|
|
//! Add a status message for a given model (prefixed)
|
|
void addStatusMessage(const BlackMisc::CStatusMessage &msg, const BlackMisc::Simulation::CAircraftModel &model);
|
|
|
|
//! Try to stash updated models
|
|
void tryToStash();
|
|
|
|
QScopedPointer<Ui::CDbAutoSimulatorStashingComponent> ui;
|
|
State m_state = Idle; //!< modus
|
|
BlackMisc::Simulation::CAircraftModelList m_modelsToStash; //!< Models about to be stashed
|
|
};
|
|
} // ns
|
|
} // ns
|
|
|
|
#endif // guard
|