mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 17:35:34 +08:00
refs #325, reduced loading in aircraft component
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
|
||||
#include "blackgui/components/runtimebasedcomponent.h"
|
||||
#include "blackgui/components/timerbasedcomponent.h"
|
||||
#include "blackgui/components/dockwidgetinfoareacomponent.h"
|
||||
#include "blackmisc/avaircraft.h"
|
||||
|
||||
#include <QTabWidget>
|
||||
@@ -24,7 +25,10 @@ namespace BlackGui
|
||||
namespace Components
|
||||
{
|
||||
//! Aircraft widget
|
||||
class CAircraftComponent : public QTabWidget, public CRuntimeBasedComponent
|
||||
class CAircraftComponent :
|
||||
public QTabWidget,
|
||||
public CDockWidgetInfoAreaComponent,
|
||||
public CRuntimeBasedComponent
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -38,6 +42,12 @@ namespace BlackGui
|
||||
//! Timer for updating
|
||||
CTimerBasedComponent *getTimerComponent() { return this->m_timerComponent; }
|
||||
|
||||
//! Aircrafts in range
|
||||
int countAircrafts() const;
|
||||
|
||||
//! Airports in range
|
||||
int countAirportsInRange() const;
|
||||
|
||||
public slots:
|
||||
//! Update users
|
||||
void update();
|
||||
@@ -51,6 +61,14 @@ namespace BlackGui
|
||||
//! \copydoc CTimerBasedComponent::stopTimer
|
||||
void stopTimer() { Q_ASSERT(this->m_timerComponent); this->m_timerComponent->stopTimer(); }
|
||||
|
||||
protected:
|
||||
//! \copydoc CRuntimeBasedComponent::runtimeHasBeenSet
|
||||
void runtimeHasBeenSet() override;
|
||||
|
||||
private slots:
|
||||
//! Info area tab bar has changed
|
||||
void ps_infoAreaTabBarChanged(int index);
|
||||
|
||||
private:
|
||||
Ui::CAircraftComponent *ui;
|
||||
CTimerBasedComponent *m_timerComponent;
|
||||
|
||||
Reference in New Issue
Block a user