mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-23 13:55:36 +08:00
[AFV] Ref T739, device info improvements
* registration * use identifier in device info list * propertyByIndex/compareByIndex * unRegisterDevices
This commit is contained in:
committed by
Mat Sutcliffe
parent
7beed0225c
commit
134c805990
@@ -1175,8 +1175,8 @@ namespace BlackCore
|
|||||||
const CAudioDeviceInfo o = m_output->device();
|
const CAudioDeviceInfo o = m_output->device();
|
||||||
lock.unlock();
|
lock.unlock();
|
||||||
|
|
||||||
return i.matchesNameTypeHostName(inputDevice) &&
|
return i.matchesNameTypeMachineName(inputDevice) &&
|
||||||
o.matchesNameTypeHostName(outputDevice);
|
o.matchesNameTypeMachineName(outputDevice);
|
||||||
}
|
}
|
||||||
|
|
||||||
CAfvClient::ConnectionStatus CAfvClient::getConnectionStatus() const
|
CAfvClient::ConnectionStatus CAfvClient::getConnectionStatus() const
|
||||||
|
|||||||
@@ -8,6 +8,8 @@
|
|||||||
|
|
||||||
#include "blackmisc/audio/audiodeviceinfo.h"
|
#include "blackmisc/audio/audiodeviceinfo.h"
|
||||||
#include "blackmisc/stringutils.h"
|
#include "blackmisc/stringutils.h"
|
||||||
|
#include "blackmisc/comparefunctions.h"
|
||||||
|
#include "blackmisc/verify.h"
|
||||||
|
|
||||||
#include <QStringBuilder>
|
#include <QStringBuilder>
|
||||||
#include <QHostInfo>
|
#include <QHostInfo>
|
||||||
@@ -19,13 +21,12 @@ namespace BlackMisc
|
|||||||
namespace Audio
|
namespace Audio
|
||||||
{
|
{
|
||||||
CAudioDeviceInfo::CAudioDeviceInfo() :
|
CAudioDeviceInfo::CAudioDeviceInfo() :
|
||||||
m_type(Unknown),
|
m_type(Unknown)
|
||||||
m_hostName(QHostInfo::localHostName())
|
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
CAudioDeviceInfo::CAudioDeviceInfo(DeviceType type, const QString &name) :
|
CAudioDeviceInfo::CAudioDeviceInfo(DeviceType type, const QString &name) :
|
||||||
m_type(type),
|
m_type(type),
|
||||||
m_deviceName(name), m_hostName(QHostInfo::localHostName())
|
m_deviceName(name)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
bool CAudioDeviceInfo::isDefault() const
|
bool CAudioDeviceInfo::isDefault() const
|
||||||
@@ -37,11 +38,11 @@ namespace BlackMisc
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CAudioDeviceInfo::matchesNameTypeHostName(const CAudioDeviceInfo &device) const
|
bool CAudioDeviceInfo::matchesNameTypeMachineName(const CAudioDeviceInfo &device) const
|
||||||
{
|
{
|
||||||
return device.getType() == this->getType() &&
|
return device.getType() == this->getType() &&
|
||||||
stringCompare(device.getName(), this->getName(), Qt::CaseInsensitive) &&
|
stringCompare(device.getName(), this->getName(), Qt::CaseInsensitive) &&
|
||||||
stringCompare(device.getHostName(), this->getHostName(), Qt::CaseInsensitive);
|
stringCompare(device.getMachineName(), this->getMachineName(), Qt::CaseInsensitive);
|
||||||
}
|
}
|
||||||
|
|
||||||
CAudioDeviceInfo::DeviceType CAudioDeviceInfo::fromQtMode(QAudio::Mode m)
|
CAudioDeviceInfo::DeviceType CAudioDeviceInfo::fromQtMode(QAudio::Mode m)
|
||||||
@@ -65,11 +66,72 @@ namespace BlackMisc
|
|||||||
return CAudioDeviceInfo(InputDevice, QAudioDeviceInfo::defaultInputDevice().deviceName());
|
return CAudioDeviceInfo(InputDevice, QAudioDeviceInfo::defaultInputDevice().deviceName());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CVariant CAudioDeviceInfo::propertyByIndex(const CPropertyIndex &index) const
|
||||||
|
{
|
||||||
|
if (index.isMyself()) { return CVariant::fromValue(*this); }
|
||||||
|
const ColumnIndex i = index.frontCasted<ColumnIndex>();
|
||||||
|
switch (i)
|
||||||
|
{
|
||||||
|
case IndexDeviceType: return CVariant::fromValue(this->getType());
|
||||||
|
case IndexDeviceTypeAsString: return CVariant::fromValue(this->getTypeAsString());
|
||||||
|
case IndexName: return CVariant::fromValue(this->getName());
|
||||||
|
case IndexIdentifier: return m_identifier.propertyByIndex(index.copyFrontRemoved());
|
||||||
|
default: break;
|
||||||
|
}
|
||||||
|
return CValueObject::propertyByIndex(index);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CAudioDeviceInfo::setPropertyByIndex(const CPropertyIndex &index, const CVariant &variant)
|
||||||
|
{
|
||||||
|
if (index.isMyself()) { (*this) = variant.to<CAudioDeviceInfo>(); return; }
|
||||||
|
const ColumnIndex i = index.frontCasted<ColumnIndex>();
|
||||||
|
switch (i)
|
||||||
|
{
|
||||||
|
case IndexDeviceType: m_type = static_cast<DeviceType>(variant.toInt()); return;
|
||||||
|
case IndexName: m_deviceName = variant.toQString(); return;
|
||||||
|
case IndexIdentifier: m_identifier.setPropertyByIndex(index.copyFrontRemoved(), variant); return;
|
||||||
|
default: break;
|
||||||
|
}
|
||||||
|
CValueObject::setPropertyByIndex(index, variant);
|
||||||
|
}
|
||||||
|
|
||||||
|
int CAudioDeviceInfo::comparePropertyByIndex(const CPropertyIndex &index, const CAudioDeviceInfo &compareValue) const
|
||||||
|
{
|
||||||
|
if (index.isMyself()) { return m_deviceName.compare(compareValue.m_deviceName, Qt::CaseInsensitive); }
|
||||||
|
const ColumnIndex i = index.frontCasted<ColumnIndex>();
|
||||||
|
switch (i)
|
||||||
|
{
|
||||||
|
case IndexDeviceTypeAsString:
|
||||||
|
case IndexDeviceType: return Compare::compare(m_type, compareValue.m_type);
|
||||||
|
case IndexName: return m_deviceName.compare(compareValue.m_deviceName, Qt::CaseInsensitive);
|
||||||
|
case IndexIdentifier: return m_identifier.comparePropertyByIndex(index.copyFrontRemoved(), compareValue.getIdentifier());
|
||||||
|
default: break;
|
||||||
|
}
|
||||||
|
BLACK_VERIFY_X(false, Q_FUNC_INFO, qUtf8Printable("No comparison for index " + index.toQString()));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
const QString &CAudioDeviceInfo::deviceTypeToString(CAudioDeviceInfo::DeviceType t)
|
||||||
|
{
|
||||||
|
static const QString i("input");
|
||||||
|
static const QString o("output");
|
||||||
|
static const QString u("unknown");
|
||||||
|
|
||||||
|
switch (t)
|
||||||
|
{
|
||||||
|
case InputDevice: return i;
|
||||||
|
case OutputDevice: return o;
|
||||||
|
default: break;
|
||||||
|
}
|
||||||
|
return u;
|
||||||
|
}
|
||||||
|
|
||||||
QString CAudioDeviceInfo::convertToQString(bool i18n) const
|
QString CAudioDeviceInfo::convertToQString(bool i18n) const
|
||||||
{
|
{
|
||||||
Q_UNUSED(i18n)
|
Q_UNUSED(i18n)
|
||||||
if (m_hostName.isEmpty()) { return m_deviceName; }
|
if (!m_identifier.hasName()) { return m_deviceName; }
|
||||||
return m_deviceName % u" [" % this->getHostName() % u']';
|
return m_deviceName % u" [" % this->getMachineName() % u']';
|
||||||
}
|
}
|
||||||
|
|
||||||
} // ns
|
} // ns
|
||||||
} // ns
|
} // ns
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
#ifndef BLACKMISC_AUDIO_AUDIODEVICE_H
|
#ifndef BLACKMISC_AUDIO_AUDIODEVICE_H
|
||||||
#define BLACKMISC_AUDIO_AUDIODEVICE_H
|
#define BLACKMISC_AUDIO_AUDIODEVICE_H
|
||||||
|
|
||||||
|
#include "blackmisc/identifier.h"
|
||||||
#include "blackmisc/metaclass.h"
|
#include "blackmisc/metaclass.h"
|
||||||
#include "blackmisc/valueobject.h"
|
#include "blackmisc/valueobject.h"
|
||||||
#include "blackmisc/blackmiscexport.h"
|
#include "blackmisc/blackmiscexport.h"
|
||||||
@@ -31,6 +32,15 @@ namespace BlackMisc
|
|||||||
class BLACKMISC_EXPORT CAudioDeviceInfo : public CValueObject<CAudioDeviceInfo>
|
class BLACKMISC_EXPORT CAudioDeviceInfo : public CValueObject<CAudioDeviceInfo>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
//! Properties by index
|
||||||
|
enum ColumnIndex
|
||||||
|
{
|
||||||
|
IndexName = CPropertyIndex::GlobalIndexCAudioDeviceInfo,
|
||||||
|
IndexDeviceType,
|
||||||
|
IndexDeviceTypeAsString,
|
||||||
|
IndexIdentifier
|
||||||
|
};
|
||||||
|
|
||||||
//! Type
|
//! Type
|
||||||
enum DeviceType
|
enum DeviceType
|
||||||
{
|
{
|
||||||
@@ -39,7 +49,6 @@ namespace BlackMisc
|
|||||||
Unknown
|
Unknown
|
||||||
};
|
};
|
||||||
|
|
||||||
//!
|
|
||||||
//! Default constructor.
|
//! Default constructor.
|
||||||
CAudioDeviceInfo();
|
CAudioDeviceInfo();
|
||||||
|
|
||||||
@@ -49,12 +58,18 @@ namespace BlackMisc
|
|||||||
//! Get the device name
|
//! Get the device name
|
||||||
const QString &getName() const { return m_deviceName; }
|
const QString &getName() const { return m_deviceName; }
|
||||||
|
|
||||||
//! Host name
|
//! Machine name
|
||||||
const QString &getHostName() const { return m_hostName; }
|
const QString &getMachineName() const { return m_identifier.getMachineName(); }
|
||||||
|
|
||||||
|
//! Identifier
|
||||||
|
const CIdentifier &getIdentifier() const { return m_identifier; }
|
||||||
|
|
||||||
//! Type
|
//! Type
|
||||||
DeviceType getType() const { return m_type; }
|
DeviceType getType() const { return m_type; }
|
||||||
|
|
||||||
|
//! Type as string
|
||||||
|
const QString &getTypeAsString() const { return deviceTypeToString(this->getType()); }
|
||||||
|
|
||||||
//! Input device
|
//! Input device
|
||||||
bool isInputDevice() const { return this->getType() == InputDevice; }
|
bool isInputDevice() const { return this->getType() == InputDevice; }
|
||||||
|
|
||||||
@@ -67,8 +82,8 @@ namespace BlackMisc
|
|||||||
//! Is this a default device?
|
//! Is this a default device?
|
||||||
bool isDefault() const;
|
bool isDefault() const;
|
||||||
|
|
||||||
//! Mathcing name, type and machine
|
//! Matching name, type and machine
|
||||||
bool matchesNameTypeHostName(const CAudioDeviceInfo &device) const;
|
bool matchesNameTypeMachineName(const CAudioDeviceInfo &device) const;
|
||||||
|
|
||||||
//! Convert the Qt type
|
//! Convert the Qt type
|
||||||
static DeviceType fromQtMode(QAudio::Mode m);
|
static DeviceType fromQtMode(QAudio::Mode m);
|
||||||
@@ -79,19 +94,31 @@ namespace BlackMisc
|
|||||||
//! Default input device
|
//! Default input device
|
||||||
static CAudioDeviceInfo getDefaultInputDevice();
|
static CAudioDeviceInfo getDefaultInputDevice();
|
||||||
|
|
||||||
|
//! \copydoc BlackMisc::Mixin::Index::propertyByIndex
|
||||||
|
CVariant propertyByIndex(const BlackMisc::CPropertyIndex &index) const;
|
||||||
|
|
||||||
|
//! \copydoc BlackMisc::Mixin::Index::setPropertyByIndex
|
||||||
|
void setPropertyByIndex(const BlackMisc::CPropertyIndex &index, const CVariant &variant);
|
||||||
|
|
||||||
//! \copydoc BlackMisc::Mixin::String::toQString
|
//! \copydoc BlackMisc::Mixin::String::toQString
|
||||||
QString convertToQString(bool i18n = false) const;
|
QString convertToQString(bool i18n = false) const;
|
||||||
|
|
||||||
|
//! \copydoc BlackMisc::Mixin::Index::comparePropertyByIndex
|
||||||
|
int comparePropertyByIndex(const CPropertyIndex &index, const CAudioDeviceInfo &compareValue) const;
|
||||||
|
|
||||||
|
//! Device type as string
|
||||||
|
static const QString &deviceTypeToString(DeviceType t);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DeviceType m_type = Unknown; //!< Device type, @see CAudioDeviceInfo::DeviceType
|
DeviceType m_type = Unknown; //!< Device type, @see CAudioDeviceInfo::DeviceType
|
||||||
QString m_deviceName; //!< Device name
|
QString m_deviceName; //!< Device name
|
||||||
QString m_hostName; //!< We use a DBus based system. Hence an audio device can reside on a differen computers, this here is its name
|
CIdentifier m_identifier; //!< We use a DBus based system. Hence an audio device can reside on a different computers, this here is its name
|
||||||
|
|
||||||
BLACK_METACLASS(
|
BLACK_METACLASS(
|
||||||
CAudioDeviceInfo,
|
CAudioDeviceInfo,
|
||||||
BLACK_METAMEMBER(type),
|
BLACK_METAMEMBER(type),
|
||||||
BLACK_METAMEMBER(deviceName),
|
BLACK_METAMEMBER(deviceName),
|
||||||
BLACK_METAMEMBER(hostName)
|
BLACK_METAMEMBER(identifier)
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ namespace BlackMisc
|
|||||||
CAudioDeviceInfoList devices;
|
CAudioDeviceInfoList devices;
|
||||||
for (const CAudioDeviceInfo &d : *this)
|
for (const CAudioDeviceInfo &d : *this)
|
||||||
{
|
{
|
||||||
if (stringCompare(hostName, d.getHostName(), Qt::CaseInsensitive))
|
if (stringCompare(hostName, d.getMachineName(), Qt::CaseInsensitive))
|
||||||
{
|
{
|
||||||
devices.push_back(d);
|
devices.push_back(d);
|
||||||
}
|
}
|
||||||
@@ -78,7 +78,7 @@ namespace BlackMisc
|
|||||||
{
|
{
|
||||||
for (const CAudioDeviceInfo &d : *this)
|
for (const CAudioDeviceInfo &d : *this)
|
||||||
{
|
{
|
||||||
if (device.matchesNameTypeHostName(d)) { return d; }
|
if (device.matchesNameTypeMachineName(d)) { return d; }
|
||||||
}
|
}
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
@@ -116,6 +116,11 @@ namespace BlackMisc
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CAudioDeviceInfoList::unRegisterDevices(const CIdentifier &identifier)
|
||||||
|
{
|
||||||
|
this->removeIf(&CAudioDeviceInfo::getIdentifier, identifier);
|
||||||
|
}
|
||||||
|
|
||||||
bool CAudioDeviceInfoList::isRegisteredDevice(const CAudioDeviceInfo &device) const
|
bool CAudioDeviceInfoList::isRegisteredDevice(const CAudioDeviceInfo &device) const
|
||||||
{
|
{
|
||||||
return this->findRegisteredDevice(device).isValid();
|
return this->findRegisteredDevice(device).isValid();
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
#define BLACKMISC_AUDIO_AUDIODEVICELIST_H
|
#define BLACKMISC_AUDIO_AUDIODEVICELIST_H
|
||||||
|
|
||||||
#include "blackmisc/audio/audiodeviceinfo.h"
|
#include "blackmisc/audio/audiodeviceinfo.h"
|
||||||
|
#include "blackmisc/identifier.h"
|
||||||
#include "blackmisc/collection.h"
|
#include "blackmisc/collection.h"
|
||||||
#include "blackmisc/sequence.h"
|
#include "blackmisc/sequence.h"
|
||||||
#include "blackmisc/variant.h"
|
#include "blackmisc/variant.h"
|
||||||
@@ -70,6 +71,9 @@ namespace BlackMisc
|
|||||||
//! Un-register devices
|
//! Un-register devices
|
||||||
void unRegisterDevices(const CAudioDeviceInfoList &devices);
|
void unRegisterDevices(const CAudioDeviceInfoList &devices);
|
||||||
|
|
||||||
|
//! Un-register devices
|
||||||
|
void unRegisterDevices(const CIdentifier &identifier);
|
||||||
|
|
||||||
//! Is that a registered device?
|
//! Is that a registered device?
|
||||||
bool isRegisteredDevice(const CAudioDeviceInfo &device) const;
|
bool isRegisteredDevice(const CAudioDeviceInfo &device) const;
|
||||||
|
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ namespace BlackMisc
|
|||||||
qDBusRegisterMetaType<PTTCOM>();
|
qDBusRegisterMetaType<PTTCOM>();
|
||||||
qDBusRegisterMetaType<CNotificationSounds::PlayMode>();
|
qDBusRegisterMetaType<CNotificationSounds::PlayMode>();
|
||||||
qDBusRegisterMetaType<CNotificationSounds::NotificationFlag>();
|
qDBusRegisterMetaType<CNotificationSounds::NotificationFlag>();
|
||||||
|
qDBusRegisterMetaType<CAudioDeviceInfo::DeviceType>();
|
||||||
qRegisterMetaTypeStreamOperators<CNotificationSounds::PlayMode>();
|
qRegisterMetaTypeStreamOperators<CNotificationSounds::PlayMode>();
|
||||||
qRegisterMetaTypeStreamOperators<CNotificationSounds::NotificationFlag>();
|
qRegisterMetaTypeStreamOperators<CNotificationSounds::NotificationFlag>();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "blackmisc/identifier.h"
|
#include "blackmisc/identifier.h"
|
||||||
|
#include "blackmisc/comparefunctions.h"
|
||||||
|
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
#include <QHostInfo>
|
#include <QHostInfo>
|
||||||
@@ -225,19 +226,41 @@ namespace BlackMisc
|
|||||||
|
|
||||||
switch (i)
|
switch (i)
|
||||||
{
|
{
|
||||||
case IndexName: return CVariant::fromValue(m_name);
|
case IndexName: return CVariant::fromValue(m_name);
|
||||||
case IndexMachineIdBase64: return CVariant::fromValue(m_machineIdBase64);
|
case IndexMachineIdBase64: return CVariant::fromValue(m_machineIdBase64);
|
||||||
case IndexMachineName: return CVariant::fromValue(getMachineName());
|
case IndexMachineName: return CVariant::fromValue(getMachineName());
|
||||||
case IndexMachineId: return CVariant::fromValue(getMachineId());
|
case IndexMachineId: return CVariant::fromValue(getMachineId());
|
||||||
case IndexProcessId: return CVariant::fromValue(m_processId);
|
case IndexProcessId: return CVariant::fromValue(m_processId);
|
||||||
case IndexProcessName: return CVariant::fromValue(m_processName);
|
case IndexProcessName: return CVariant::fromValue(m_processName);
|
||||||
case IndexIsFromLocalMachine: return CVariant::fromValue(isFromLocalMachine());
|
case IndexIsFromLocalMachine: return CVariant::fromValue(isFromLocalMachine());
|
||||||
case IndexIsFromSameProcess: return CVariant::fromValue(hasApplicationProcessId());
|
case IndexIsFromSameProcess: return CVariant::fromValue(hasApplicationProcessId());
|
||||||
case IndexIsFromSameProcessName: return CVariant::fromValue(hasApplicationProcessName());
|
case IndexIsFromSameProcessName: return CVariant::fromValue(hasApplicationProcessName());
|
||||||
default: return CValueObject::propertyByIndex(index);
|
default: return CValueObject::propertyByIndex(index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int CIdentifier::comparePropertyByIndex(const CPropertyIndex &index, const CIdentifier &compareValue) const
|
||||||
|
{
|
||||||
|
if (index.isMyself()) { return Compare::compare(m_processId, compareValue.m_processId); }
|
||||||
|
|
||||||
|
const ColumnIndex i = index.frontCasted<ColumnIndex>();
|
||||||
|
if (ITimestampBased::canHandleIndex(index)) { return ITimestampBased::comparePropertyByIndex(index, compareValue); }
|
||||||
|
|
||||||
|
switch (i)
|
||||||
|
{
|
||||||
|
case IndexName: return m_name.compare(compareValue.m_name, Qt::CaseInsensitive);
|
||||||
|
case IndexMachineIdBase64: return m_machineIdBase64.compare(compareValue.m_machineIdBase64, Qt::CaseInsensitive);
|
||||||
|
case IndexMachineName: return m_machineName.compare(compareValue.m_machineName, Qt::CaseInsensitive);
|
||||||
|
case IndexMachineId: return m_machineName.compare(compareValue.m_machineName, Qt::CaseInsensitive);
|
||||||
|
case IndexProcessId: return Compare::compare(m_processId, compareValue.m_processId);
|
||||||
|
case IndexProcessName: return m_processName.compare(compareValue.m_processName, Qt::CaseInsensitive);
|
||||||
|
case IndexIsFromLocalMachine: return Compare::compare(this->isFromLocalMachine(), compareValue.isFromLocalMachine());
|
||||||
|
case IndexIsFromSameProcess: return Compare::compare(this->hasApplicationProcessId(), compareValue.hasApplicationProcessId());
|
||||||
|
case IndexIsFromSameProcessName: return Compare::compare(this->hasApplicationProcessName(), compareValue.hasApplicationProcessName());
|
||||||
|
default: return CValueObject::comparePropertyByIndex(index, compareValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void CIdentifier::setPropertyByIndex(const CPropertyIndex &index, const CVariant &variant)
|
void CIdentifier::setPropertyByIndex(const CPropertyIndex &index, const CVariant &variant)
|
||||||
{
|
{
|
||||||
CValueObject::setPropertyByIndex(index, variant);
|
CValueObject::setPropertyByIndex(index, variant);
|
||||||
|
|||||||
@@ -146,6 +146,9 @@ namespace BlackMisc
|
|||||||
//! \copydoc BlackMisc::Mixin::Index::setPropertyByIndex
|
//! \copydoc BlackMisc::Mixin::Index::setPropertyByIndex
|
||||||
void setPropertyByIndex(const BlackMisc::CPropertyIndex &index, const CVariant &variant);
|
void setPropertyByIndex(const BlackMisc::CPropertyIndex &index, const CVariant &variant);
|
||||||
|
|
||||||
|
//! \copydoc BlackMisc::Mixin::Index::comparePropertyByIndex
|
||||||
|
int comparePropertyByIndex(const CPropertyIndex &index, const CIdentifier &compareValue) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
//! Constructor.
|
//! Constructor.
|
||||||
CIdentifier(const QString &name, const QString &machineId, const QString &machineName,
|
CIdentifier(const QString &name, const QString &machineId, const QString &machineName,
|
||||||
|
|||||||
@@ -146,6 +146,7 @@ namespace BlackMisc
|
|||||||
GlobalIndexCAircraftCfgEntries = 8800,
|
GlobalIndexCAircraftCfgEntries = 8800,
|
||||||
GlobalIndexCDistributor = 8900,
|
GlobalIndexCDistributor = 8900,
|
||||||
GlobalIndexCVPilotModelRule = 9000,
|
GlobalIndexCVPilotModelRule = 9000,
|
||||||
|
GlobalIndexCAudioDeviceInfo = 10000,
|
||||||
GlobalIndexCSettingKeyboardHotkey = 11000,
|
GlobalIndexCSettingKeyboardHotkey = 11000,
|
||||||
GlobalIndexCKeyboardKey = 11100,
|
GlobalIndexCKeyboardKey = 11100,
|
||||||
GlobalIndexCJoystickButton = 11200,
|
GlobalIndexCJoystickButton = 11200,
|
||||||
|
|||||||
Reference in New Issue
Block a user