mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-16 10:25:36 +08:00
35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
// SPDX-FileCopyrightText: Copyright (C) 2017 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKSIMPLUGIN_EMULATED_SIMULATOREMULATEDCONFIG_H
|
|
#define BLACKSIMPLUGIN_EMULATED_SIMULATOREMULATEDCONFIG_H
|
|
|
|
#include "gui/pluginconfig.h"
|
|
|
|
namespace BlackSimPlugin::Emulated
|
|
{
|
|
/*!
|
|
* Window for setting up the FSX plugin.
|
|
*/
|
|
class CSimulatorEmulatedConfig : public QObject, public swift::gui::IPluginConfig
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.swift-project.swiftgui.pluginconfiginterface" FILE "simulatoremulatedconfig.json")
|
|
Q_INTERFACES(swift::gui::IPluginConfig)
|
|
|
|
public:
|
|
//! Ctor
|
|
CSimulatorEmulatedConfig(QObject *parent = nullptr);
|
|
|
|
//! Dtor
|
|
virtual ~CSimulatorEmulatedConfig() override {}
|
|
|
|
//! \copydoc swift::gui::IPluginConfig::createConfigWindow()
|
|
swift::gui::CPluginConfigWindow *createConfigWindow(QWidget *parent) override;
|
|
};
|
|
} // ns
|
|
|
|
#endif // guard
|