mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-16 18:35:35 +08:00
Ref T264, sued "new signal syntax" with some QShortcuts and as a result made some slots "normal functions"
This commit is contained in:
@@ -134,20 +134,19 @@ namespace BlackGui
|
||||
virtual void jsonLoadedAndModelUpdated(const BlackMisc::Simulation::CAircraftModelList &models) override;
|
||||
//! @}
|
||||
|
||||
private slots:
|
||||
//! Highlight stashed models
|
||||
void ps_toggleHighlightStashedModels();
|
||||
|
||||
private:
|
||||
//! Toggle highlight invalid models
|
||||
void ps_toogleHighlightInvalidModels();
|
||||
void toggleHighlightInvalidModels();
|
||||
|
||||
//! Toggle if stashing unselects
|
||||
void ps_stashingClearsSelection();
|
||||
void stashingClearsSelection();
|
||||
|
||||
//! Highlight stashed models
|
||||
void toggleHighlightStashedModels();
|
||||
|
||||
//! Stash shortcut pressed
|
||||
void ps_requestStash();
|
||||
void requestedStash();
|
||||
|
||||
private:
|
||||
bool m_stashingClearsSelection = true; //!< stashing unselects
|
||||
BlackMisc::Simulation::CSimulatorInfo m_loadingRequiresSimulator; //!< simulator required when loading
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user