mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 23:15:14 -04:00
Added a new action for showing, hiding QML ComicInfo view into the GridView.
This commit is contained in:
@ -10,6 +10,8 @@ class QSplitter;
|
||||
class ComicFlowWidget;
|
||||
class QToolBar;
|
||||
class ComicModel;
|
||||
class QQuickView;
|
||||
|
||||
class ComicsView : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
@ -28,6 +30,7 @@ public:
|
||||
virtual void selectIndex(int index) = 0;
|
||||
|
||||
public slots:
|
||||
virtual void updateInfoForIndex(int index);
|
||||
virtual void setShowMarks(bool show) = 0;
|
||||
virtual void selectAll() = 0;
|
||||
|
||||
@ -50,6 +53,11 @@ protected:
|
||||
void dragEnterEvent(QDragEnterEvent *event);
|
||||
void dropEvent(QDropEvent *event);
|
||||
|
||||
QQuickView *view;
|
||||
QWidget *container;
|
||||
|
||||
ComicDB *comicDB;
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user