1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
Actionaz
Copyright (C) 2008-2014 Jonathan Mercier-Ganady
Actionaz is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Actionaz is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Contact : jmgr@jmgr.info
*/
#ifndef RAWDATA_H
#define RAWDATA_H
#include "actiontools_global.h"
#include "codetools.h"
#include "codeclass.h"
#include <QObject>
#include <QScriptValue>
#include <QScriptEngine>
#include <QByteArray>
namespace Code
{
class ACTIONTOOLSSHARED_EXPORT RawData : public CodeClass
{
Q_OBJECT
public:
static QScriptValue constructor(QScriptContext *context, QScriptEngine *engine);
static QScriptValue constructor(const RawData &other, QScriptEngine *engine);
static QScriptValue constructor(const QByteArray &byteArray, QScriptEngine *engine);
static void registerClass(QScriptEngine *scriptEngine);
RawData();
RawData(const RawData &other);
RawData(const QByteArray &byteArray);
RawData &operator=(RawData other);
RawData &operator=(QByteArray byteArray);
void swap(RawData &other);
void swap(QByteArray &byteArray);
const QByteArray &byteArray() const;
virtual int additionalMemoryCost() const { return mByteArray.size(); }
public slots:
QScriptValue clone() const;
bool equals(const QScriptValue &other) const;
QString toString() const;
QScriptValue append(const QVariant &data);
QScriptValue chop(int n);
QScriptValue clear();
bool contains(const QVariant &data);
int count(const QVariant &data) const;
bool endsWith(const QVariant &data) const;
int indexOf(const QVariant &data, int from = 0) const;
bool isEmpty() const;
int lastIndexOf(const QVariant &data) const;
QScriptValue left(int len) const;
int length() const;
QScriptValue mid(int pos, int len = -1) const;
QScriptValue prepend(const QVariant &data);
QScriptValue remove(int pos, int len);
QScriptValue replace(const QString &before, const QString &after);
QScriptValue resize(int size);
QScriptValue right(int len) const;
QScriptValue setData(const QVariant &data);
int size() const;
bool startsWith(const QVariant &data);
double convertToNumber() const;
QString convertToString(Encoding encoding = Native) const;
QScriptValue truncate(int pos);
private:
QByteArray mByteArray;
};
}
#endif // RAWDATA_H
|