mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-09 21:45:34 +08:00
Ref T529, style
This commit is contained in:
committed by
Mat Sutcliffe
parent
f363d4f41b
commit
aa47d7bb03
@@ -44,7 +44,7 @@ namespace BlackMisc
|
||||
bool hasValidOrder() const;
|
||||
|
||||
//! Can given index be handled
|
||||
static bool canHandleIndex(const BlackMisc::CPropertyIndex &index);
|
||||
static bool canHandleIndex(const CPropertyIndex &index);
|
||||
|
||||
protected:
|
||||
//! Constructor
|
||||
@@ -54,12 +54,12 @@ namespace BlackMisc
|
||||
IOrderable(int order);
|
||||
|
||||
//! \copydoc BlackMisc::Mixin::Index::propertyByIndex
|
||||
CVariant propertyByIndex(const BlackMisc::CPropertyIndex &index) const;
|
||||
CVariant propertyByIndex(const CPropertyIndex &index) const;
|
||||
|
||||
//! \copydoc BlackMisc::Mixin::Index::setPropertyByIndex
|
||||
void setPropertyByIndex(const BlackMisc::CPropertyIndex &index, const CVariant &variant);
|
||||
void setPropertyByIndex(const CPropertyIndex &index, const CVariant &variant);
|
||||
|
||||
//! Compare for index
|
||||
//! \copydoc BlackMisc::Mixin::Index::comparePropertyByIndex
|
||||
int comparePropertyByIndex(const CPropertyIndex &index, const IOrderable &compareValue) const;
|
||||
|
||||
int m_order = -1; //!< order number
|
||||
|
||||
@@ -13,7 +13,6 @@
|
||||
#define BLACKMISC_ORDERABLELIST_H
|
||||
|
||||
#include "blackmisc/blackmiscexport.h"
|
||||
|
||||
#include <QList>
|
||||
|
||||
namespace BlackMisc
|
||||
|
||||
@@ -225,16 +225,16 @@ namespace BlackMisc
|
||||
|
||||
signals:
|
||||
//! \copydoc IAircraftModelLoader::loadingFinished
|
||||
void loadingFinished(const BlackMisc::CStatusMessageList &status, const BlackMisc::Simulation::CSimulatorInfo &simulator, BlackMisc::Simulation::IAircraftModelLoader::LoadFinishedInfo info);
|
||||
void loadingFinished(const BlackMisc::CStatusMessageList &status, const CSimulatorInfo &simulator, IAircraftModelLoader::LoadFinishedInfo info);
|
||||
|
||||
//! \copydoc IAircraftModelLoader::diskLoadingStarted
|
||||
void diskLoadingStarted(const BlackMisc::Simulation::CSimulatorInfo &simulator, BlackMisc::Simulation::IAircraftModelLoader::LoadMode mode);
|
||||
void diskLoadingStarted(const CSimulatorInfo &simulator, IAircraftModelLoader::LoadMode mode);
|
||||
|
||||
//! \copydoc IAircraftModelLoader::loadingProgress
|
||||
void loadingProgress(const BlackMisc::Simulation::CSimulatorInfo &simulator, const QString &message, int progressPercentage);
|
||||
void loadingProgress(const CSimulatorInfo &simulator, const QString &message, int progressPercentage);
|
||||
|
||||
//! \copydoc IAircraftModelLoader::cacheChanged
|
||||
void cacheChanged(const BlackMisc::Simulation::CSimulatorInfo &simulator);
|
||||
void cacheChanged(const CSimulatorInfo &simulator);
|
||||
|
||||
private:
|
||||
IAircraftModelLoader *m_loaderFsx = nullptr;
|
||||
|
||||
@@ -12,12 +12,13 @@
|
||||
#ifndef BLACKMISC_STATUSMESSAGE_H
|
||||
#define BLACKMISC_STATUSMESSAGE_H
|
||||
|
||||
#include "blackmiscexport.h"
|
||||
#include "icon.h"
|
||||
#include "propertyindex.h"
|
||||
#include "logcategorylist.h"
|
||||
#include "timestampbased.h"
|
||||
#include "orderable.h"
|
||||
#include "icon.h"
|
||||
#include "propertyindex.h"
|
||||
#include "typetraits.h"
|
||||
#include "blackmiscexport.h"
|
||||
|
||||
#include <QReadWriteLock>
|
||||
|
||||
|
||||
@@ -12,14 +12,15 @@
|
||||
#ifndef BLACKMISC_STATUSMESSAGELIST_H
|
||||
#define BLACKMISC_STATUSMESSAGELIST_H
|
||||
|
||||
#include "blackmisc/blackmiscexport.h"
|
||||
#include "blackmisc/collection.h"
|
||||
#include "blackmisc/logcategory.h"
|
||||
#include "blackmisc/logcategorylist.h"
|
||||
#include "blackmisc/sequence.h"
|
||||
#include "blackmisc/statusmessage.h"
|
||||
#include "blackmisc/logcategorylist.h"
|
||||
#include "blackmisc/logcategory.h"
|
||||
#include "blackmisc/collection.h"
|
||||
#include "blackmisc/sequence.h"
|
||||
#include "blackmisc/timestampobjectlist.h"
|
||||
#include "blackmisc/orderablelist.h"
|
||||
#include "blackmisc/variant.h"
|
||||
#include "blackmisc/blackmiscexport.h"
|
||||
|
||||
#include <QJsonArray>
|
||||
#include <QMetaType>
|
||||
|
||||
Reference in New Issue
Block a user