mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
Merged
This commit is contained in:
commit
618214f667
@ -777,19 +777,19 @@ void Render::createComic(const QString & path)
|
|||||||
|
|
||||||
previousIndex = currentIndex = 0;
|
previousIndex = currentIndex = 0;
|
||||||
|
|
||||||
connect(comic,SIGNAL(errorOpening()),this,SIGNAL(errorOpening()));
|
connect(comic,SIGNAL(errorOpening()),this,SIGNAL(errorOpening()), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(errorOpening(QString)),this,SIGNAL(errorOpening(QString)));
|
connect(comic,SIGNAL(errorOpening(QString)),this,SIGNAL(errorOpening(QString)), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(crcErrorFound(QString)),this,SIGNAL(crcError(QString)));
|
connect(comic,SIGNAL(crcErrorFound(QString)),this,SIGNAL(crcError(QString)), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(errorOpening()),this,SLOT(reset()));
|
connect(comic,SIGNAL(errorOpening()),this,SLOT(reset()), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(imageLoaded(int)),this,SIGNAL(imageLoaded(int)));
|
connect(comic,SIGNAL(imageLoaded(int)),this,SIGNAL(imageLoaded(int)), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(imageLoaded(int)),this,SLOT(pageRawDataReady(int)));
|
connect(comic,SIGNAL(imageLoaded(int)),this,SLOT(pageRawDataReady(int)), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(openAt(int)),this,SLOT(renderAt(int)));
|
connect(comic,SIGNAL(openAt(int)),this,SLOT(renderAt(int)), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(numPages(unsigned int)),this,SIGNAL(numPages(unsigned int)));
|
connect(comic,SIGNAL(numPages(unsigned int)),this,SIGNAL(numPages(unsigned int)), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(numPages(unsigned int)),this,SLOT(setNumPages(unsigned int)));
|
connect(comic,SIGNAL(numPages(unsigned int)),this,SLOT(setNumPages(unsigned int)), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(imageLoaded(int,QByteArray)),this,SIGNAL(imageLoaded(int,QByteArray)));
|
connect(comic,SIGNAL(imageLoaded(int,QByteArray)),this,SIGNAL(imageLoaded(int,QByteArray)), Qt::QueuedConnection);
|
||||||
connect(comic,SIGNAL(isBookmark(bool)),this,SIGNAL(currentPageIsBookmark(bool)));
|
connect(comic,SIGNAL(isBookmark(bool)),this,SIGNAL(currentPageIsBookmark(bool)), Qt::QueuedConnection);
|
||||||
|
|
||||||
connect(comic,SIGNAL(bookmarksUpdated()),this,SIGNAL(bookmarksUpdated()));
|
connect(comic,SIGNAL(bookmarksUpdated()),this,SIGNAL(bookmarksUpdated()), Qt::QueuedConnection);
|
||||||
|
|
||||||
//connect(comic,SIGNAL(isLast()),this,SIGNAL(isLast()));
|
//connect(comic,SIGNAL(isLast()),this,SIGNAL(isLast()));
|
||||||
//connect(comic,SIGNAL(isCover()),this,SIGNAL(isCover()));
|
//connect(comic,SIGNAL(isCover()),this,SIGNAL(isCover()));
|
||||||
@ -807,19 +807,20 @@ void Render::loadComic(const QString & path, int atPage)
|
|||||||
|
|
||||||
void Render::startLoad()
|
void Render::startLoad()
|
||||||
{
|
{
|
||||||
QThread * thread = NULL;
|
QThread * thread = nullptr;
|
||||||
|
|
||||||
thread = new QThread();
|
thread = new QThread();
|
||||||
|
|
||||||
comic->moveToThread(thread);
|
comic->moveToThread(thread);
|
||||||
|
|
||||||
connect(comic, SIGNAL(errorOpening()), thread, SLOT(quit()));
|
connect(comic, SIGNAL(errorOpening()), thread, SLOT(quit()), Qt::QueuedConnection);
|
||||||
connect(comic, SIGNAL(errorOpening(QString)), thread, SLOT(quit()));
|
connect(comic, SIGNAL(errorOpening(QString)), thread, SLOT(quit()), Qt::QueuedConnection);
|
||||||
connect(comic, SIGNAL(imagesLoaded()), thread, SLOT(quit()));
|
connect(comic, SIGNAL(imagesLoaded()), thread, SLOT(quit()), Qt::QueuedConnection);
|
||||||
|
connect(comic, SIGNAL(destroyed()), thread, SLOT(quit()), Qt::QueuedConnection);
|
||||||
connect(thread, SIGNAL(started()), comic, SLOT(process()));
|
connect(thread, SIGNAL(started()), comic, SLOT(process()));
|
||||||
connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
|
connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
|
||||||
|
|
||||||
if(thread != NULL)
|
if(thread != nullptr)
|
||||||
thread->start();
|
thread->start();
|
||||||
|
|
||||||
invalidate();
|
invalidate();
|
||||||
|
@ -57,6 +57,7 @@ Comic::Comic(const QString & pathFile, int atPage )
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
Comic::~Comic()
|
Comic::~Comic()
|
||||||
{
|
{
|
||||||
|
emit destroyed();
|
||||||
delete bm;
|
delete bm;
|
||||||
}
|
}
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
@ -79,7 +79,6 @@ class Comic : public QObject
|
|||||||
static QList<QString> findValidComicFilesInFolder(const QString &path);
|
static QList<QString> findValidComicFilesInFolder(const QString &path);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
void loadFinished();
|
void loadFinished();
|
||||||
void setBookmark();
|
void setBookmark();
|
||||||
void removeBookmark();
|
void removeBookmark();
|
||||||
@ -89,7 +88,7 @@ class Comic : public QObject
|
|||||||
void setPageLoaded(int page);
|
void setPageLoaded(int page);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
void destroyed();
|
||||||
void imagesLoaded();
|
void imagesLoaded();
|
||||||
void imageLoaded(int index);
|
void imageLoaded(int index);
|
||||||
void imageLoaded(int index,const QByteArray & image);
|
void imageLoaded(int index,const QByteArray & image);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user