mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Add support for detecting manga issues in YACReader
When an issues is open from YACReaderLibrary we can check if it is a manga an update the UI to enable manga reading. This also fixes going previous/next from the ui/shortcuts
This commit is contained in:
@ -50,6 +50,8 @@ public slots:
|
||||
void newVersion();
|
||||
void openPreviousComic();
|
||||
void openNextComic();
|
||||
void openLeftComic();
|
||||
void openRightComic();
|
||||
void openComicFromPath(QString pathFile);
|
||||
void openSiblingComic(QString pathFile);
|
||||
void openComic(QString pathFile);
|
||||
@ -68,6 +70,7 @@ public slots:
|
||||
void checkNewVersion();
|
||||
void processReset();
|
||||
void setUpShortcutsManagement();
|
||||
void doubleMangaPageSwitch();
|
||||
|
||||
void toggleFitToWidthSlider();
|
||||
|
||||
@ -181,6 +184,7 @@ private:
|
||||
protected:
|
||||
void closeEvent(QCloseEvent *event) override;
|
||||
void sendComic();
|
||||
void updateOpenPrevNextActions(bool thereIsPrevious, bool thereIsNext);
|
||||
|
||||
public:
|
||||
MainWindowViewer();
|
||||
|
Reference in New Issue
Block a user