25 QByteArray dataChanged;
29class Chunks:
public QObject
34 Chunks(QObject *parent);
35 Chunks(QIODevice &ioDevice, QObject *parent);
36 bool setIODevice(QIODevice &ioDevice);
39 QByteArray data(qint64 pos=0, qint64 count=-1, QByteArray *highlighted=0);
40 bool write(QIODevice &iODevice, qint64 pos=0, qint64 count=-1);
43 void setDataChanged(qint64 pos,
bool dataChanged);
44 bool dataChanged(qint64 pos);
47 qint64 indexOf(
const QByteArray &ba, qint64 from);
48 qint64 lastIndexOf(
const QByteArray &ba, qint64 from);
51 bool insert(qint64 pos,
char b);
52 bool overwrite(qint64 pos,
char b);
53 bool removeAt(qint64 pos);
56 char operator[](qint64 pos);
62 int getChunkIndex(qint64 absPos);
64 QIODevice * _ioDevice;