mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 17:35:34 +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
|
||||
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:
|
||||
QScopedPointer<Ui::CDistributionInfoComponent> ui;
|
||||
QScopedPointer<CInstallXSwiftBusDialog> m_installXSwiftBusDialog; //!< dialog, install XSwiftXBus
|
||||
QString m_newVersionAvailable; //!< new version number if any
|
||||
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::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
|
||||
void saveSettings();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user