mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
91 lines
2.9 KiB
C++
91 lines
2.9 KiB
C++
/* Copyright (C) 2013
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution. No part of swift project, including this file, may be copied, modified, propagated,
|
|
* or distributed except according to the terms contained in the LICENSE file.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKMISC_PQ_PQSTRING_H
|
|
#define BLACKMISC_PQ_PQSTRING_H
|
|
|
|
#include "blackmisc/blackmiscexport.h"
|
|
#include "blackmisc/metaclass.h"
|
|
#include "blackmisc/valueobject.h"
|
|
#include "blackmisc/variant.h"
|
|
|
|
#include <QMetaType>
|
|
#include <QString>
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace PhysicalQuantities
|
|
{
|
|
/*!
|
|
* Represents a physical quantity by a string
|
|
* \details Used to parse strings into physical quantities, validate strings
|
|
* \sa BlackMisc::PhysicalQuantity
|
|
*/
|
|
class BLACKMISC_EXPORT CPqString : public CValueObject<CPqString>
|
|
{
|
|
public:
|
|
//! \copydoc BlackMisc::Mixin::String::toQString
|
|
QString convertToQString(bool i18n = false) const;
|
|
|
|
//! Number separators / group separators
|
|
enum SeparatorMode
|
|
{
|
|
SeparatorQtDefault, //!< 100000.00 no group separator
|
|
SeparatorLocale, //!< depending on QLocale, e.g. 100.000,00 in Germany
|
|
SeparatorBestGuess //!< try to figure out
|
|
};
|
|
|
|
//! Group and digit separator
|
|
enum SeparatorIndex
|
|
{
|
|
Group,
|
|
Digit
|
|
};
|
|
|
|
//! Default constructor
|
|
CPqString() = default;
|
|
|
|
//! Constructor, for values such as 10km/h
|
|
CPqString(const QString &value) : m_string(value) {}
|
|
|
|
//! Parse a string value like "100m", "10.3Mhz"
|
|
static CVariant parseToVariant(const QString &value, SeparatorMode mode = SeparatorQtDefault);
|
|
|
|
//! Parse into concrete type
|
|
template <class PQ> static PQ parse(const QString &value, SeparatorMode mode = SeparatorQtDefault)
|
|
{
|
|
if (value.isEmpty()) {return PQ::null(); }
|
|
if (value.contains("null", Qt::CaseInsensitive)) { return PQ::null(); }
|
|
const CVariant qv = parseToVariant(value, mode);
|
|
if (!qv.isNull() && qv.canConvert<PQ>())
|
|
{
|
|
return qv.value<PQ>();
|
|
}
|
|
return PQ::null();
|
|
}
|
|
|
|
//! Locale aware parsing
|
|
static double parseNumber(const QString &number, bool &success, SeparatorMode mode = SeparatorBestGuess);
|
|
|
|
private:
|
|
QString m_string;
|
|
|
|
BLACK_METACLASS(
|
|
CPqString,
|
|
BLACK_METAMEMBER(string)
|
|
);
|
|
};
|
|
} // ns
|
|
} // ns
|
|
|
|
Q_DECLARE_METATYPE(BlackMisc::PhysicalQuantities::CPqString)
|
|
|
|
#endif // guard
|