8 #include <ff7tkdata_export>
21 explicit FF7String(QByteArrayView data = QByteArrayView());
28 FF7String(
const QString &text,
bool jp =
false);
34 const QByteArray &data()
const;
47 void setText(
const QString &text,
bool jp =
false);
54 bool contains(
const QRegularExpression ®Exp)
const;
63 qsizetype indexOf(
const QRegularExpression ®Exp, qsizetype from, qsizetype &size)
const;
72 qsizetype lastIndexOf(
const QRegularExpression ®Exp, qsizetype &from, qsizetype &size)
const;
74 inline bool operator ==(
const FF7String &t2)
const {
75 return data() == t2.
data();
77 inline bool operator !=(
const FF7String &t2)
const {
78 return data() != t2.
data();
91 void setJapanese(
bool inJapanese);
The FF7String is a container class for FF7Text. Internally it stores the raw data and if the text is ...
Definition: FF7String.h:14
bool isJapanese() const
isJapanese check internal encoding of the text
Definition: FF7String.h:85
const QByteArray & data() const
data Access the data stored in the FF7String
Definition: FF7String.cpp:21