finishing up gta5view 1.4.0

This commit is contained in:
Syping 2017-08-26 14:13:35 +02:00
parent 8ddd79d667
commit e047e1b44d
19 changed files with 340 additions and 110 deletions

View file

@ -53,6 +53,7 @@ public:
explicit SnapmaticPicture(const QString &fileName = "", QObject *parent = 0);
~SnapmaticPicture();
void reset();
bool preloadFile();
bool readingPictureFromFile(const QString &fileName, bool writeEnabled = true, bool cacheEnabled = false, bool fastLoad = true, bool lowRamMode = false);
bool readingPicture(bool writeEnabled = true, bool cacheEnabled = false, bool fastLoad = true, bool lowRamMode = false);
bool isPicOk();
@ -121,6 +122,7 @@ private:
bool lowRamMode;
bool writeEnabled;
bool cacheEnabled;
bool isLoadedInRAM;
bool isCustomFormat;
int jpegRawContentSize;
int jpegRawContentSizeE;
@ -138,7 +140,9 @@ private:
static bool verifyTitleChar(const QChar &titleChar);
signals:
void preloaded();
void updated();
void loaded();
public slots:
};