mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 00:16:51 +08:00
53 lines
1.6 KiB
C++
53 lines
1.6 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_SETTINGSXSWIFTBUSCOMPONENT_H
|
|
#define BLACKGUI_COMPONENTS_SETTINGSXSWIFTBUSCOMPONENT_H
|
|
|
|
#include "blackgui/blackguiexport.h"
|
|
#include "blackmisc/simulation/settings/xswiftbussettings.h"
|
|
#include "blackmisc/settingscache.h"
|
|
#include "blackmisc/logcategorylist.h"
|
|
#include <QFrame>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui { class CSettingsXSwiftBusComponent; }
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
/*!
|
|
* XSwiftBus setup
|
|
*/
|
|
class BLACKGUI_EXPORT CSettingsXSwiftBusComponent : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Log categories
|
|
static const BlackMisc::CLogCategoryList &getLogCategories();
|
|
|
|
//! Constructor
|
|
explicit CSettingsXSwiftBusComponent(QWidget *parent = nullptr);
|
|
|
|
//! Dtor
|
|
virtual ~CSettingsXSwiftBusComponent() override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::CSettingsXSwiftBusComponent> ui;
|
|
BlackMisc::CSetting<BlackMisc::Simulation::Settings::TXSwiftBusSettings> m_xSwiftBusSettings { this };
|
|
|
|
void resetServer();
|
|
void saveServer();
|
|
};
|
|
} // ns
|
|
} // ns
|
|
#endif // guard
|