swift
simulatorfsxconfig.cpp
1 // SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
4 #include "simulatorfsxconfig.h"
5 
6 #include "../fsxcommon/simulatorfsxconfigwindow.h"
7 
8 using namespace swift::gui;
9 using namespace swift::simplugin::fsxcommon;
10 
11 namespace swift::simplugin::fsx
12 {
13  CSimulatorFsxConfig::CSimulatorFsxConfig(QObject *parent) : QObject(parent)
14  {
15  // void
16  }
17 
19  {
20  return new CSimulatorFsxConfigWindow("FSX", parent);
21  }
22 } // namespace swift::simplugin::fsx
Base class for plugin config window.
swift::gui::CPluginConfigWindow * createConfigWindow(QWidget *parent)
Creates a new config window and returns its pointer.
A window that lets user set up the FSX plugin.
GUI related classes.