mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-05 01:35:45 +08:00
Ref T165, "private slots" -> "private" in distribution info component
This commit is contained in:
@@ -56,34 +56,33 @@ namespace BlackGui
|
|||||||
//! New platfrom or channel
|
//! New platfrom or channel
|
||||||
void selectionChanged();
|
void selectionChanged();
|
||||||
|
|
||||||
private slots:
|
|
||||||
//! Load latest version
|
|
||||||
void ps_requestLoadOfSetup();
|
|
||||||
|
|
||||||
//! Loaded latest version
|
|
||||||
void ps_loadedDistributionInfo(bool success);
|
|
||||||
|
|
||||||
//! Channel has been changed
|
|
||||||
void ps_channelChanged();
|
|
||||||
|
|
||||||
//! Platform changed
|
|
||||||
void ps_platformChanged();
|
|
||||||
|
|
||||||
//! Cache values have been changed
|
|
||||||
void ps_changedDistributionCache();
|
|
||||||
|
|
||||||
//! Install XSwiftBus dialog
|
|
||||||
void ps_installXSwiftBusDialog();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QScopedPointer<Ui::CDistributionInfoComponent> ui;
|
QScopedPointer<Ui::CDistributionInfoComponent> ui;
|
||||||
QScopedPointer<CInstallXSwiftBusDialog> m_installXSwiftBusDialog; //!< dialog, install XSwiftXBus
|
QScopedPointer<CInstallXSwiftBusDialog> m_installXSwiftBusDialog; //!< dialog, install XSwiftXBus
|
||||||
QString m_newVersionAvailable; //!< new version number if any
|
QString m_newVersionAvailable; //!< new version number if any
|
||||||
BlackMisc::Db::CDistribution m_currentDistribution; //!< current distribution
|
BlackMisc::Db::CDistribution m_currentDistribution; //!< current distribution
|
||||||
BlackMisc::CDataReadOnly<BlackMisc::Db::TDistributionsInfo> m_distributionsInfo { this, &CDistributionInfoComponent::ps_changedDistributionCache }; //!< version cache
|
BlackMisc::CDataReadOnly<BlackMisc::Db::TDistributionsInfo> m_distributionsInfo { this, &CDistributionInfoComponent::changedDistributionCache }; //!< version cache
|
||||||
BlackMisc::CSetting<BlackCore::Application::TDistribution> m_distributionSetting { this }; //!< channel/platform selected
|
BlackMisc::CSetting<BlackCore::Application::TDistribution> m_distributionSetting { this }; //!< channel/platform selected
|
||||||
BlackMisc::CDigestSignal m_dsDistributionAvailable { this, &CDistributionInfoComponent::triggerInfoAvailableSignal, 10000, 2 };
|
BlackMisc::CDigestSignal m_dsDistributionAvailable { this, &CDistributionInfoComponent::triggerInfoAvailableSignal, 10000, 2 };
|
||||||
|
|
||||||
|
//! Load latest version
|
||||||
|
void requestLoadOfSetup();
|
||||||
|
|
||||||
|
//! Loaded latest version
|
||||||
|
void loadedDistributionInfo(bool success);
|
||||||
|
|
||||||
|
//! Channel has been changed
|
||||||
|
void channelChanged();
|
||||||
|
|
||||||
|
//! Platform changed
|
||||||
|
void platformChanged();
|
||||||
|
|
||||||
|
//! Cache values have been changed
|
||||||
|
void changedDistributionCache();
|
||||||
|
|
||||||
|
//! Install XSwiftBus dialog
|
||||||
|
void installXSwiftBusDialog();
|
||||||
|
|
||||||
//! Save the current settings
|
//! Save the current settings
|
||||||
void saveSettings();
|
void saveSettings();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user