diff --git a/src/blackgui/components/copyconfigurationcomponent.h b/src/blackgui/components/copyconfigurationcomponent.h index 8ce735647..4aae1dbdd 100644 --- a/src/blackgui/components/copyconfigurationcomponent.h +++ b/src/blackgui/components/copyconfigurationcomponent.h @@ -27,9 +27,8 @@ namespace BlackGui { namespace Components { - /** - * Copy configuration (i.e. settings and cache files) - */ + //! Copy configuration (i.e. settings and cache files) + //! \deprecated replaced by CCopySettingsAndCachesComponent class BLACKGUI_EXPORT CCopyConfigurationComponent : public QFrame { Q_OBJECT diff --git a/src/blackgui/components/copyconfigurationdialog.h b/src/blackgui/components/copyconfigurationdialog.h index 57a6a692d..f433da632 100644 --- a/src/blackgui/components/copyconfigurationdialog.h +++ b/src/blackgui/components/copyconfigurationdialog.h @@ -21,9 +21,8 @@ namespace BlackGui { namespace Components { - /** - * Dialog to copy cache and settings - */ + //! Dialog to copy cache and settings + //! \deprecated replaced by CCopySettingsAndCachesComponent class BLACKGUI_EXPORT CCopyConfigurationDialog : public QDialog { Q_OBJECT diff --git a/src/blackgui/components/copysettingsandcachescomponent.h b/src/blackgui/components/copysettingsandcachescomponent.h index d423e244d..84147b3e9 100644 --- a/src/blackgui/components/copysettingsandcachescomponent.h +++ b/src/blackgui/components/copysettingsandcachescomponent.h @@ -29,6 +29,7 @@ #include "blackmisc/simulation/settings/modelsettings.h" #include "blackmisc/network/data/lastserver.h" #include "blackmisc/network/settings/servers.h" +#include "blackmisc/directories.h" #include "blackmisc/applicationinfo.h" #include @@ -110,31 +111,31 @@ namespace BlackGui QScopedPointer ui; - BlackMisc::CSetting m_settingsAudio { this }; BlackMisc::CSetting m_settingsAudioInputDevice { this }; BlackMisc::CSetting m_settingsAudioOutputDevice { this }; - BlackMisc::CSetting m_settingsNetworkServers { this }; BlackMisc::CSetting m_settingsGuiGeneral { this }; BlackMisc::CSetting m_settingsDockWidget { this }; BlackMisc::CSetting m_settingsViewUpdate { this }; + BlackMisc::CSetting m_settingsConsolidation { this }; //!< consolidation time + BlackMisc::CSetting m_settingsAtcStations { this }; + BlackMisc::CSetting m_settingsTextMessage { this }; BlackMisc::CSetting m_settingsEnabledSimulators { this }; BlackMisc::CSetting m_settingsActionHotkeys { this }; + BlackMisc::CSetting m_settingsAudio { this }; + BlackMisc::CSetting m_settingsNetworkServers { this }; BlackMisc::CSetting m_settingsSimulatorFsx { this }; //!< FSX settings BlackMisc::CSetting m_settingsSimulatorFs9 { this }; //!< FS9 settings BlackMisc::CSetting m_settingsSimulatorP3D { this }; //!< P3D settings BlackMisc::CSetting m_settingsSimulatorXPlane { this }; //!< XP settings - BlackMisc::CSetting m_settingsConsolidation { this }; //!< consolidation time BlackMisc::CSetting m_settingsModel { this }; //!< model setting - BlackMisc::CSetting m_settingsAtcStations { this }; - BlackMisc::CSetting m_settingsTextMessage { this }; - BlackMisc::CData m_cacheLastNetworkServer { this }; //!< recently used server (VATSIM, other) BlackMisc::CData m_cacheLastVatsimServer { this }; //!< recently used VATSIM server + BlackMisc::CData m_cacheLauncherSetup { this }; + BlackMisc::CData m_cacheVatsimSetup { this }; + BlackMisc::CData m_cacheLastNetworkServer { this }; //!< recently used server (VATSIM, other) BlackMisc::CData m_cacheModelSetCurrentSimulator { this }; BlackMisc::CData m_cacheModelsCurrentSimulator { this }; BlackMisc::CData m_cacheLastAircraftModel { this }; //!< recently used aircraft model - BlackMisc::CData m_cacheLauncherSetup { this }; - BlackMisc::CData m_cacheVatsimSetup { this }; }; /**