mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
Use fully qualified names
This commit is contained in:
parent
9ebd6e32da
commit
bdb23de74a
@ -1338,7 +1338,7 @@ void PictureFlow::setMarkImage(const QImage &m)
|
|||||||
d->state->mark = m;
|
d->state->mark = m;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PictureFlow::markSlide(int index, YACReaderComicReadStatus readStatus)
|
void PictureFlow::markSlide(int index, YACReader::YACReaderComicReadStatus readStatus)
|
||||||
{
|
{
|
||||||
if (index < d->state->marks.size())
|
if (index < d->state->marks.size())
|
||||||
d->state->marks[index] = readStatus;
|
d->state->marks[index] = readStatus;
|
||||||
@ -1356,7 +1356,7 @@ void PictureFlow::unmarkSlide(int index)
|
|||||||
d->state->marks[index] = YACReader::Unread;
|
d->state->marks[index] = YACReader::Unread;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PictureFlow::setMarks(const QVector<YACReaderComicReadStatus> &m)
|
void PictureFlow::setMarks(const QVector<YACReader::YACReaderComicReadStatus> &m)
|
||||||
{
|
{
|
||||||
d->state->marks = m;
|
d->state->marks = m;
|
||||||
updateMarks();
|
updateMarks();
|
||||||
|
@ -187,21 +187,21 @@ public slots:
|
|||||||
*/
|
*/
|
||||||
void triggerRender();
|
void triggerRender();
|
||||||
|
|
||||||
void setFlowType(FlowType flowType);
|
void setFlowType(YACReader::FlowType flowType);
|
||||||
|
|
||||||
void setMarkImage(const QImage &mark);
|
void setMarkImage(const QImage &mark);
|
||||||
|
|
||||||
void markSlide(int index, YACReaderComicReadStatus readStatus = Read);
|
void markSlide(int index, YACReader::YACReaderComicReadStatus readStatus = Read);
|
||||||
|
|
||||||
void updateMarks();
|
void updateMarks();
|
||||||
|
|
||||||
void unmarkSlide(int index);
|
void unmarkSlide(int index);
|
||||||
|
|
||||||
void setMarks(const QVector<YACReaderComicReadStatus> &marks);
|
void setMarks(const QVector<YACReader::YACReaderComicReadStatus> &marks);
|
||||||
|
|
||||||
void setShowMarks(bool enable);
|
void setShowMarks(bool enable);
|
||||||
|
|
||||||
QVector<YACReaderComicReadStatus> getMarks();
|
QVector<YACReader::YACReaderComicReadStatus> getMarks();
|
||||||
|
|
||||||
void resortCovers(QList<int> newOrder);
|
void resortCovers(QList<int> newOrder);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user