merged info-mode
@ -145,7 +145,11 @@ HEADERS += comic_flow.h \
|
|||||||
empty_special_list.h \
|
empty_special_list.h \
|
||||||
empty_reading_list_widget.h \
|
empty_reading_list_widget.h \
|
||||||
../common/scroll_management.h \
|
../common/scroll_management.h \
|
||||||
../common/opengl_checker.h
|
../common/opengl_checker.h \
|
||||||
|
yacreader_comics_views_manager.h \
|
||||||
|
info_comics_view.h \
|
||||||
|
yacreader_comics_selection_helper.h \
|
||||||
|
yacreader_comic_info_helper.h
|
||||||
|
|
||||||
!CONFIG(no_opengl) {
|
!CONFIG(no_opengl) {
|
||||||
CONFIG(legacy_gl_widget) {
|
CONFIG(legacy_gl_widget) {
|
||||||
@ -215,7 +219,11 @@ SOURCES += comic_flow.cpp \
|
|||||||
empty_special_list.cpp \
|
empty_special_list.cpp \
|
||||||
empty_reading_list_widget.cpp \
|
empty_reading_list_widget.cpp \
|
||||||
../common/scroll_management.cpp \
|
../common/scroll_management.cpp \
|
||||||
../common/opengl_checker.cpp
|
../common/opengl_checker.cpp \
|
||||||
|
yacreader_comics_views_manager.cpp \
|
||||||
|
info_comics_view.cpp \
|
||||||
|
yacreader_comics_selection_helper.cpp \
|
||||||
|
yacreader_comic_info_helper.cpp
|
||||||
|
|
||||||
!CONFIG(no_opengl) {
|
!CONFIG(no_opengl) {
|
||||||
CONFIG(legacy_gl_widget) {
|
CONFIG(legacy_gl_widget) {
|
||||||
|
@ -88,8 +88,6 @@ ClassicComicsView::ClassicComicsView(QWidget *parent)
|
|||||||
sVertical->restoreState(settings->value(COMICS_VIEW_FLOW_SPLITTER_STATUS).toByteArray());
|
sVertical->restoreState(settings->value(COMICS_VIEW_FLOW_SPLITTER_STATUS).toByteArray());
|
||||||
|
|
||||||
//hide flow widgets
|
//hide flow widgets
|
||||||
toolBarStretch = new YACReaderToolBarStretch(this);
|
|
||||||
|
|
||||||
hideFlowViewAction = new QAction(this);
|
hideFlowViewAction = new QAction(this);
|
||||||
hideFlowViewAction->setText(tr("Hide comic flow"));
|
hideFlowViewAction->setText(tr("Hide comic flow"));
|
||||||
hideFlowViewAction->setData(HIDE_COMIC_VIEW_ACTION_YL);
|
hideFlowViewAction->setData(HIDE_COMIC_VIEW_ACTION_YL);
|
||||||
@ -127,6 +125,8 @@ void ClassicComicsView::setToolBar(QToolBar *toolBar)
|
|||||||
static_cast<QVBoxLayout *>(comics->layout())->insertWidget(0,toolBar);
|
static_cast<QVBoxLayout *>(comics->layout())->insertWidget(0,toolBar);
|
||||||
this->toolbar = toolBar;
|
this->toolbar = toolBar;
|
||||||
|
|
||||||
|
toolBarStretch = new YACReaderToolBarStretch(this);
|
||||||
|
|
||||||
toolBarStretchAction = toolBar->addWidget(toolBarStretch);
|
toolBarStretchAction = toolBar->addWidget(toolBarStretch);
|
||||||
toolBar->addAction(hideFlowViewAction);
|
toolBar->addAction(hideFlowViewAction);
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,14 @@
|
|||||||
#include "comics_view.h"
|
#include "comics_view.h"
|
||||||
#include "comic.h"
|
#include "comic.h"
|
||||||
#include "comic_files_manager.h"
|
#include "comic_files_manager.h"
|
||||||
|
#include "comic_db.h"
|
||||||
|
|
||||||
#include "QsLog.h"
|
#include "QsLog.h"
|
||||||
|
|
||||||
|
#include <QtQuick>
|
||||||
|
|
||||||
ComicsView::ComicsView(QWidget *parent) :
|
ComicsView::ComicsView(QWidget *parent) :
|
||||||
QWidget(parent),model(NULL)
|
QWidget(parent),model(NULL),comicDB(nullptr)
|
||||||
{
|
{
|
||||||
setAcceptDrops(true);
|
setAcceptDrops(true);
|
||||||
}
|
}
|
||||||
@ -15,6 +18,22 @@ void ComicsView::setModel(ComicModel *m)
|
|||||||
model = m;
|
model = m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ComicsView::updateInfoForIndex(int index)
|
||||||
|
{
|
||||||
|
QQmlContext *ctxt = view->rootContext();
|
||||||
|
|
||||||
|
if(comicDB != nullptr) delete comicDB;
|
||||||
|
|
||||||
|
comicDB = new ComicDB(model->getComic(this->model->index(index, 0)));
|
||||||
|
ComicInfo *comicInfo = &(comicDB->info);
|
||||||
|
comicInfo->isFavorite = model->isFavorite(model->index(index,0));
|
||||||
|
|
||||||
|
ctxt->setContextProperty("comic", comicDB);
|
||||||
|
ctxt->setContextProperty("comicInfo", comicInfo);
|
||||||
|
|
||||||
|
ctxt->setContextProperty("comic_info_index", index);
|
||||||
|
}
|
||||||
|
|
||||||
void ComicsView::dragEnterEvent(QDragEnterEvent *event)
|
void ComicsView::dragEnterEvent(QDragEnterEvent *event)
|
||||||
{
|
{
|
||||||
if(model->canDropMimeData(event->mimeData(),event->proposedAction(),0,0,QModelIndex()))
|
if(model->canDropMimeData(event->mimeData(),event->proposedAction(),0,0,QModelIndex()))
|
||||||
|
@ -10,6 +10,8 @@ class QSplitter;
|
|||||||
class ComicFlowWidget;
|
class ComicFlowWidget;
|
||||||
class QToolBar;
|
class QToolBar;
|
||||||
class ComicModel;
|
class ComicModel;
|
||||||
|
class QQuickView;
|
||||||
|
|
||||||
class ComicsView : public QWidget
|
class ComicsView : public QWidget
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -27,6 +29,11 @@ public:
|
|||||||
virtual void enableFilterMode(bool enabled) = 0;
|
virtual void enableFilterMode(bool enabled) = 0;
|
||||||
virtual void selectIndex(int index) = 0;
|
virtual void selectIndex(int index) = 0;
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
virtual void updateInfoForIndex(int index);
|
||||||
|
virtual void setShowMarks(bool show) = 0;
|
||||||
|
virtual void selectAll() = 0;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void selected(unsigned int);
|
void selected(unsigned int);
|
||||||
void comicRated(int,QModelIndex);
|
void comicRated(int,QModelIndex);
|
||||||
@ -39,9 +46,6 @@ signals:
|
|||||||
void copyComicsToCurrentFolder(QList<QPair<QString, QString> >);
|
void copyComicsToCurrentFolder(QList<QPair<QString, QString> >);
|
||||||
void moveComicsToCurrentFolder(QList<QPair<QString, QString> >);
|
void moveComicsToCurrentFolder(QList<QPair<QString, QString> >);
|
||||||
|
|
||||||
public slots:
|
|
||||||
virtual void setShowMarks(bool show) = 0;
|
|
||||||
virtual void selectAll() = 0;
|
|
||||||
protected:
|
protected:
|
||||||
ComicModel * model;
|
ComicModel * model;
|
||||||
|
|
||||||
@ -49,6 +53,11 @@ protected:
|
|||||||
void dragEnterEvent(QDragEnterEvent *event);
|
void dragEnterEvent(QDragEnterEvent *event);
|
||||||
void dropEvent(QDropEvent *event);
|
void dropEvent(QDropEvent *event);
|
||||||
|
|
||||||
|
QQuickView *view;
|
||||||
|
QWidget *container;
|
||||||
|
|
||||||
|
ComicDB *comicDB;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -11,42 +11,14 @@
|
|||||||
#include "yacreader_global_gui.h"
|
#include "yacreader_global_gui.h"
|
||||||
|
|
||||||
ComicsViewTransition::ComicsViewTransition(QWidget *parent) :
|
ComicsViewTransition::ComicsViewTransition(QWidget *parent) :
|
||||||
QWidget(parent),movie(0)
|
QWidget(parent)
|
||||||
{
|
{
|
||||||
QVBoxLayout * layout = new QVBoxLayout;
|
|
||||||
|
|
||||||
settings = new QSettings(YACReader::getSettingsPath()+"/YACReaderLibrary.ini",QSettings::IniFormat);
|
|
||||||
settings->beginGroup("libraryConfig");
|
|
||||||
|
|
||||||
movieLabel = new QLabel("Placeholder");
|
|
||||||
movieLabel->setAlignment(Qt::AlignCenter);
|
|
||||||
QLabel * textLabel = new QLabel("Switching comics view");
|
|
||||||
textLabel->setAlignment(Qt::AlignCenter);
|
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
#ifdef Q_OS_MAC
|
||||||
textLabel->setStyleSheet("QLabel {color:#888888; font-size:24px;font-family:Arial;font-weight:bold;}");
|
|
||||||
setStyleSheet("QWidget {background:#FFFFFF}");
|
setStyleSheet("QWidget {background:#FFFFFF}");
|
||||||
#else
|
#else
|
||||||
textLabel->setStyleSheet("QLabel {color:#CCCCCC; font-size:24px;font-family:Arial;font-weight:bold;}");
|
|
||||||
setStyleSheet("QWidget {background:#2A2A2A}");
|
setStyleSheet("QWidget {background:#2A2A2A}");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//movieLabel->setFixedSize(450,350);
|
|
||||||
|
|
||||||
layout->addSpacing(100);
|
|
||||||
layout->addWidget(movieLabel);
|
|
||||||
layout->addSpacing(20);
|
|
||||||
layout->addWidget(textLabel);
|
|
||||||
layout->addStretch();
|
|
||||||
layout->setMargin(0);
|
|
||||||
layout->setSpacing(0);
|
|
||||||
|
|
||||||
setContentsMargins(0,0,0,0);
|
|
||||||
|
|
||||||
//QSizePolicy sp();
|
|
||||||
setSizePolicy(QSizePolicy ::Expanding , QSizePolicy ::Expanding );
|
|
||||||
//movieLabel->setSizePolicy(QSizePolicy ::Expanding , QSizePolicy ::Expanding );
|
|
||||||
setLayout(layout);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize ComicsViewTransition::sizeHint()
|
QSize ComicsViewTransition::sizeHint()
|
||||||
@ -54,25 +26,6 @@ QSize ComicsViewTransition::sizeHint()
|
|||||||
return QSize(450,350);
|
return QSize(450,350);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ComicsViewTransition::startMovie()
|
|
||||||
{
|
|
||||||
if(movie)
|
|
||||||
delete movie;
|
|
||||||
|
|
||||||
if(settings->value(COMICS_VIEW_STATUS) == YACReader::Flow)
|
|
||||||
movie = new QMovie(":/images/flow_to_grid.gif");
|
|
||||||
else
|
|
||||||
movie = new QMovie(":/images/grid_to_flow.gif");
|
|
||||||
|
|
||||||
connect(movie,SIGNAL(finished()),this,SIGNAL(transitionFinished()));
|
|
||||||
//connect(movie,SIGNAL(finished()),movie,SLOT(deleteLater());
|
|
||||||
movie->setSpeed(200);
|
|
||||||
movie->jumpToFrame(0);
|
|
||||||
movieLabel->setMovie(movie);
|
|
||||||
|
|
||||||
QTimer::singleShot(100,movie,SLOT(start()));
|
|
||||||
}
|
|
||||||
|
|
||||||
void ComicsViewTransition::paintEvent(QPaintEvent *)
|
void ComicsViewTransition::paintEvent(QPaintEvent *)
|
||||||
{
|
{
|
||||||
QPainter painter (this);
|
QPainter painter (this);
|
||||||
|
@ -3,10 +3,6 @@
|
|||||||
|
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
|
||||||
class QMovie;
|
|
||||||
class QSettings;
|
|
||||||
class QLabel;
|
|
||||||
|
|
||||||
class ComicsViewTransition : public QWidget
|
class ComicsViewTransition : public QWidget
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -14,17 +10,7 @@ public:
|
|||||||
explicit ComicsViewTransition(QWidget *parent = 0);
|
explicit ComicsViewTransition(QWidget *parent = 0);
|
||||||
QSize sizeHint();
|
QSize sizeHint();
|
||||||
|
|
||||||
signals:
|
|
||||||
void transitionFinished();
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
void startMovie();
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
QMovie * movie;
|
|
||||||
QSettings * settings;
|
|
||||||
QLabel * movieLabel;
|
|
||||||
|
|
||||||
void paintEvent(QPaintEvent *);
|
void paintEvent(QPaintEvent *);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1107,8 +1107,8 @@ void ComicModel::deleteComicsFromFavorites(const QList<QModelIndex> &comicsList)
|
|||||||
db.close();
|
db.close();
|
||||||
QSqlDatabase::removeDatabase(_databasePath);
|
QSqlDatabase::removeDatabase(_databasePath);
|
||||||
|
|
||||||
|
if(mode == Favorites)
|
||||||
deleteComicsFromModel(comicsList);
|
deleteComicsFromModel(comicsList);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ComicModel::deleteComicsFromLabel(const QList<QModelIndex> &comicsList, qulonglong labelId)
|
void ComicModel::deleteComicsFromLabel(const QList<QModelIndex> &comicsList, qulonglong labelId)
|
||||||
@ -1155,6 +1155,19 @@ void ComicModel::deleteComicsFromModel(const QList<QModelIndex> &comicsList)
|
|||||||
emit isEmpty();
|
emit isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ComicModel::isFavorite(const QModelIndex &index)
|
||||||
|
{
|
||||||
|
bool isFavorite;
|
||||||
|
|
||||||
|
QSqlDatabase db = DataBaseManagement::loadDatabase(_databasePath);
|
||||||
|
|
||||||
|
isFavorite = DBHelper::isFavoriteComic(_data[index.row()]->data(Id).toLongLong(),db);
|
||||||
|
|
||||||
|
db.close();
|
||||||
|
QSqlDatabase::removeDatabase(_databasePath);
|
||||||
|
|
||||||
|
return isFavorite;
|
||||||
|
}
|
||||||
|
|
||||||
void ComicModel::updateRating(int rating, QModelIndex mi)
|
void ComicModel::updateRating(int rating, QModelIndex mi)
|
||||||
{
|
{
|
||||||
|
@ -81,6 +81,8 @@ public:
|
|||||||
|
|
||||||
void deleteComicsFromModel(const QList<QModelIndex> &comicsList);
|
void deleteComicsFromModel(const QList<QModelIndex> &comicsList);
|
||||||
|
|
||||||
|
bool isFavorite(const QModelIndex &index);
|
||||||
|
|
||||||
QHash<int, QByteArray> roleNames() const;
|
QHash<int, QByteArray> roleNames() const;
|
||||||
|
|
||||||
enum Columns {
|
enum Columns {
|
||||||
|
@ -1062,3 +1062,18 @@ QList<QString> DBHelper::loadSubfoldersNames(qulonglong folderId, QSqlDatabase &
|
|||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool DBHelper::isFavoriteComic(qulonglong id, QSqlDatabase &db)
|
||||||
|
{
|
||||||
|
QSqlQuery selectQuery(db);
|
||||||
|
selectQuery.prepare("SELECT * FROM comic_default_reading_list cl WHERE cl.comic_id = :comic_id AND cl.default_reading_list_id = 1");
|
||||||
|
selectQuery.bindValue(":comic_id", id);
|
||||||
|
selectQuery.exec();
|
||||||
|
|
||||||
|
if(selectQuery.next())
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
@ -76,6 +76,8 @@ public:
|
|||||||
static ComicDB loadComic(QString cname, QString cpath, QString chash, QSqlDatabase & database);
|
static ComicDB loadComic(QString cname, QString cpath, QString chash, QSqlDatabase & database);
|
||||||
static ComicInfo loadComicInfo(QString hash, QSqlDatabase & db);
|
static ComicInfo loadComicInfo(QString hash, QSqlDatabase & db);
|
||||||
static QList<QString> loadSubfoldersNames(qulonglong folderId, QSqlDatabase & db);
|
static QList<QString> loadSubfoldersNames(qulonglong folderId, QSqlDatabase & db);
|
||||||
|
//queries
|
||||||
|
static bool isFavoriteComic(qulonglong id, QSqlDatabase & db);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -8,6 +8,9 @@
|
|||||||
#include "QsLog.h"
|
#include "QsLog.h"
|
||||||
#include "yacreader_global.h"
|
#include "yacreader_global.h"
|
||||||
#include "yacreader_tool_bar_stretch.h"
|
#include "yacreader_tool_bar_stretch.h"
|
||||||
|
#include "comic_db.h"
|
||||||
|
#include "yacreader_comics_selection_helper.h"
|
||||||
|
#include "yacreader_comic_info_helper.h"
|
||||||
|
|
||||||
//values relative to visible cells
|
//values relative to visible cells
|
||||||
const unsigned int YACREADER_MIN_GRID_ZOOM_WIDTH = 156;
|
const unsigned int YACREADER_MIN_GRID_ZOOM_WIDTH = 156;
|
||||||
@ -27,12 +30,14 @@ const unsigned int YACREADER_MIN_ITEM_WIDTH = YACREADER_MIN_COVER_WIDTH;
|
|||||||
|
|
||||||
|
|
||||||
GridComicsView::GridComicsView(QWidget *parent) :
|
GridComicsView::GridComicsView(QWidget *parent) :
|
||||||
ComicsView(parent),_selectionModel(NULL)
|
ComicsView(parent)
|
||||||
{
|
{
|
||||||
settings = new QSettings(YACReader::getSettingsPath()+"/YACReaderLibrary.ini", QSettings::IniFormat, this);
|
settings = new QSettings(YACReader::getSettingsPath()+"/YACReaderLibrary.ini", QSettings::IniFormat, this);
|
||||||
settings->beginGroup("libraryConfig");
|
settings->beginGroup("libraryConfig");
|
||||||
|
|
||||||
qmlRegisterType<ComicModel>("comicModel",1,0,"TableModel");
|
qmlRegisterType<ComicModel>("com.yacreader.ComicModel",1,0,"ComicModel");
|
||||||
|
qmlRegisterType<ComicDB>("com.yacreader.ComicDB",1,0,"ComicDB");
|
||||||
|
qmlRegisterType<ComicInfo>("com.yacreader.ComicInfo",1,0,"ComicInfo");
|
||||||
|
|
||||||
view = new QQuickView();
|
view = new QQuickView();
|
||||||
container = QWidget::createWindowContainer(view, this);
|
container = QWidget::createWindowContainer(view, this);
|
||||||
@ -40,12 +45,10 @@ GridComicsView::GridComicsView(QWidget *parent) :
|
|||||||
container->setMinimumSize(200, 200);
|
container->setMinimumSize(200, 200);
|
||||||
container->setFocusPolicy(Qt::TabFocus);
|
container->setFocusPolicy(Qt::TabFocus);
|
||||||
|
|
||||||
createCoverSizeSliderWidget();
|
selectionHelper = new YACReaderComicsSelectionHelper(this);
|
||||||
|
connect(selectionHelper, &YACReaderComicsSelectionHelper::selectionChanged, this, &GridComicsView::dummyUpdater);
|
||||||
|
|
||||||
int coverSize = settings->value(COMICS_GRID_COVER_SIZES, YACREADER_MIN_COVER_WIDTH).toInt();
|
comicInfoHelper = new YACReaderComicInfoHelper(this);
|
||||||
|
|
||||||
coverSizeSlider->setValue(coverSize);
|
|
||||||
setCoversSize(coverSize);
|
|
||||||
|
|
||||||
QQmlContext *ctxt = view->rootContext();
|
QQmlContext *ctxt = view->rootContext();
|
||||||
|
|
||||||
@ -86,18 +89,32 @@ GridComicsView::GridComicsView(QWidget *parent) :
|
|||||||
ctxt->setContextProperty("backgroundBlurVisible", false);
|
ctxt->setContextProperty("backgroundBlurVisible", false);
|
||||||
|
|
||||||
ComicModel *model = new ComicModel();
|
ComicModel *model = new ComicModel();
|
||||||
QItemSelectionModel *selectionModel = new QItemSelectionModel(model);
|
selectionHelper->setModel(model);
|
||||||
ctxt->setContextProperty("comicsList", model);
|
ctxt->setContextProperty("comicsList", model);
|
||||||
ctxt->setContextProperty("comicsSelection", selectionModel);
|
ctxt->setContextProperty("comicsSelection", selectionHelper->selectionModel());
|
||||||
ctxt->setContextProperty("contextMenuHelper",this);
|
ctxt->setContextProperty("contextMenuHelper",this);
|
||||||
ctxt->setContextProperty("comicsSelectionHelper", this);
|
ctxt->setContextProperty("comicsSelectionHelper", selectionHelper);
|
||||||
|
ctxt->setContextProperty("currentIndexHelper", this);
|
||||||
ctxt->setContextProperty("comicRatingHelper", this);
|
ctxt->setContextProperty("comicRatingHelper", this);
|
||||||
ctxt->setContextProperty("dummyValue", true);
|
ctxt->setContextProperty("dummyValue", true);
|
||||||
ctxt->setContextProperty("dragManager", this);
|
ctxt->setContextProperty("dragManager", this);
|
||||||
ctxt->setContextProperty("dropManager", this);
|
ctxt->setContextProperty("dropManager", this);
|
||||||
|
|
||||||
|
bool showInfo = settings->value(COMICS_GRID_SHOW_INFO, false).toBool();
|
||||||
|
ctxt->setContextProperty("showInfo", showInfo);
|
||||||
|
|
||||||
view->setSource(QUrl("qrc:/qml/GridComicsView.qml"));
|
view->setSource(QUrl("qrc:/qml/GridComicsView.qml"));
|
||||||
|
|
||||||
|
QObject *rootObject = dynamic_cast<QObject*>(view->rootObject());
|
||||||
|
QObject *infoContainer = rootObject->findChild<QObject*>("infoContainer");
|
||||||
|
|
||||||
|
QQmlProperty(infoContainer, "width").write(settings->value(COMICS_GRID_INFO_WIDTH, 350));
|
||||||
|
|
||||||
|
showInfoAction = new QAction(tr("Show info"),this);
|
||||||
|
showInfoAction->setIcon(QIcon(":/images/comics_view_toolbar/show_comic_info.png"));
|
||||||
|
showInfoAction->setCheckable(true);
|
||||||
|
showInfoAction->setChecked(showInfo);
|
||||||
|
connect(showInfoAction, &QAction::toggled, this, &GridComicsView::showInfo);
|
||||||
|
|
||||||
setShowMarks(true);//TODO save this in settings
|
setShowMarks(true);//TODO save this in settings
|
||||||
|
|
||||||
@ -141,6 +158,11 @@ void GridComicsView::createCoverSizeSliderWidget()
|
|||||||
//TODO add shortcuts (ctrl-+ and ctrl-- for zooming in out, + ctrl-0 for reseting the zoom)
|
//TODO add shortcuts (ctrl-+ and ctrl-- for zooming in out, + ctrl-0 for reseting the zoom)
|
||||||
|
|
||||||
connect(coverSizeSlider, SIGNAL(valueChanged(int)), this, SLOT(setCoversSize(int)));
|
connect(coverSizeSlider, SIGNAL(valueChanged(int)), this, SLOT(setCoversSize(int)));
|
||||||
|
|
||||||
|
int coverSize = settings->value(COMICS_GRID_COVER_SIZES, YACREADER_MIN_COVER_WIDTH).toInt();
|
||||||
|
|
||||||
|
coverSizeSlider->setValue(coverSize);
|
||||||
|
setCoversSize(coverSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GridComicsView::setToolBar(QToolBar *toolBar)
|
void GridComicsView::setToolBar(QToolBar *toolBar)
|
||||||
@ -148,7 +170,11 @@ void GridComicsView::setToolBar(QToolBar *toolBar)
|
|||||||
static_cast<QVBoxLayout *>(this->layout())->insertWidget(1,toolBar);
|
static_cast<QVBoxLayout *>(this->layout())->insertWidget(1,toolBar);
|
||||||
this->toolbar = toolBar;
|
this->toolbar = toolBar;
|
||||||
|
|
||||||
|
createCoverSizeSliderWidget();
|
||||||
|
|
||||||
toolBarStretchAction = toolBar->addWidget(toolBarStretch);
|
toolBarStretchAction = toolBar->addWidget(toolBarStretch);
|
||||||
|
toolBar->addAction(showInfoAction);
|
||||||
|
showInfoSeparatorAction = toolBar->addSeparator();
|
||||||
coverSizeSliderAction = toolBar->addWidget(coverSizeSliderWidget);
|
coverSizeSliderAction = toolBar->addWidget(coverSizeSliderWidget);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -159,27 +185,30 @@ void GridComicsView::setModel(ComicModel *model)
|
|||||||
|
|
||||||
ComicsView::setModel(model);
|
ComicsView::setModel(model);
|
||||||
|
|
||||||
|
selectionHelper->setModel(model);
|
||||||
|
comicInfoHelper->setModel(model);
|
||||||
|
|
||||||
QQmlContext *ctxt = view->rootContext();
|
QQmlContext *ctxt = view->rootContext();
|
||||||
|
|
||||||
if(_selectionModel != NULL)
|
|
||||||
delete _selectionModel;
|
|
||||||
|
|
||||||
_selectionModel = new QItemSelectionModel(model);
|
|
||||||
|
|
||||||
//TODO fix crash in the following line on comics views switch
|
|
||||||
ctxt->setContextProperty("comicsList", model);
|
ctxt->setContextProperty("comicsList", model);
|
||||||
ctxt->setContextProperty("comicsSelection", _selectionModel);
|
ctxt->setContextProperty("comicsSelection", selectionHelper->selectionModel());
|
||||||
ctxt->setContextProperty("contextMenuHelper",this);
|
ctxt->setContextProperty("contextMenuHelper",this);
|
||||||
ctxt->setContextProperty("comicsSelectionHelper", this);
|
ctxt->setContextProperty("comicsSelectionHelper", selectionHelper);
|
||||||
|
ctxt->setContextProperty("currentIndexHelper", this);
|
||||||
ctxt->setContextProperty("comicRatingHelper", this);
|
ctxt->setContextProperty("comicRatingHelper", this);
|
||||||
ctxt->setContextProperty("dummyValue", true);
|
ctxt->setContextProperty("dummyValue", true);
|
||||||
ctxt->setContextProperty("dragManager", this);
|
ctxt->setContextProperty("dragManager", this);
|
||||||
ctxt->setContextProperty("dropManager", this);
|
ctxt->setContextProperty("dropManager", this);
|
||||||
|
ctxt->setContextProperty("comicInfoHelper", comicInfoHelper);
|
||||||
|
|
||||||
updateBackgroundConfig();
|
updateBackgroundConfig();
|
||||||
|
|
||||||
if(model->rowCount()>0)
|
if(model->rowCount()>0)
|
||||||
|
{
|
||||||
setCurrentIndex(model->index(0,0));
|
setCurrentIndex(model->index(0,0));
|
||||||
|
if(showInfoAction->isChecked())
|
||||||
|
updateInfoForIndex(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void GridComicsView::updateBackgroundConfig()
|
void GridComicsView::updateBackgroundConfig()
|
||||||
@ -192,7 +221,7 @@ void GridComicsView::updateBackgroundConfig()
|
|||||||
//backgroun image configuration
|
//backgroun image configuration
|
||||||
bool useBackgroundImage = settings->value(USE_BACKGROUND_IMAGE_IN_GRID_VIEW, true).toBool();
|
bool useBackgroundImage = settings->value(USE_BACKGROUND_IMAGE_IN_GRID_VIEW, true).toBool();
|
||||||
|
|
||||||
if(useBackgroundImage)
|
if(useBackgroundImage && this->model->rowCount() > 0)
|
||||||
{
|
{
|
||||||
float opacity = settings->value(OPACITY_BACKGROUND_IMAGE_IN_GRID_VIEW, 0.2).toFloat();
|
float opacity = settings->value(OPACITY_BACKGROUND_IMAGE_IN_GRID_VIEW, 0.2).toFloat();
|
||||||
float blurRadius = settings->value(BLUR_RADIUS_BACKGROUND_IMAGE_IN_GRID_VIEW, 75).toInt();
|
float blurRadius = settings->value(BLUR_RADIUS_BACKGROUND_IMAGE_IN_GRID_VIEW, 75).toInt();
|
||||||
@ -221,41 +250,39 @@ void GridComicsView::updateBackgroundConfig()
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GridComicsView::showInfo()
|
||||||
|
{
|
||||||
|
QQmlContext *ctxt = view->rootContext();
|
||||||
|
ctxt->setContextProperty("showInfo", showInfoAction->isChecked());
|
||||||
|
|
||||||
|
updateInfoForIndex(currentIndex().row());
|
||||||
|
}
|
||||||
|
|
||||||
void GridComicsView::setCurrentIndex(const QModelIndex &index)
|
void GridComicsView::setCurrentIndex(const QModelIndex &index)
|
||||||
{
|
{
|
||||||
_selectionModel->clear();
|
selectionHelper->clear();
|
||||||
_selectionModel->select(index, QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
selectionHelper->selectIndex(index.row());
|
||||||
view->rootContext()->setContextProperty("dummyValue", true);
|
|
||||||
|
|
||||||
if(settings->value(USE_SELECTED_COMIC_COVER_AS_BACKGROUND_IMAGE_IN_GRID_VIEW, false).toBool())
|
if(settings->value(USE_SELECTED_COMIC_COVER_AS_BACKGROUND_IMAGE_IN_GRID_VIEW, false).toBool())
|
||||||
updateBackgroundConfig();
|
updateBackgroundConfig();
|
||||||
|
|
||||||
|
if(showInfoAction->isChecked())
|
||||||
|
updateInfoForIndex(index.row());
|
||||||
|
}
|
||||||
|
|
||||||
|
void GridComicsView::setCurrentIndex(int index)
|
||||||
|
{
|
||||||
|
setCurrentIndex(model->index(index,0));
|
||||||
}
|
}
|
||||||
|
|
||||||
QModelIndex GridComicsView::currentIndex()
|
QModelIndex GridComicsView::currentIndex()
|
||||||
{
|
{
|
||||||
|
return selectionHelper->currentIndex();
|
||||||
if(!_selectionModel)
|
|
||||||
return QModelIndex();
|
|
||||||
|
|
||||||
QModelIndexList indexes = _selectionModel->selectedRows();
|
|
||||||
if(indexes.length()>0)
|
|
||||||
return indexes[0];
|
|
||||||
|
|
||||||
this->selectIndex(0);
|
|
||||||
indexes = _selectionModel->selectedRows();
|
|
||||||
if(indexes.length()>0)
|
|
||||||
return indexes[0];
|
|
||||||
else
|
|
||||||
return QModelIndex();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QItemSelectionModel *GridComicsView::selectionModel()
|
QItemSelectionModel *GridComicsView::selectionModel()
|
||||||
{
|
{
|
||||||
QModelIndexList indexes = _selectionModel->selectedRows();
|
return selectionHelper->selectionModel();
|
||||||
if(indexes.length()==0)
|
|
||||||
this->selectIndex(0);
|
|
||||||
|
|
||||||
return _selectionModel;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GridComicsView::scrollTo(const QModelIndex &mi, QAbstractItemView::ScrollHint hint)
|
void GridComicsView::scrollTo(const QModelIndex &mi, QAbstractItemView::ScrollHint hint)
|
||||||
@ -286,11 +313,12 @@ void GridComicsView::enableFilterMode(bool enabled)
|
|||||||
|
|
||||||
void GridComicsView::selectAll()
|
void GridComicsView::selectAll()
|
||||||
{
|
{
|
||||||
QModelIndex top = model->index(0, 0);
|
selectionHelper->selectAll();
|
||||||
QModelIndex bottom = model->index(model->rowCount()-1, 0);
|
}
|
||||||
QItemSelection selection(top, bottom);
|
|
||||||
_selectionModel->select(selection, QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
void GridComicsView::selectIndex(int index)
|
||||||
view->rootContext()->setContextProperty("dummyValue", true);
|
{
|
||||||
|
selectionHelper->selectIndex(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
void GridComicsView::rate(int index, int rating)
|
void GridComicsView::rate(int index, int rating)
|
||||||
@ -328,6 +356,12 @@ void GridComicsView::setCoversSize(int width)
|
|||||||
ctxt->setContextProperty("coverHeight", (width * YACREADER_MAX_COVER_HEIGHT) / YACREADER_MIN_COVER_WIDTH);
|
ctxt->setContextProperty("coverHeight", (width * YACREADER_MAX_COVER_HEIGHT) / YACREADER_MIN_COVER_WIDTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void GridComicsView::dummyUpdater()
|
||||||
|
{
|
||||||
|
QQmlContext *ctxt = view->rootContext();
|
||||||
|
ctxt->setContextProperty("dummyValue", true);
|
||||||
|
}
|
||||||
|
|
||||||
QSize GridComicsView::sizeHint()
|
QSize GridComicsView::sizeHint()
|
||||||
{
|
{
|
||||||
return QSize(1280,768);
|
return QSize(1280,768);
|
||||||
@ -337,7 +371,7 @@ QByteArray GridComicsView::getMimeDataFromSelection()
|
|||||||
{
|
{
|
||||||
QByteArray data;
|
QByteArray data;
|
||||||
|
|
||||||
QMimeData * mimeData = model->mimeData(_selectionModel->selectedIndexes());
|
QMimeData * mimeData = model->mimeData(selectionHelper->selectedIndexes());
|
||||||
data = mimeData->data(YACReader::YACReaderLibrarComiscSelectionMimeDataFormat);
|
data = mimeData->data(YACReader::YACReaderLibrarComiscSelectionMimeDataFormat);
|
||||||
|
|
||||||
delete mimeData;
|
delete mimeData;
|
||||||
@ -348,7 +382,7 @@ QByteArray GridComicsView::getMimeDataFromSelection()
|
|||||||
void GridComicsView::startDrag()
|
void GridComicsView::startDrag()
|
||||||
{
|
{
|
||||||
QDrag *drag = new QDrag(this);
|
QDrag *drag = new QDrag(this);
|
||||||
drag->setMimeData(model->mimeData(_selectionModel->selectedRows()));
|
drag->setMimeData(model->mimeData(selectionHelper->selectedRows()));
|
||||||
drag->setPixmap(QPixmap(":/images/comics_view_toolbar/openInYACReader.png")); //TODO add better image
|
drag->setPixmap(QPixmap(":/images/comics_view_toolbar/openInYACReader.png")); //TODO add better image
|
||||||
|
|
||||||
/*Qt::DropAction dropAction =*/ drag->exec(Qt::CopyAction | Qt::MoveAction, Qt::CopyAction);
|
/*Qt::DropAction dropAction =*/ drag->exec(Qt::CopyAction | Qt::MoveAction, Qt::CopyAction);
|
||||||
@ -390,78 +424,12 @@ void GridComicsView::droppedComicsForResortingAt(const QString &data, int index)
|
|||||||
{
|
{
|
||||||
Q_UNUSED(data);
|
Q_UNUSED(data);
|
||||||
|
|
||||||
model->dropMimeData(model->mimeData(_selectionModel->selectedRows()), Qt::MoveAction, index, 0, QModelIndex());
|
model->dropMimeData(model->mimeData(selectionHelper->selectedRows()), Qt::MoveAction, index, 0, QModelIndex());
|
||||||
}
|
|
||||||
|
|
||||||
//helper
|
|
||||||
void GridComicsView::selectIndex(int index)
|
|
||||||
{
|
|
||||||
if(_selectionModel != NULL && model!=NULL)
|
|
||||||
{
|
|
||||||
_selectionModel->select(model->index(index,0),QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
|
||||||
view->rootContext()->setContextProperty("dummyValue", true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void GridComicsView::setCurrentIndex(int index)
|
|
||||||
{
|
|
||||||
setCurrentIndex(model->index(index,0));
|
|
||||||
}
|
|
||||||
|
|
||||||
void GridComicsView::deselectIndex(int index)
|
|
||||||
{
|
|
||||||
if(_selectionModel != NULL && model!=NULL)
|
|
||||||
{
|
|
||||||
_selectionModel->select(model->index(index,0),QItemSelectionModel::Deselect | QItemSelectionModel::Rows);
|
|
||||||
view->rootContext()->setContextProperty("dummyValue", true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool GridComicsView::isSelectedIndex(int index)
|
|
||||||
{
|
|
||||||
if(_selectionModel != NULL && model!=NULL)
|
|
||||||
{
|
|
||||||
QModelIndex mi = model->index(index,0);
|
|
||||||
return _selectionModel->isSelected(mi);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void GridComicsView::clear()
|
|
||||||
{
|
|
||||||
if(_selectionModel != NULL)
|
|
||||||
{
|
|
||||||
_selectionModel->clear();
|
|
||||||
|
|
||||||
QQmlContext *ctxt = view->rootContext();
|
|
||||||
ctxt->setContextProperty("dummyValue", true);
|
|
||||||
}
|
|
||||||
//model->forceClear();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GridComicsView::selectedItem(int index)
|
void GridComicsView::selectedItem(int index)
|
||||||
{
|
{
|
||||||
emit doubleClicked(model->index(index,0));
|
emit selected(index);
|
||||||
}
|
|
||||||
|
|
||||||
int GridComicsView::numItemsSelected()
|
|
||||||
{
|
|
||||||
if(_selectionModel != NULL)
|
|
||||||
{
|
|
||||||
return _selectionModel->selectedRows().length();
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int GridComicsView::lastSelectedIndex()
|
|
||||||
{
|
|
||||||
if(_selectionModel != NULL)
|
|
||||||
{
|
|
||||||
return _selectionModel->selectedRows().last().row();
|
|
||||||
}
|
|
||||||
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GridComicsView::setShowMarks(bool show)
|
void GridComicsView::setShowMarks(bool show)
|
||||||
@ -473,15 +441,25 @@ void GridComicsView::setShowMarks(bool show)
|
|||||||
void GridComicsView::closeEvent(QCloseEvent *event)
|
void GridComicsView::closeEvent(QCloseEvent *event)
|
||||||
{
|
{
|
||||||
toolbar->removeAction(toolBarStretchAction);
|
toolbar->removeAction(toolBarStretchAction);
|
||||||
|
toolbar->removeAction(showInfoAction);
|
||||||
|
toolbar->removeAction(showInfoSeparatorAction);
|
||||||
toolbar->removeAction(coverSizeSliderAction);
|
toolbar->removeAction(coverSizeSliderAction);
|
||||||
|
|
||||||
QObject *object = view->rootObject();
|
QObject *rootObject = dynamic_cast<QObject*>(view->rootObject());
|
||||||
|
QObject *infoContainer = rootObject->findChild<QObject*>("infoContainer");
|
||||||
|
|
||||||
|
int infoWidth = QQmlProperty(infoContainer, "width").read().toInt();
|
||||||
|
|
||||||
|
/*QObject *object = view->rootObject();
|
||||||
QMetaObject::invokeMethod(object, "exit");
|
QMetaObject::invokeMethod(object, "exit");
|
||||||
container->close();
|
container->close();
|
||||||
view->close();
|
view->close();*/
|
||||||
|
|
||||||
event->accept();
|
event->accept();
|
||||||
ComicsView::closeEvent(event);
|
ComicsView::closeEvent(event);
|
||||||
|
|
||||||
//save settings
|
//save settings
|
||||||
settings->setValue(COMICS_GRID_COVER_SIZES, coverSizeSlider->value());
|
settings->setValue(COMICS_GRID_COVER_SIZES, coverSizeSlider->value());
|
||||||
|
settings->setValue(COMICS_GRID_SHOW_INFO, showInfoAction->isChecked());
|
||||||
|
settings->setValue(COMICS_GRID_INFO_WIDTH, infoWidth);
|
||||||
}
|
}
|
||||||
|
@ -5,12 +5,18 @@
|
|||||||
|
|
||||||
#include <QModelIndex>
|
#include <QModelIndex>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class QAbstractListModel;
|
class QAbstractListModel;
|
||||||
class QItemSelectionModel;
|
class QItemSelectionModel;
|
||||||
class QQuickView;
|
class QQuickView;
|
||||||
class QQuickView;
|
class QQuickView;
|
||||||
|
|
||||||
class YACReaderToolBarStretch;
|
class YACReaderToolBarStretch;
|
||||||
|
class YACReaderComicsSelectionHelper;
|
||||||
|
class YACReaderComicInfoHelper;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class GridComicsView : public ComicsView
|
class GridComicsView : public ComicsView
|
||||||
{
|
{
|
||||||
@ -31,44 +37,37 @@ public:
|
|||||||
QSize sizeHint();
|
QSize sizeHint();
|
||||||
QByteArray getMimeDataFromSelection();
|
QByteArray getMimeDataFromSelection();
|
||||||
|
|
||||||
|
|
||||||
signals:
|
|
||||||
void comicRated(int,QModelIndex);
|
|
||||||
void doubleClicked(QModelIndex);
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
//selection helper
|
|
||||||
void selectIndex(int index);
|
|
||||||
void setCurrentIndex(int index);
|
|
||||||
void deselectIndex(int index);
|
|
||||||
bool isSelectedIndex(int index);
|
|
||||||
void clear();
|
|
||||||
//double clicked item
|
|
||||||
void selectedItem(int index);
|
|
||||||
int numItemsSelected();
|
|
||||||
int lastSelectedIndex();
|
|
||||||
|
|
||||||
//ComicsView
|
//ComicsView
|
||||||
void setShowMarks(bool show);
|
void setShowMarks(bool show);
|
||||||
void selectAll();
|
void selectAll();
|
||||||
|
void selectIndex(int index);
|
||||||
|
|
||||||
//rating
|
void updateBackgroundConfig();
|
||||||
|
|
||||||
|
void showInfo();
|
||||||
|
|
||||||
|
protected slots:
|
||||||
|
void setCurrentIndex(int index);
|
||||||
|
//QML - double clicked item
|
||||||
|
void selectedItem(int index);
|
||||||
|
|
||||||
|
//QML - rating
|
||||||
void rate(int index, int rating);
|
void rate(int index, int rating);
|
||||||
|
//QML - dragManager
|
||||||
//dragManager
|
|
||||||
void startDrag();
|
void startDrag();
|
||||||
//dropManager
|
//QML - dropManager
|
||||||
bool canDropUrls(const QList<QUrl> & urls, Qt::DropAction action);
|
bool canDropUrls(const QList<QUrl> & urls, Qt::DropAction action);
|
||||||
bool canDropFormats(const QString &formats);
|
bool canDropFormats(const QString &formats);
|
||||||
void droppedFiles(const QList<QUrl> & urls, Qt::DropAction action);
|
void droppedFiles(const QList<QUrl> & urls, Qt::DropAction action);
|
||||||
void droppedComicsForResortingAt(const QString & data, int index);
|
void droppedComicsForResortingAt(const QString & data, int index);
|
||||||
|
//QML - context menu
|
||||||
void updateBackgroundConfig();
|
|
||||||
|
|
||||||
protected slots:
|
|
||||||
void requestedContextMenu(const QPoint & point);
|
void requestedContextMenu(const QPoint & point);
|
||||||
|
|
||||||
void setCoversSize(int width);
|
void setCoversSize(int width);
|
||||||
|
|
||||||
|
void dummyUpdater(); //TODO remove this
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QSettings * settings;
|
QSettings * settings;
|
||||||
QToolBar * toolbar;
|
QToolBar * toolbar;
|
||||||
@ -77,9 +76,12 @@ private:
|
|||||||
QWidget * coverSizeSliderWidget;
|
QWidget * coverSizeSliderWidget;
|
||||||
QSlider * coverSizeSlider;
|
QSlider * coverSizeSlider;
|
||||||
QAction * coverSizeSliderAction;
|
QAction * coverSizeSliderAction;
|
||||||
QItemSelectionModel * _selectionModel;
|
QAction * showInfoAction;
|
||||||
QQuickView *view;
|
QAction * showInfoSeparatorAction;
|
||||||
QWidget *container;
|
|
||||||
|
YACReaderComicsSelectionHelper * selectionHelper;
|
||||||
|
YACReaderComicInfoHelper * comicInfoHelper;
|
||||||
|
|
||||||
bool dummy;
|
bool dummy;
|
||||||
void closeEvent ( QCloseEvent * event );
|
void closeEvent ( QCloseEvent * event );
|
||||||
void createCoverSizeSliderWidget();
|
void createCoverSizeSliderWidget();
|
||||||
|
@ -35,7 +35,9 @@
|
|||||||
<file>../images/comics_view_toolbar/small_size_grid_zoom.png</file>
|
<file>../images/comics_view_toolbar/small_size_grid_zoom.png</file>
|
||||||
<file>../images/comics_view_toolbar/small_size_grid_zoom@2x.png</file>
|
<file>../images/comics_view_toolbar/small_size_grid_zoom@2x.png</file>
|
||||||
<file>../images/comics_view_toolbar/trash.png</file>
|
<file>../images/comics_view_toolbar/trash.png</file>
|
||||||
<file>../images/comics_view_toolbar/trash.png</file>
|
<file>../images/comics_view_toolbar/trash@2x.png</file>
|
||||||
|
<file>../images/comics_view_toolbar/show_comic_info.png</file>
|
||||||
|
<file>../images/comics_view_toolbar/show_comic_info@2x.png</file>
|
||||||
<file>../images/coversPackage.png</file>
|
<file>../images/coversPackage.png</file>
|
||||||
<file>../images/db.png</file>
|
<file>../images/db.png</file>
|
||||||
<file>../images/defaultCover.png</file>
|
<file>../images/defaultCover.png</file>
|
||||||
|
@ -15,13 +15,10 @@
|
|||||||
<file alias="images/main_toolbar/flow@2x.png">../images/main_toolbar/flow_osx@2x.png</file>
|
<file alias="images/main_toolbar/flow@2x.png">../images/main_toolbar/flow_osx@2x.png</file>
|
||||||
<file alias="images/main_toolbar/grid.png">../images/main_toolbar/grid_osx.png</file>
|
<file alias="images/main_toolbar/grid.png">../images/main_toolbar/grid_osx.png</file>
|
||||||
<file alias="images/main_toolbar/grid@2x.png">../images/main_toolbar/grid_osx@2x.png</file>
|
<file alias="images/main_toolbar/grid@2x.png">../images/main_toolbar/grid_osx@2x.png</file>
|
||||||
<file alias="images/flow_to_grid.gif">../images/flow_to_grid_osx.gif</file>
|
|
||||||
<file alias="images/grid_to_flow.gif">../images/grid_to_flow_osx.gif</file>
|
|
||||||
<file alias="images/empty_folder.png">../images/empty_folder_osx.png</file>
|
<file alias="images/empty_folder.png">../images/empty_folder_osx.png</file>
|
||||||
<file alias="images/empty_search.png">../images/empty_search_osx.png</file>
|
<file alias="images/empty_search.png">../images/empty_search_osx.png</file>
|
||||||
<file>../images/iconSearch.png</file>
|
<file>../images/iconSearch.png</file>
|
||||||
<file>../images/clearSearch.png</file>
|
<file>../images/clearSearch.png</file>
|
||||||
<!--reading lists-->
|
|
||||||
<file alias="images/lists/default_0.png">../images/lists/default_0_osx.png</file>
|
<file alias="images/lists/default_0.png">../images/lists/default_0_osx.png</file>
|
||||||
<file alias="images/lists/default_1.png">../images/lists/default_1_osx.png</file>
|
<file alias="images/lists/default_1.png">../images/lists/default_1_osx.png</file>
|
||||||
<file alias="images/lists/label_blue.png">../images/lists/label_blue_osx.png</file>
|
<file alias="images/lists/label_blue.png">../images/lists/label_blue_osx.png</file>
|
||||||
@ -38,7 +35,6 @@
|
|||||||
<file alias="images/lists/label_yellow.png">../images/lists/label_yellow_osx.png</file>
|
<file alias="images/lists/label_yellow.png">../images/lists/label_yellow_osx.png</file>
|
||||||
<file alias="images/lists/list.png">../images/lists/list_osx.png</file>
|
<file alias="images/lists/list.png">../images/lists/list_osx.png</file>
|
||||||
<file alias="images/empty_reading_list.png">../images/empty_reading_list_osx.png</file>
|
<file alias="images/empty_reading_list.png">../images/empty_reading_list_osx.png</file>
|
||||||
<!--reading lists @2x-->
|
|
||||||
<file alias="images/lists/default_0@2x.png">../images/lists/default_0_osx@2x.png</file>
|
<file alias="images/lists/default_0@2x.png">../images/lists/default_0_osx@2x.png</file>
|
||||||
<file alias="images/lists/default_1@2x.png">../images/lists/default_1_osx@2x.png</file>
|
<file alias="images/lists/default_1@2x.png">../images/lists/default_1_osx@2x.png</file>
|
||||||
<file alias="images/lists/label_blue@2x.png">../images/lists/label_blue_osx@2x.png</file>
|
<file alias="images/lists/label_blue@2x.png">../images/lists/label_blue_osx@2x.png</file>
|
||||||
@ -54,7 +50,6 @@
|
|||||||
<file alias="images/lists/label_white@2x.png">../images/lists/label_white_osx@2x.png</file>
|
<file alias="images/lists/label_white@2x.png">../images/lists/label_white_osx@2x.png</file>
|
||||||
<file alias="images/lists/label_yellow@2x.png">../images/lists/label_yellow_osx@2x.png</file>
|
<file alias="images/lists/label_yellow@2x.png">../images/lists/label_yellow_osx@2x.png</file>
|
||||||
<file alias="images/lists/list@2x.png">../images/lists/list_osx@2x.png</file>
|
<file alias="images/lists/list@2x.png">../images/lists/list_osx@2x.png</file>
|
||||||
<!--sidebar-->
|
|
||||||
<file alias="images/sidebar/libraryIcon.png">../images/sidebar/libraryIcon_osx.png</file>
|
<file alias="images/sidebar/libraryIcon.png">../images/sidebar/libraryIcon_osx.png</file>
|
||||||
<file alias="images/sidebar/setRoot.png">../images/sidebar/setRoot_osx.png</file>
|
<file alias="images/sidebar/setRoot.png">../images/sidebar/setRoot_osx.png</file>
|
||||||
<file alias="images/sidebar/expand.png">../images/sidebar/expand_osx.png</file>
|
<file alias="images/sidebar/expand.png">../images/sidebar/expand_osx.png</file>
|
||||||
@ -65,8 +60,6 @@
|
|||||||
<file alias="images/sidebar/delete_sidebar.png">../images/sidebar/delete_sidebar_osx.png</file>
|
<file alias="images/sidebar/delete_sidebar.png">../images/sidebar/delete_sidebar_osx.png</file>
|
||||||
<file alias="images/sidebar/addLabelIcon.png">../images/sidebar/addLabelIcon_osx.png</file>
|
<file alias="images/sidebar/addLabelIcon.png">../images/sidebar/addLabelIcon_osx.png</file>
|
||||||
<file alias="images/sidebar/renameListIcon.png">../images/sidebar/renameListIcon_osx.png</file>
|
<file alias="images/sidebar/renameListIcon.png">../images/sidebar/renameListIcon_osx.png</file>
|
||||||
<!--sidebar @2x-->
|
|
||||||
<!-- <file alias="images/sidebar/libraryIcon@2x.png">../images/sidebar/libraryIcon_osx@2x.png</file> -->
|
|
||||||
<file alias="images/sidebar/setRoot@2x.png">../images/sidebar/setRoot_osx@2x.png</file>
|
<file alias="images/sidebar/setRoot@2x.png">../images/sidebar/setRoot_osx@2x.png</file>
|
||||||
<file alias="images/sidebar/expand@2x.png">../images/sidebar/expand_osx@2x.png</file>
|
<file alias="images/sidebar/expand@2x.png">../images/sidebar/expand_osx@2x.png</file>
|
||||||
<file alias="images/sidebar/colapse@2x.png">../images/sidebar/colapse_osx@2x.png</file>
|
<file alias="images/sidebar/colapse@2x.png">../images/sidebar/colapse_osx@2x.png</file>
|
||||||
|
@ -16,8 +16,7 @@
|
|||||||
<file>../images/sidebar/openLibraryIcon.png</file>
|
<file>../images/sidebar/openLibraryIcon.png</file>
|
||||||
<file>../images/main_toolbar/flow.png</file>
|
<file>../images/main_toolbar/flow.png</file>
|
||||||
<file>../images/main_toolbar/grid.png</file>
|
<file>../images/main_toolbar/grid.png</file>
|
||||||
<file>../images/flow_to_grid.gif</file>
|
<file>../images/main_toolbar/info.png</file>
|
||||||
<file>../images/grid_to_flow.gif</file>
|
|
||||||
<file>../images/empty_folder.png</file>
|
<file>../images/empty_folder.png</file>
|
||||||
<file>../images/empty_search.png</file>
|
<file>../images/empty_search.png</file>
|
||||||
<file>../images/sidebar/addNew_sidebar.png</file>
|
<file>../images/sidebar/addNew_sidebar.png</file>
|
||||||
@ -26,7 +25,6 @@
|
|||||||
<file alias="images/clearSearch.png">../images/clearSearchNew.png</file>
|
<file alias="images/clearSearch.png">../images/clearSearchNew.png</file>
|
||||||
<file>../images/sidebar/addLabelIcon.png</file>
|
<file>../images/sidebar/addLabelIcon.png</file>
|
||||||
<file>../images/sidebar/renameListIcon.png</file>
|
<file>../images/sidebar/renameListIcon.png</file>
|
||||||
<!--reading lists-->
|
|
||||||
<file>../images/lists/default_0.png</file>
|
<file>../images/lists/default_0.png</file>
|
||||||
<file>../images/lists/default_1.png</file>
|
<file>../images/lists/default_1.png</file>
|
||||||
<file>../images/lists/label_blue.png</file>
|
<file>../images/lists/label_blue.png</file>
|
||||||
|
203
YACReaderLibrary/info_comics_view.cpp
Normal file
@ -0,0 +1,203 @@
|
|||||||
|
#include "info_comics_view.h"
|
||||||
|
|
||||||
|
#include <QtQuick>
|
||||||
|
|
||||||
|
#include "comic.h"
|
||||||
|
#include "comic_files_manager.h"
|
||||||
|
#include "comic_model.h"
|
||||||
|
#include "comic_db.h"
|
||||||
|
#include "yacreader_comic_info_helper.h"
|
||||||
|
#include "yacreader_comics_selection_helper.h"
|
||||||
|
|
||||||
|
#include "QsLog.h"
|
||||||
|
|
||||||
|
InfoComicsView::InfoComicsView(QWidget *parent)
|
||||||
|
:ComicsView(parent)
|
||||||
|
{
|
||||||
|
qmlRegisterType<ComicModel>("com.yacreader.ComicModel",1,0,"ComicModel");
|
||||||
|
qmlRegisterType<ComicDB>("com.yacreader.ComicDB",1,0,"ComicDB");
|
||||||
|
qmlRegisterType<ComicInfo>("com.yacreader.ComicInfo",1,0,"ComicInfo");
|
||||||
|
|
||||||
|
view = new QQuickView();
|
||||||
|
container = QWidget::createWindowContainer(view, this);
|
||||||
|
|
||||||
|
container->setFocusPolicy(Qt::StrongFocus);
|
||||||
|
|
||||||
|
view->setSource(QUrl("qrc:/qml/InfoComicsView.qml"));
|
||||||
|
|
||||||
|
|
||||||
|
QObject *rootObject = dynamic_cast<QObject*>(view->rootObject());
|
||||||
|
flow = rootObject->findChild<QObject*>("flow");
|
||||||
|
list = rootObject->findChild<QObject*>("list");
|
||||||
|
|
||||||
|
connect(flow, SIGNAL(currentCoverChanged(int)), this, SLOT(updateInfoForIndex(int)));
|
||||||
|
connect(flow, SIGNAL(currentCoverChanged(int)), this, SLOT(setCurrentIndex(int)));
|
||||||
|
|
||||||
|
selectionHelper = new YACReaderComicsSelectionHelper(this);
|
||||||
|
comicInfoHelper = new YACReaderComicInfoHelper(this);
|
||||||
|
|
||||||
|
QVBoxLayout * l = new QVBoxLayout;
|
||||||
|
l->addWidget(container);
|
||||||
|
this->setLayout(l);
|
||||||
|
|
||||||
|
setContentsMargins(0,0,0,0);
|
||||||
|
l->setContentsMargins(0,0,0,0);
|
||||||
|
l->setSpacing(0);
|
||||||
|
|
||||||
|
setShowMarks(true);
|
||||||
|
|
||||||
|
QLOG_TRACE() << "GridComicsView";
|
||||||
|
}
|
||||||
|
|
||||||
|
InfoComicsView::~InfoComicsView()
|
||||||
|
{
|
||||||
|
delete view;
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::setToolBar(QToolBar *toolBar)
|
||||||
|
{
|
||||||
|
static_cast<QVBoxLayout *>(this->layout())->insertWidget(1,toolBar);
|
||||||
|
this->toolbar = toolBar;
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::setModel(ComicModel *model)
|
||||||
|
{
|
||||||
|
if(model == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
|
selectionHelper->setModel(model);
|
||||||
|
comicInfoHelper->setModel(model);
|
||||||
|
|
||||||
|
ComicsView::setModel(model);
|
||||||
|
|
||||||
|
QQmlContext *ctxt = view->rootContext();
|
||||||
|
|
||||||
|
/*if(_selectionModel != NULL)
|
||||||
|
delete _selectionModel;
|
||||||
|
|
||||||
|
_selectionModel = new QItemSelectionModel(model);*/
|
||||||
|
|
||||||
|
ctxt->setContextProperty("comicsList", model);
|
||||||
|
if(model->rowCount()>0)
|
||||||
|
ctxt->setContextProperty("backgroundImage", this->model->data(this->model->index(0, 0), ComicModel::CoverPathRole));
|
||||||
|
else
|
||||||
|
ctxt->setContextProperty("backgroundImage", QUrl());
|
||||||
|
|
||||||
|
ctxt->setContextProperty("comicsSelection", selectionHelper->selectionModel());
|
||||||
|
ctxt->setContextProperty("contextMenuHelper",this);
|
||||||
|
ctxt->setContextProperty("currentIndexHelper", this);
|
||||||
|
ctxt->setContextProperty("comicInfoHelper", comicInfoHelper);
|
||||||
|
/*ctxt->setContextProperty("comicsSelectionHelper", this);
|
||||||
|
ctxt->setContextProperty("dragManager", this);*/
|
||||||
|
ctxt->setContextProperty("dropManager", this);
|
||||||
|
|
||||||
|
|
||||||
|
if(model->rowCount()>0)
|
||||||
|
{
|
||||||
|
setCurrentIndex(model->index(0,0));
|
||||||
|
updateInfoForIndex(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::setCurrentIndex(const QModelIndex &index)
|
||||||
|
{
|
||||||
|
QQmlProperty(list, "currentIndex").write(index.row());
|
||||||
|
|
||||||
|
selectionHelper->clear();
|
||||||
|
selectionHelper->selectIndex(index.row());
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::setCurrentIndex(int index)
|
||||||
|
{
|
||||||
|
selectionHelper->clear();
|
||||||
|
selectionHelper->selectIndex(index);
|
||||||
|
}
|
||||||
|
|
||||||
|
QModelIndex InfoComicsView::currentIndex()
|
||||||
|
{
|
||||||
|
return selectionHelper->currentIndex();
|
||||||
|
}
|
||||||
|
|
||||||
|
QItemSelectionModel *InfoComicsView::selectionModel()
|
||||||
|
{
|
||||||
|
return selectionHelper->selectionModel();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::scrollTo(const QModelIndex &mi, QAbstractItemView::ScrollHint hint)
|
||||||
|
{
|
||||||
|
Q_UNUSED(mi);
|
||||||
|
Q_UNUSED(hint);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::toFullScreen()
|
||||||
|
{
|
||||||
|
toolbar->hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::toNormal()
|
||||||
|
{
|
||||||
|
toolbar->show();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::updateConfig(QSettings *settings)
|
||||||
|
{
|
||||||
|
Q_UNUSED(settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::enableFilterMode(bool enabled)
|
||||||
|
{
|
||||||
|
Q_UNUSED(enabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::selectIndex(int index)
|
||||||
|
{
|
||||||
|
selectionHelper->selectIndex(index);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::setShowMarks(bool show)
|
||||||
|
{
|
||||||
|
QQmlContext *ctxt = view->rootContext();
|
||||||
|
ctxt->setContextProperty("show_marks", show);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::selectAll()
|
||||||
|
{
|
||||||
|
selectionHelper->selectAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InfoComicsView::canDropUrls(const QList<QUrl> &urls, Qt::DropAction action)
|
||||||
|
{
|
||||||
|
if(action == Qt::CopyAction)
|
||||||
|
{
|
||||||
|
QString currentPath;
|
||||||
|
foreach (QUrl url, urls)
|
||||||
|
{
|
||||||
|
//comics or folders are accepted, folders' content is validate in dropEvent (avoid any lag before droping)
|
||||||
|
currentPath = url.toLocalFile();
|
||||||
|
if(Comic::fileIsComic(currentPath) || QFileInfo(currentPath).isDir())
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::droppedFiles(const QList<QUrl> &urls, Qt::DropAction action)
|
||||||
|
{
|
||||||
|
bool validAction = action == Qt::CopyAction; //TODO add move
|
||||||
|
|
||||||
|
if(validAction)
|
||||||
|
{
|
||||||
|
QList<QPair<QString, QString> > droppedFiles = ComicFilesManager::getDroppedFiles(urls);
|
||||||
|
emit copyComicsToCurrentFolder(droppedFiles);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::requestedContextMenu(const QPoint &point)
|
||||||
|
{
|
||||||
|
emit customContextMenuViewRequested(point);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InfoComicsView::selectedItem(int index)
|
||||||
|
{
|
||||||
|
emit selected(index);
|
||||||
|
}
|
56
YACReaderLibrary/info_comics_view.h
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
#ifndef INFOCOMICSVIEW_H
|
||||||
|
#define INFOCOMICSVIEW_H
|
||||||
|
|
||||||
|
#include "comics_view.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class QQuickView;
|
||||||
|
|
||||||
|
class YACReaderComicsSelectionHelper;
|
||||||
|
class YACReaderComicInfoHelper;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class InfoComicsView : public ComicsView
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit InfoComicsView(QWidget *parent = 0);
|
||||||
|
~InfoComicsView();
|
||||||
|
void setToolBar(QToolBar * toolBar);
|
||||||
|
void setModel(ComicModel *model);
|
||||||
|
void setCurrentIndex(const QModelIndex &index);
|
||||||
|
QModelIndex currentIndex();
|
||||||
|
QItemSelectionModel * selectionModel();
|
||||||
|
void scrollTo(const QModelIndex & mi, QAbstractItemView::ScrollHint hint );
|
||||||
|
void toFullScreen();
|
||||||
|
void toNormal();
|
||||||
|
void updateConfig(QSettings * settings);
|
||||||
|
void enableFilterMode(bool enabled);
|
||||||
|
void selectIndex(int index);
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void setShowMarks(bool show);
|
||||||
|
void selectAll();
|
||||||
|
|
||||||
|
protected slots:
|
||||||
|
void setCurrentIndex(int index);
|
||||||
|
|
||||||
|
bool canDropUrls(const QList<QUrl> & urls, Qt::DropAction action);
|
||||||
|
void droppedFiles(const QList<QUrl> & urls, Qt::DropAction action);
|
||||||
|
|
||||||
|
void requestedContextMenu(const QPoint & point);
|
||||||
|
|
||||||
|
void selectedItem(int index);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
QToolBar * toolbar;
|
||||||
|
QObject *flow;
|
||||||
|
QObject *list;
|
||||||
|
|
||||||
|
YACReaderComicsSelectionHelper * selectionHelper;
|
||||||
|
YACReaderComicInfoHelper * comicInfoHelper;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // INFOCOMICSVIEW_H
|
@ -63,19 +63,11 @@
|
|||||||
#include "api_key_dialog.h"
|
#include "api_key_dialog.h"
|
||||||
//#include "yacreader_social_dialog.h"
|
//#include "yacreader_social_dialog.h"
|
||||||
|
|
||||||
#include "classic_comics_view.h"
|
#include "comics_view.h"
|
||||||
#include "grid_comics_view.h"
|
|
||||||
#include "comics_view_transition.h"
|
|
||||||
#include "empty_folder_widget.h"
|
|
||||||
#include "empty_label_widget.h"
|
|
||||||
#include "empty_special_list.h"
|
|
||||||
#include "empty_reading_list_widget.h"
|
|
||||||
|
|
||||||
#include "edit_shortcuts_dialog.h"
|
#include "edit_shortcuts_dialog.h"
|
||||||
#include "shortcuts_manager.h"
|
#include "shortcuts_manager.h"
|
||||||
|
|
||||||
#include "no_search_results_widget.h"
|
|
||||||
|
|
||||||
#include "comic_files_manager.h"
|
#include "comic_files_manager.h"
|
||||||
|
|
||||||
#include "reading_list_model.h"
|
#include "reading_list_model.h"
|
||||||
@ -88,6 +80,8 @@
|
|||||||
#include "reading_list_item.h"
|
#include "reading_list_item.h"
|
||||||
#include "opengl_checker.h"
|
#include "opengl_checker.h"
|
||||||
|
|
||||||
|
#include "yacreader_comics_views_manager.h"
|
||||||
|
|
||||||
#include "QsLog.h"
|
#include "QsLog.h"
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
@ -140,7 +134,7 @@ void LibraryWindow::setupUI()
|
|||||||
createToolBars();
|
createToolBars();
|
||||||
createMenus();
|
createMenus();
|
||||||
|
|
||||||
navigationController = new YACReaderNavigationController(this);
|
navigationController = new YACReaderNavigationController(this, comicsViewsManager);
|
||||||
|
|
||||||
createConnections();
|
createConnections();
|
||||||
|
|
||||||
@ -237,37 +231,14 @@ void LibraryWindow::doLayout()
|
|||||||
readingListsTitle->addSpacing(3);
|
readingListsTitle->addSpacing(3);
|
||||||
|
|
||||||
//FINAL LAYOUT-------------------------------------------------------------
|
//FINAL LAYOUT-------------------------------------------------------------
|
||||||
comicsViewStack = new QStackedWidget();
|
|
||||||
|
|
||||||
if(!settings->contains(COMICS_VIEW_STATUS) || settings->value(COMICS_VIEW_STATUS) == Flow) {
|
comicsViewsManager = new YACReaderComicsViewsManager(settings, this);
|
||||||
comicsView = classicComicsView = new ClassicComicsView();
|
|
||||||
comicsViewStatus = Flow;
|
|
||||||
//comicsViewStack->setCurrentIndex(Flow);
|
|
||||||
} else {
|
|
||||||
comicsView = gridComicsView = new GridComicsView();
|
|
||||||
connect(optionsDialog, SIGNAL(optionsChanged()), gridComicsView, SLOT(updateBackgroundConfig()));
|
|
||||||
comicsViewStatus = Grid;
|
|
||||||
//comicsViewStack->setCurrentIndex(Grid);
|
|
||||||
}
|
|
||||||
|
|
||||||
doComicsViewConnections();
|
|
||||||
|
|
||||||
comicsViewStack->addWidget(comicsViewTransition = new ComicsViewTransition());
|
|
||||||
comicsViewStack->addWidget(emptyFolderWidget = new EmptyFolderWidget());
|
|
||||||
comicsViewStack->addWidget(emptyLabelWidget = new EmptyLabelWidget());
|
|
||||||
comicsViewStack->addWidget(emptySpecialList = new EmptySpecialListWidget());
|
|
||||||
comicsViewStack->addWidget(emptyReadingList = new EmptyReadingListWidget());
|
|
||||||
comicsViewStack->addWidget(noSearchResultsWidget = new NoSearchResultsWidget());
|
|
||||||
|
|
||||||
comicsViewStack->addWidget(comicsView);
|
|
||||||
|
|
||||||
comicsViewStack->setCurrentWidget(comicsView);
|
|
||||||
|
|
||||||
sHorizontal->addWidget(sideBar);
|
sHorizontal->addWidget(sideBar);
|
||||||
#ifndef Q_OS_MAC
|
#ifndef Q_OS_MAC
|
||||||
QVBoxLayout * rightLayout = new QVBoxLayout;
|
QVBoxLayout * rightLayout = new QVBoxLayout;
|
||||||
rightLayout->addWidget(libraryToolBar);
|
rightLayout->addWidget(libraryToolBar);
|
||||||
rightLayout->addWidget(comicsViewStack);
|
rightLayout->addWidget(comicsViewsManager->containerWidget());
|
||||||
|
|
||||||
rightLayout->setMargin(0);
|
rightLayout->setMargin(0);
|
||||||
rightLayout->setSpacing(0);
|
rightLayout->setSpacing(0);
|
||||||
@ -277,7 +248,7 @@ void LibraryWindow::doLayout()
|
|||||||
|
|
||||||
sHorizontal->addWidget(rightWidget);
|
sHorizontal->addWidget(rightWidget);
|
||||||
#else
|
#else
|
||||||
sHorizontal->addWidget(comicsViewStack);
|
sHorizontal->addWidget(comicsViewsManager->containerWidget());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
sHorizontal->setStretchFactor(0,0);
|
sHorizontal->setStretchFactor(0,0);
|
||||||
@ -433,7 +404,7 @@ void LibraryWindow::doModels()
|
|||||||
foldersModelProxy = new FolderModelProxy();
|
foldersModelProxy = new FolderModelProxy();
|
||||||
//foldersModelProxy->setSourceModel(foldersModel);
|
//foldersModelProxy->setSourceModel(foldersModel);
|
||||||
//comics
|
//comics
|
||||||
comicsModel = new ComicModel();
|
comicsModel = new ComicModel(this);
|
||||||
//lists
|
//lists
|
||||||
listsModel = new ReadingListModel();
|
listsModel = new ReadingListModel();
|
||||||
listsModelProxy = new ReadingListModelProxy();
|
listsModelProxy = new ReadingListModelProxy();
|
||||||
@ -441,34 +412,6 @@ void LibraryWindow::doModels()
|
|||||||
//setSearchFilter(YACReader::NoModifiers, ""); //clear search filter
|
//setSearchFilter(YACReader::NoModifiers, ""); //clear search filter
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibraryWindow::disconnectComicsViewConnections(ComicsView * widget)
|
|
||||||
{
|
|
||||||
disconnect(widget, SIGNAL(comicRated(int,QModelIndex)), comicsModel, SLOT(updateRating(int,QModelIndex)));
|
|
||||||
disconnect(showHideMarksAction,SIGNAL(toggled(bool)),widget,SLOT(setShowMarks(bool)));
|
|
||||||
disconnect(widget,SIGNAL(selected(unsigned int)),this,SLOT(openComic()));
|
|
||||||
disconnect(widget,SIGNAL(doubleClicked(QModelIndex)),this,SLOT(openComic()));
|
|
||||||
disconnect(selectAllComicsAction,SIGNAL(triggered()),widget,SLOT(selectAll()));
|
|
||||||
disconnect(comicsView, SIGNAL(copyComicsToCurrentFolder(QList<QPair<QString, QString> >)), this, SLOT(copyAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
|
||||||
disconnect(comicsView, SIGNAL(moveComicsToCurrentFolder(QList<QPair<QString, QString> >)), this, SLOT(moveAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
|
||||||
disconnect(comicsView,SIGNAL(customContextMenuViewRequested(QPoint)),this,SLOT(showComicsViewContextMenu(QPoint)));
|
|
||||||
disconnect(comicsView,SIGNAL(customContextMenuItemRequested(QPoint)),this,SLOT(showComicsItemContextMenu(QPoint)));
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::doComicsViewConnections()
|
|
||||||
{
|
|
||||||
connect(comicsView, SIGNAL(comicRated(int,QModelIndex)), comicsModel, SLOT(updateRating(int,QModelIndex)));
|
|
||||||
connect(showHideMarksAction,SIGNAL(toggled(bool)),comicsView,SLOT(setShowMarks(bool)));
|
|
||||||
connect(comicsView,SIGNAL(selected(unsigned int)),this,SLOT(openComic()));
|
|
||||||
connect(comicsView,SIGNAL(doubleClicked(QModelIndex)),this,SLOT(openComic()));
|
|
||||||
connect(selectAllComicsAction,SIGNAL(triggered()),comicsView,SLOT(selectAll()));
|
|
||||||
|
|
||||||
connect(comicsView,SIGNAL(customContextMenuViewRequested(QPoint)),this,SLOT(showComicsViewContextMenu(QPoint)));
|
|
||||||
connect(comicsView,SIGNAL(customContextMenuItemRequested(QPoint)),this,SLOT(showComicsItemContextMenu(QPoint)));
|
|
||||||
//Drops
|
|
||||||
connect(comicsView, SIGNAL(copyComicsToCurrentFolder(QList<QPair<QString, QString> >)), this, SLOT(copyAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
|
||||||
connect(comicsView, SIGNAL(moveComicsToCurrentFolder(QList<QPair<QString, QString> >)), this, SLOT(moveAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::createActions()
|
void LibraryWindow::createActions()
|
||||||
{
|
{
|
||||||
backAction = new QAction(this);
|
backAction = new QAction(this);
|
||||||
@ -647,10 +590,14 @@ void LibraryWindow::createActions()
|
|||||||
toggleComicsViewAction = new QAction(tr("Change between comics views"),this);
|
toggleComicsViewAction = new QAction(tr("Change between comics views"),this);
|
||||||
toggleComicsViewAction->setToolTip(tr("Change between comics views"));
|
toggleComicsViewAction->setToolTip(tr("Change between comics views"));
|
||||||
QIcon icoViewsButton;
|
QIcon icoViewsButton;
|
||||||
|
|
||||||
if(!settings->contains(COMICS_VIEW_STATUS) || settings->value(COMICS_VIEW_STATUS) == Flow)
|
if(!settings->contains(COMICS_VIEW_STATUS) || settings->value(COMICS_VIEW_STATUS) == Flow)
|
||||||
icoViewsButton.addFile(":/images/main_toolbar/grid.png", QSize(), QIcon::Normal);
|
icoViewsButton.addFile(":/images/main_toolbar/grid.png", QSize(), QIcon::Normal);
|
||||||
|
else if(settings->value(COMICS_VIEW_STATUS) == Grid)
|
||||||
|
icoViewsButton.addFile(":/images/main_toolbar/info.png", QSize(), QIcon::Normal);
|
||||||
else
|
else
|
||||||
icoViewsButton.addFile(":/images/main_toolbar/flow.png", QSize(), QIcon::Normal);
|
icoViewsButton.addFile(":/images/main_toolbar/flow.png", QSize(), QIcon::Normal);
|
||||||
|
|
||||||
toggleComicsViewAction->setData(TOGGLE_COMICS_VIEW_ACTION_YL);
|
toggleComicsViewAction->setData(TOGGLE_COMICS_VIEW_ACTION_YL);
|
||||||
toggleComicsViewAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(TOGGLE_COMICS_VIEW_ACTION_YL));
|
toggleComicsViewAction->setShortcut(ShortcutsManager::getShortcutsManager().getShortcut(TOGGLE_COMICS_VIEW_ACTION_YL));
|
||||||
toggleComicsViewAction->setIcon(icoViewsButton);
|
toggleComicsViewAction->setIcon(icoViewsButton);
|
||||||
@ -930,7 +877,7 @@ void LibraryWindow::createToolBars()
|
|||||||
editInfoToolBar->addAction(deleteComicsAction);
|
editInfoToolBar->addAction(deleteComicsAction);
|
||||||
|
|
||||||
|
|
||||||
comicsView->setToolBar(editInfoToolBar);
|
comicsViewsManager->comicsView->setToolBar(editInfoToolBar);
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibraryWindow::createMenus()
|
void LibraryWindow::createMenus()
|
||||||
@ -1109,7 +1056,7 @@ void LibraryWindow::createConnections()
|
|||||||
#ifndef Q_OS_MAC
|
#ifndef Q_OS_MAC
|
||||||
connect(toggleFullScreenAction,SIGNAL(triggered()),this,SLOT(toggleFullScreen()));
|
connect(toggleFullScreenAction,SIGNAL(triggered()),this,SLOT(toggleFullScreen()));
|
||||||
#endif
|
#endif
|
||||||
connect(toggleComicsViewAction,SIGNAL(triggered()),this,SLOT(toggleComicsView()));
|
connect(toggleComicsViewAction,SIGNAL(triggered()),comicsViewsManager,SLOT(toggleComicsView()));
|
||||||
connect(optionsAction, SIGNAL(triggered()),optionsDialog,SLOT(show()));
|
connect(optionsAction, SIGNAL(triggered()),optionsDialog,SLOT(show()));
|
||||||
#ifdef SERVER_RELEASE
|
#ifdef SERVER_RELEASE
|
||||||
connect(serverConfigAction, SIGNAL(triggered()), serverConfigDialog, SLOT(show()));
|
connect(serverConfigAction, SIGNAL(triggered()), serverConfigDialog, SLOT(show()));
|
||||||
@ -1143,14 +1090,9 @@ void LibraryWindow::createConnections()
|
|||||||
|
|
||||||
//connect(socialAction,SIGNAL(triggered()),this,SLOT(showSocial()));
|
//connect(socialAction,SIGNAL(triggered()),this,SLOT(showSocial()));
|
||||||
|
|
||||||
connect(comicsViewTransition,SIGNAL(transitionFinished()),this,SLOT(showComicsView()));
|
|
||||||
|
|
||||||
//connect(comicsModel,SIGNAL(isEmpty()),this,SLOT(showEmptyFolderView()));
|
//connect(comicsModel,SIGNAL(isEmpty()),this,SLOT(showEmptyFolderView()));
|
||||||
//connect(comicsModel,SIGNAL(searchNumResults(int)),this,SLOT(checkSearchNumResults(int)));
|
//connect(comicsModel,SIGNAL(searchNumResults(int)),this,SLOT(checkSearchNumResults(int)));
|
||||||
//connect(emptyFolderWidget,SIGNAL(subfolderSelected(QModelIndex,int)),this,SLOT(selectSubfolder(QModelIndex,int)));
|
//connect(emptyFolderWidget,SIGNAL(subfolderSelected(QModelIndex,int)),this,SLOT(selectSubfolder(QModelIndex,int)));
|
||||||
//Drops
|
|
||||||
connect(emptyFolderWidget, SIGNAL(copyComicsToCurrentFolder(QList<QPair<QString, QString> >)), this, SLOT(copyAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
|
||||||
connect(emptyFolderWidget, SIGNAL(moveComicsToCurrentFolder(QList<QPair<QString, QString> >)), this, SLOT(moveAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
|
||||||
|
|
||||||
connect(showEditShortcutsAction,SIGNAL(triggered()),editShortcutsDialog,SLOT(show()));
|
connect(showEditShortcutsAction,SIGNAL(triggered()),editShortcutsDialog,SLOT(show()));
|
||||||
|
|
||||||
@ -1200,7 +1142,7 @@ void LibraryWindow::loadLibrary(const QString & name)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
comicsView->setModel(NULL);
|
comicsViewsManager->comicsView->setModel(NULL);
|
||||||
foldersView->setModel(NULL);
|
foldersView->setModel(NULL);
|
||||||
listsView->setModel(NULL);
|
listsView->setModel(NULL);
|
||||||
disableAllActions();//TODO comprobar que se deben deshabilitar
|
disableAllActions();//TODO comprobar que se deben deshabilitar
|
||||||
@ -1257,7 +1199,7 @@ void LibraryWindow::loadLibrary(const QString & name)
|
|||||||
if(ret == QMessageBox::Yes)
|
if(ret == QMessageBox::Yes)
|
||||||
QDesktopServices::openUrl(QUrl("http://www.yacreader.com"));
|
QDesktopServices::openUrl(QUrl("http://www.yacreader.com"));
|
||||||
|
|
||||||
comicsView->setModel(NULL);
|
comicsViewsManager->comicsView->setModel(NULL);
|
||||||
foldersView->setModel(NULL);
|
foldersView->setModel(NULL);
|
||||||
listsView->setModel(NULL);
|
listsView->setModel(NULL);
|
||||||
disableAllActions();//TODO comprobar que se deben deshabilitar
|
disableAllActions();//TODO comprobar que se deben deshabilitar
|
||||||
@ -1268,7 +1210,7 @@ void LibraryWindow::loadLibrary(const QString & name)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
comicsView->setModel(NULL);
|
comicsViewsManager->comicsView->setModel(NULL);
|
||||||
foldersView->setModel(NULL);
|
foldersView->setModel(NULL);
|
||||||
listsView->setModel(NULL);
|
listsView->setModel(NULL);
|
||||||
disableAllActions();//TODO comprobar que se deben deshabilitar
|
disableAllActions();//TODO comprobar que se deben deshabilitar
|
||||||
@ -1325,10 +1267,7 @@ void LibraryWindow::loadLibrary(const QString & name)
|
|||||||
|
|
||||||
void LibraryWindow::loadCoversFromCurrentModel()
|
void LibraryWindow::loadCoversFromCurrentModel()
|
||||||
{
|
{
|
||||||
//TODO this is a workaround for the crash in GridComicsView::setModel crash on views switching
|
comicsViewsManager->comicsView->setModel(comicsModel);
|
||||||
if(typeid(*comicsView) == typeid(GridComicsView))
|
|
||||||
comicsView->setModel(new ComicModel());
|
|
||||||
comicsView->setModel(comicsModel);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibraryWindow::copyAndImportComicsToCurrentFolder(const QList<QPair<QString, QString> > &comics)
|
void LibraryWindow::copyAndImportComicsToCurrentFolder(const QList<QPair<QString, QString> > &comics)
|
||||||
@ -1521,7 +1460,7 @@ void LibraryWindow::addFolderToCurrentIndex()
|
|||||||
navigationController->loadFolderInfo(newIndex);
|
navigationController->loadFolderInfo(newIndex);
|
||||||
historyController->updateHistory(YACReaderLibrarySourceContainer(newIndex,YACReaderLibrarySourceContainer::Folder));
|
historyController->updateHistory(YACReaderLibrarySourceContainer(newIndex,YACReaderLibrarySourceContainer::Folder));
|
||||||
//a new folder is always an empty folder
|
//a new folder is always an empty folder
|
||||||
showEmptyFolderView();
|
comicsViewsManager->showEmptyFolderView();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1694,7 +1633,7 @@ void LibraryWindow::showComicsViewContextMenu(const QPoint &point)
|
|||||||
menu.addAction(toggleFullScreenAction);
|
menu.addAction(toggleFullScreenAction);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
menu.exec(comicsView->mapToGlobal(point));
|
menu.exec(comicsViewsManager->comicsView->mapToGlobal(point));
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibraryWindow::showComicsItemContextMenu(const QPoint &point)
|
void LibraryWindow::showComicsItemContextMenu(const QPoint &point)
|
||||||
@ -1722,7 +1661,7 @@ void LibraryWindow::showComicsItemContextMenu(const QPoint &point)
|
|||||||
QMenu subMenu;
|
QMenu subMenu;
|
||||||
setupAddToSubmenu(subMenu);
|
setupAddToSubmenu(subMenu);
|
||||||
|
|
||||||
menu.exec(comicsView->mapToGlobal(point));
|
menu.exec(comicsViewsManager->comicsView->mapToGlobal(point));
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibraryWindow::setupAddToSubmenu(QMenu &menu)
|
void LibraryWindow::setupAddToSubmenu(QMenu &menu)
|
||||||
@ -1819,7 +1758,7 @@ void LibraryWindow::openComic()
|
|||||||
{
|
{
|
||||||
if(!importedCovers)
|
if(!importedCovers)
|
||||||
{
|
{
|
||||||
ComicDB comic = comicsModel->getComic(comicsView->currentIndex());
|
ComicDB comic = comicsModel->getComic(comicsViewsManager->comicsView->currentIndex());
|
||||||
QString path = currentPath();
|
QString path = currentPath();
|
||||||
QList<ComicDB> siblings = comicsModel->getAllComics();
|
QList<ComicDB> siblings = comicsModel->getAllComics();
|
||||||
|
|
||||||
@ -1972,7 +1911,7 @@ void LibraryWindow::deleteCurrentLibrary()
|
|||||||
d.removeRecursively();
|
d.removeRecursively();
|
||||||
if(libraries.isEmpty())//no more libraries available.
|
if(libraries.isEmpty())//no more libraries available.
|
||||||
{
|
{
|
||||||
comicsView->setModel(NULL);
|
comicsViewsManager->comicsView->setModel(NULL);
|
||||||
foldersView->setModel(NULL);
|
foldersView->setModel(NULL);
|
||||||
listsView->setModel(NULL);
|
listsView->setModel(NULL);
|
||||||
|
|
||||||
@ -1997,7 +1936,7 @@ void LibraryWindow::removeLibrary()
|
|||||||
//selectedLibrary->setCurrentIndex(0);
|
//selectedLibrary->setCurrentIndex(0);
|
||||||
if(libraries.isEmpty())//no more libraries available.
|
if(libraries.isEmpty())//no more libraries available.
|
||||||
{
|
{
|
||||||
comicsView->setModel(NULL);
|
comicsViewsManager->comicsView->setModel(NULL);
|
||||||
foldersView->setModel(NULL);
|
foldersView->setModel(NULL);
|
||||||
listsView->setModel(NULL);
|
listsView->setModel(NULL);
|
||||||
|
|
||||||
@ -2069,7 +2008,7 @@ void LibraryWindow::setRootIndex()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
comicsView->setModel(NULL);
|
comicsViewsManager->comicsView->setModel(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
foldersView->selectionModel()->clear();
|
foldersView->selectionModel()->clear();
|
||||||
@ -2090,7 +2029,7 @@ void LibraryWindow::toFullScreen()
|
|||||||
sideBar->hide();
|
sideBar->hide();
|
||||||
libraryToolBar->hide();
|
libraryToolBar->hide();
|
||||||
|
|
||||||
comicsView->toFullScreen();
|
comicsViewsManager->comicsView->toFullScreen();
|
||||||
|
|
||||||
showFullScreen();
|
showFullScreen();
|
||||||
}
|
}
|
||||||
@ -2099,7 +2038,7 @@ void LibraryWindow::toNormal()
|
|||||||
{
|
{
|
||||||
sideBar->show();
|
sideBar->show();
|
||||||
|
|
||||||
comicsView->toNormal();
|
comicsViewsManager->comicsView->toNormal();
|
||||||
|
|
||||||
if(fromMaximized)
|
if(fromMaximized)
|
||||||
showMaximized();
|
showMaximized();
|
||||||
@ -2125,14 +2064,14 @@ void LibraryWindow::setSearchFilter(const YACReader::SearchModifiers modifier, Q
|
|||||||
status = LibraryWindow::Searching;
|
status = LibraryWindow::Searching;
|
||||||
foldersModelProxy->setFilter(modifier, filter, true);//includeComicsCheckBox->isChecked());
|
foldersModelProxy->setFilter(modifier, filter, true);//includeComicsCheckBox->isChecked());
|
||||||
comicsModel->setupModelData(modifier, filter, foldersModel->getDatabase());
|
comicsModel->setupModelData(modifier, filter, foldersModel->getDatabase());
|
||||||
comicsView->enableFilterMode(true);
|
comicsViewsManager->comicsView->enableFilterMode(true);
|
||||||
comicsView->setModel(comicsModel); //TODO, columns are messed up after ResetModel some times, this shouldn't be necesary
|
comicsViewsManager->comicsView->setModel(comicsModel); //TODO, columns are messed up after ResetModel some times, this shouldn't be necesary
|
||||||
foldersView->expandAll();
|
foldersView->expandAll();
|
||||||
|
|
||||||
if(comicsModel->rowCount() == 0)
|
if(comicsModel->rowCount() == 0)
|
||||||
showNoSearchResultsView();
|
comicsViewsManager->showNoSearchResultsView();
|
||||||
else
|
else
|
||||||
showComicsView();
|
comicsViewsManager->showComicsView();
|
||||||
}
|
}
|
||||||
else if(status == LibraryWindow::Searching)
|
else if(status == LibraryWindow::Searching)
|
||||||
{//if no searching, then ignore this
|
{//if no searching, then ignore this
|
||||||
@ -2144,7 +2083,7 @@ void LibraryWindow::setSearchFilter(const YACReader::SearchModifiers modifier, Q
|
|||||||
void LibraryWindow::clearSearchFilter()
|
void LibraryWindow::clearSearchFilter()
|
||||||
{
|
{
|
||||||
foldersModelProxy->clear();
|
foldersModelProxy->clear();
|
||||||
comicsView->enableFilterMode(false);
|
comicsViewsManager->comicsView->enableFilterMode(false);
|
||||||
foldersView->collapseAll();
|
foldersView->collapseAll();
|
||||||
status = LibraryWindow::Normal;
|
status = LibraryWindow::Normal;
|
||||||
}
|
}
|
||||||
@ -2219,110 +2158,12 @@ void LibraryWindow::resetComicRating()
|
|||||||
comicsModel->finishTransaction();
|
comicsModel->finishTransaction();
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibraryWindow::switchToComicsView(ComicsView * from, ComicsView * to)
|
|
||||||
{
|
|
||||||
//setup views
|
|
||||||
disconnectComicsViewConnections(from);
|
|
||||||
from->close();
|
|
||||||
|
|
||||||
comicsView = to;
|
|
||||||
doComicsViewConnections();
|
|
||||||
|
|
||||||
comicsView->setToolBar(editInfoToolBar);
|
|
||||||
|
|
||||||
comicsViewStack->removeWidget(from);
|
|
||||||
comicsViewStack->addWidget(comicsView);
|
|
||||||
|
|
||||||
delete from;
|
|
||||||
|
|
||||||
//load content into current view
|
|
||||||
loadCoversFromCurrentModel();
|
|
||||||
|
|
||||||
if(!searchEdit->text().isEmpty())
|
|
||||||
{
|
|
||||||
comicsView->enableFilterMode(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::showComicsViewTransition()
|
|
||||||
{
|
|
||||||
comicsViewStack->setCurrentWidget(comicsViewTransition);
|
|
||||||
comicsViewTransition->startMovie();
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::toggleComicsView_delayed()
|
|
||||||
{
|
|
||||||
if(comicsViewStatus == Flow){
|
|
||||||
QIcon icoViewsButton;
|
|
||||||
icoViewsButton.addFile(":/images/main_toolbar/flow.png", QSize(), QIcon::Normal);
|
|
||||||
toggleComicsViewAction->setIcon(icoViewsButton);
|
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
libraryToolBar->updateViewSelectorIcon(icoViewsButton);
|
|
||||||
#endif
|
|
||||||
switchToComicsView(classicComicsView, gridComicsView = new GridComicsView());
|
|
||||||
connect(optionsDialog, SIGNAL(optionsChanged()), gridComicsView, SLOT(updateBackgroundConfig()));
|
|
||||||
comicsViewStatus = Grid;
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
QIcon icoViewsButton;
|
|
||||||
icoViewsButton.addFile(":/images/main_toolbar/grid.png", QSize(), QIcon::Normal);
|
|
||||||
toggleComicsViewAction->setIcon(icoViewsButton);
|
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
libraryToolBar->updateViewSelectorIcon(icoViewsButton);
|
|
||||||
#endif
|
|
||||||
switchToComicsView(gridComicsView, classicComicsView = new ClassicComicsView());
|
|
||||||
comicsViewStatus = Flow;
|
|
||||||
}
|
|
||||||
|
|
||||||
settings->setValue(COMICS_VIEW_STATUS, comicsViewStatus);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::showComicsView()
|
|
||||||
{
|
|
||||||
comicsViewStack->setCurrentWidget(comicsView);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::showEmptyFolderView()
|
|
||||||
{
|
|
||||||
comicsViewStack->setCurrentWidget(emptyFolderWidget);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::showEmptyLabelView()
|
|
||||||
{
|
|
||||||
comicsViewStack->setCurrentWidget(emptyLabelWidget);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::showEmptySpecialList()
|
|
||||||
{
|
|
||||||
comicsViewStack->setCurrentWidget(emptySpecialList);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::showEmptyReadingListWidget()
|
|
||||||
{
|
|
||||||
comicsViewStack->setCurrentWidget(emptyReadingList);
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::showNoSearchResultsView()
|
|
||||||
{
|
|
||||||
comicsViewStack->setCurrentWidget(noSearchResultsWidget);
|
|
||||||
}
|
|
||||||
|
|
||||||
//TODO recover the current comics selection and restore it in the destination
|
|
||||||
void LibraryWindow::toggleComicsView()
|
|
||||||
{
|
|
||||||
if(comicsViewStack->currentWidget()==comicsView) {
|
|
||||||
QTimer::singleShot(0,this,SLOT(showComicsViewTransition()));
|
|
||||||
QTimer::singleShot(32,this,SLOT(toggleComicsView_delayed()));
|
|
||||||
} else
|
|
||||||
toggleComicsView_delayed();
|
|
||||||
}
|
|
||||||
|
|
||||||
void LibraryWindow::checkSearchNumResults(int numResults)
|
void LibraryWindow::checkSearchNumResults(int numResults)
|
||||||
{
|
{
|
||||||
if(numResults == 0)
|
if(numResults == 0)
|
||||||
showNoSearchResultsView();
|
comicsViewsManager->showNoSearchResultsView();
|
||||||
else
|
else
|
||||||
showComicsView();
|
comicsViewsManager->showComicsView();
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibraryWindow::asignNumbers()
|
void LibraryWindow::asignNumbers()
|
||||||
@ -2348,14 +2189,14 @@ void LibraryWindow::asignNumbers()
|
|||||||
const QModelIndex & mi = comicsModel->getIndexFromId(edited);
|
const QModelIndex & mi = comicsModel->getIndexFromId(edited);
|
||||||
if(mi.isValid())
|
if(mi.isValid())
|
||||||
{
|
{
|
||||||
comicsView->scrollTo(mi,QAbstractItemView::PositionAtCenter);
|
comicsViewsManager->comicsView->scrollTo(mi,QAbstractItemView::PositionAtCenter);
|
||||||
comicsView->setCurrentIndex(mi);
|
comicsViewsManager->comicsView->setCurrentIndex(mi);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibraryWindow::openContainingFolderComic()
|
void LibraryWindow::openContainingFolderComic()
|
||||||
{
|
{
|
||||||
QModelIndex modelIndex = comicsView->currentIndex();
|
QModelIndex modelIndex = comicsViewsManager->comicsView->currentIndex();
|
||||||
QFileInfo file = QDir::cleanPath(currentPath() + comicsModel->getComicPath(modelIndex));
|
QFileInfo file = QDir::cleanPath(currentPath() + comicsModel->getComicPath(modelIndex));
|
||||||
#if defined Q_OS_UNIX && !defined Q_OS_MAC
|
#if defined Q_OS_UNIX && !defined Q_OS_MAC
|
||||||
QString path = file.absolutePath();
|
QString path = file.absolutePath();
|
||||||
@ -2435,7 +2276,7 @@ void LibraryWindow::importLibrary(QString clc,QString destPath,QString name)
|
|||||||
void LibraryWindow::reloadOptions()
|
void LibraryWindow::reloadOptions()
|
||||||
{
|
{
|
||||||
//comicFlow->setFlowType(flowType);
|
//comicFlow->setFlowType(flowType);
|
||||||
comicsView->updateConfig(settings);
|
comicsViewsManager->comicsView->updateConfig(settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
QString LibraryWindow::currentPath()
|
QString LibraryWindow::currentPath()
|
||||||
@ -2475,7 +2316,7 @@ void LibraryWindow::closeEvent ( QCloseEvent * event )
|
|||||||
s->stop();
|
s->stop();
|
||||||
settings->setValue(MAIN_WINDOW_GEOMETRY, saveGeometry());
|
settings->setValue(MAIN_WINDOW_GEOMETRY, saveGeometry());
|
||||||
|
|
||||||
comicsView->close();
|
comicsViewsManager->comicsView->close();
|
||||||
sideBar->close();
|
sideBar->close();
|
||||||
|
|
||||||
QApplication::instance()->processEvents();
|
QApplication::instance()->processEvents();
|
||||||
@ -2534,14 +2375,14 @@ QModelIndexList LibraryWindow::getSelectedComics()
|
|||||||
{
|
{
|
||||||
//se fuerza a que haya almenos una fila seleccionada TODO comprobar se se puede forzar a la tabla a que lo haga automáticamente
|
//se fuerza a que haya almenos una fila seleccionada TODO comprobar se se puede forzar a la tabla a que lo haga automáticamente
|
||||||
//avoid selection.count()==0 forcing selection in comicsView
|
//avoid selection.count()==0 forcing selection in comicsView
|
||||||
QModelIndexList selection = comicsView->selectionModel()->selectedRows();
|
QModelIndexList selection = comicsViewsManager->comicsView->selectionModel()->selectedRows();
|
||||||
QLOG_TRACE() << "selection count " << selection.length();
|
QLOG_TRACE() << "selection count " << selection.length();
|
||||||
qSort(selection.begin(),selection.end(),lessThanModelIndexRow);
|
qSort(selection.begin(),selection.end(),lessThanModelIndexRow);
|
||||||
|
|
||||||
if(selection.count()==0)
|
if(selection.count()==0)
|
||||||
{
|
{
|
||||||
comicsView->selectIndex(0);
|
comicsViewsManager->comicsView->selectIndex(0);
|
||||||
selection = comicsView->selectionModel()->selectedRows();
|
selection = comicsViewsManager->comicsView->selectionModel()->selectedRows();
|
||||||
}
|
}
|
||||||
return selection;
|
return selection;
|
||||||
}
|
}
|
||||||
|
@ -71,6 +71,7 @@ class YACReaderHistoryController;
|
|||||||
class EmptyLabelWidget;
|
class EmptyLabelWidget;
|
||||||
class EmptySpecialListWidget;
|
class EmptySpecialListWidget;
|
||||||
class EmptyReadingListWidget;
|
class EmptyReadingListWidget;
|
||||||
|
class YACReaderComicsViewsManager;
|
||||||
|
|
||||||
#include "comic_db.h"
|
#include "comic_db.h"
|
||||||
|
|
||||||
@ -81,7 +82,7 @@ class LibraryWindow : public QMainWindow
|
|||||||
friend class YACReaderNavigationController;
|
friend class YACReaderNavigationController;
|
||||||
|
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
private:
|
public:
|
||||||
YACReaderSideBar * sideBar;
|
YACReaderSideBar * sideBar;
|
||||||
|
|
||||||
CreateLibraryDialog * createLibraryDialog;
|
CreateLibraryDialog * createLibraryDialog;
|
||||||
@ -117,17 +118,7 @@ private:
|
|||||||
//-------------
|
//-------------
|
||||||
|
|
||||||
YACReaderNavigationController * navigationController;
|
YACReaderNavigationController * navigationController;
|
||||||
|
YACReaderComicsViewsManager * comicsViewsManager;
|
||||||
ComicsView * comicsView;
|
|
||||||
ClassicComicsView * classicComicsView;
|
|
||||||
GridComicsView * gridComicsView;
|
|
||||||
QStackedWidget * comicsViewStack;
|
|
||||||
ComicsViewTransition * comicsViewTransition;
|
|
||||||
EmptyFolderWidget * emptyFolderWidget;
|
|
||||||
EmptyLabelWidget * emptyLabelWidget;
|
|
||||||
EmptySpecialListWidget * emptySpecialList;
|
|
||||||
EmptyReadingListWidget * emptyReadingList;
|
|
||||||
NoSearchResultsWidget * noSearchResultsWidget;
|
|
||||||
|
|
||||||
YACReaderFoldersView * foldersView;
|
YACReaderFoldersView * foldersView;
|
||||||
YACReaderReadingListsView * listsView;
|
YACReaderReadingListsView * listsView;
|
||||||
@ -261,9 +252,6 @@ private:
|
|||||||
void doDialogs();
|
void doDialogs();
|
||||||
void setUpShortcutsManagement();
|
void setUpShortcutsManagement();
|
||||||
void doModels();
|
void doModels();
|
||||||
void disconnectComicsViewConnections(ComicsView * widget);
|
|
||||||
void doComicsViewConnections();
|
|
||||||
|
|
||||||
|
|
||||||
//ACTIONS MANAGEMENT
|
//ACTIONS MANAGEMENT
|
||||||
void disableComicsActions(bool disabled);
|
void disableComicsActions(bool disabled);
|
||||||
@ -287,8 +275,6 @@ private:
|
|||||||
|
|
||||||
bool removeError;
|
bool removeError;
|
||||||
|
|
||||||
ComicsViewStatus comicsViewStatus;
|
|
||||||
|
|
||||||
//QTBUG-41883
|
//QTBUG-41883
|
||||||
QSize _size;
|
QSize _size;
|
||||||
QPoint _pos;
|
QPoint _pos;
|
||||||
@ -361,16 +347,6 @@ public slots:
|
|||||||
void setRemoveError();
|
void setRemoveError();
|
||||||
void checkRemoveError();
|
void checkRemoveError();
|
||||||
void resetComicRating();
|
void resetComicRating();
|
||||||
void switchToComicsView(ComicsView *from, ComicsView *to);
|
|
||||||
void showComicsViewTransition();
|
|
||||||
void toggleComicsView_delayed();//used in orther to avoid flickering;
|
|
||||||
void showComicsView();
|
|
||||||
void showEmptyFolderView();
|
|
||||||
void showEmptyLabelView();
|
|
||||||
void showEmptySpecialList();
|
|
||||||
void showEmptyReadingListWidget();
|
|
||||||
void showNoSearchResultsView();
|
|
||||||
void toggleComicsView();
|
|
||||||
void checkSearchNumResults(int numResults);
|
void checkSearchNumResults(int numResults);
|
||||||
void loadCoversFromCurrentModel();
|
void loadCoversFromCurrentModel();
|
||||||
void copyAndImportComicsToCurrentFolder(const QList<QPair<QString,QString> > & comics);
|
void copyAndImportComicsToCurrentFolder(const QList<QPair<QString,QString> > & comics);
|
||||||
@ -399,7 +375,6 @@ public slots:
|
|||||||
void onAddComicsToLabel();
|
void onAddComicsToLabel();
|
||||||
void setToolbarTitle(const QModelIndex & modelIndex);
|
void setToolbarTitle(const QModelIndex & modelIndex);
|
||||||
void saveSelectedCoversTo();
|
void saveSelectedCoversTo();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -6,5 +6,23 @@
|
|||||||
<file>qml/reading.png</file>
|
<file>qml/reading.png</file>
|
||||||
<file>qml/star_menu.png</file>
|
<file>qml/star_menu.png</file>
|
||||||
<file>qml/star_menu@2x.png</file>
|
<file>qml/star_menu@2x.png</file>
|
||||||
|
<file>qml/InfoComicsView.qml</file>
|
||||||
|
<file>qml/FlowView.qml</file>
|
||||||
|
<file>qml/info-indicator.png</file>
|
||||||
|
<file>qml/info-shadow.png</file>
|
||||||
|
<file>qml/info-top-shadow.png</file>
|
||||||
|
<file>qml/ComicInfo.qml</file>
|
||||||
|
<file>qml/info-favorites.png</file>
|
||||||
|
<file>qml/info-favorites@2x.png</file>
|
||||||
|
<file>qml/info-rating.png</file>
|
||||||
|
<file>qml/info-rating@2x.png</file>
|
||||||
|
<file>qml/info-tag.png</file>
|
||||||
|
<file>qml/info-tag@2x.png</file>
|
||||||
|
<file>qml/info-tick.png</file>
|
||||||
|
<file>qml/info-tick@2x.png</file>
|
||||||
|
<file>qml/InfoTick.qml</file>
|
||||||
|
<file>qml/InfoFavorites.qml</file>
|
||||||
|
<file>qml/InfoRating.qml</file>
|
||||||
|
<file>qml/YACReaderScrollViewStyle.qml</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
528
YACReaderLibrary/qml/ComicInfo.qml
Normal file
@ -0,0 +1,528 @@
|
|||||||
|
import QtQuick 2.6
|
||||||
|
|
||||||
|
import QtQuick.Controls 1.4
|
||||||
|
import QtQuick.Layouts 1.2
|
||||||
|
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
|
|
||||||
|
import com.yacreader.ComicInfo 1.0
|
||||||
|
import com.yacreader.ComicDB 1.0
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
|
||||||
|
color : "transparent"
|
||||||
|
id: mainContainer
|
||||||
|
|
||||||
|
height: info.height + 2 * topMargin
|
||||||
|
|
||||||
|
property string infoColor: "#b0b0b0"
|
||||||
|
property font infoFont: Qt.font({
|
||||||
|
|
||||||
|
family: "Arial",
|
||||||
|
pixelSize: 14
|
||||||
|
});
|
||||||
|
|
||||||
|
property int topMargin : 27
|
||||||
|
|
||||||
|
property bool compact : width <= 650
|
||||||
|
|
||||||
|
RowLayout
|
||||||
|
{
|
||||||
|
id:main_layout
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
//READ------------------------------------------------------------
|
||||||
|
ColumnLayout
|
||||||
|
{
|
||||||
|
Layout.topMargin: topMargin
|
||||||
|
Layout.maximumWidth: 61
|
||||||
|
Layout.fillHeight: true
|
||||||
|
id: readStatus
|
||||||
|
|
||||||
|
Layout.alignment: Qt.AlignTop |
|
||||||
|
Qt.AlignHCenter
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
color: "transparent"
|
||||||
|
width: 61
|
||||||
|
height: 24
|
||||||
|
|
||||||
|
InfoTick {
|
||||||
|
x: 27
|
||||||
|
y: 5
|
||||||
|
|
||||||
|
read: comicInfo.read
|
||||||
|
|
||||||
|
onReadChangedByUser: {
|
||||||
|
comicInfo.read = read;
|
||||||
|
comicInfoHelper.setRead(comic_info_index, read);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
visible: !mainContainer.compact
|
||||||
|
}
|
||||||
|
|
||||||
|
//INFO------------------------------------------------------------
|
||||||
|
ColumnLayout
|
||||||
|
{
|
||||||
|
id: info
|
||||||
|
//width: parent.width
|
||||||
|
//Layout.fillWidth: true
|
||||||
|
|
||||||
|
Layout.alignment: Qt.AlignTop |
|
||||||
|
Qt.AlignLeft
|
||||||
|
|
||||||
|
Layout.maximumWidth: mainContainer.compact ? mainContainer.width : 960
|
||||||
|
|
||||||
|
Layout.leftMargin: mainContainer.compact ? 30 : 0
|
||||||
|
|
||||||
|
RowLayout
|
||||||
|
{
|
||||||
|
Layout.topMargin: topMargin
|
||||||
|
|
||||||
|
InfoTick {
|
||||||
|
Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
|
||||||
|
|
||||||
|
read: comicInfo.read
|
||||||
|
|
||||||
|
onReadChangedByUser: {
|
||||||
|
comicInfo.read = read;
|
||||||
|
comicInfoHelper.setRead(comic_info_index, read);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
}
|
||||||
|
|
||||||
|
InfoFavorites {
|
||||||
|
Layout.topMargin: 1
|
||||||
|
Layout.rightMargin: 17
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
|
||||||
|
active: comicInfo.isFavorite
|
||||||
|
|
||||||
|
onActiveChangedByUser: {
|
||||||
|
if(active)
|
||||||
|
comicInfoHelper.addToFavorites(comic_info_index);
|
||||||
|
else
|
||||||
|
comicInfoHelper.removeFromFavorites(comic_info_index);
|
||||||
|
|
||||||
|
comicInfo.isFavorite = active;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
InfoRating {
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
Layout.rightMargin: 30
|
||||||
|
rating: comicInfo.rating
|
||||||
|
|
||||||
|
onRatingChangedByUser: {
|
||||||
|
comicInfo.rating = rating;
|
||||||
|
comicInfoHelper.rate(comic_info_index, rating);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
visible: mainContainer.compact
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout
|
||||||
|
{
|
||||||
|
Text {
|
||||||
|
Layout.topMargin: mainContainer.compact ? 18 : topMargin
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.rightMargin: mainContainer.compact ? 30 : 0
|
||||||
|
|
||||||
|
id: title
|
||||||
|
|
||||||
|
color: "#ffffff"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.bold: true
|
||||||
|
font.pixelSize: mainContainer.compact ? 18 : 21;
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
|
||||||
|
text: comic.getTitleIncludingNumber()
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout
|
||||||
|
{
|
||||||
|
visible: !mainContainer.compact
|
||||||
|
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
Layout.topMargin: topMargin
|
||||||
|
|
||||||
|
InfoFavorites {
|
||||||
|
Layout.topMargin: 1
|
||||||
|
Layout.rightMargin: 17
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
|
||||||
|
active: comicInfo.isFavorite
|
||||||
|
|
||||||
|
onActiveChangedByUser: {
|
||||||
|
if(active)
|
||||||
|
comicInfoHelper.addToFavorites(comic_info_index);
|
||||||
|
else
|
||||||
|
comicInfoHelper.removeFromFavorites(comic_info_index);
|
||||||
|
|
||||||
|
comicInfo.isFavorite = active;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
InfoRating {
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
Layout.rightMargin: 30
|
||||||
|
rating: comicInfo.rating
|
||||||
|
|
||||||
|
onRatingChangedByUser: {
|
||||||
|
comicInfo.rating = rating;
|
||||||
|
comicInfoHelper.rate(comic_info_index, rating);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Flow {
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Text {
|
||||||
|
id: volume
|
||||||
|
color: infoColor
|
||||||
|
font: mainContainer.infoFont
|
||||||
|
text: comicInfo.volume
|
||||||
|
rightPadding: 20
|
||||||
|
visible: comicInfo.volume
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: numbering
|
||||||
|
color: infoColor
|
||||||
|
font: mainContainer.infoFont
|
||||||
|
text: comicInfo.number + "/" + comicInfo.count
|
||||||
|
rightPadding: 20
|
||||||
|
visible : comicInfo.number
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: genre
|
||||||
|
color: infoColor
|
||||||
|
font: mainContainer.infoFont
|
||||||
|
text: comicInfo.genere
|
||||||
|
rightPadding: 20
|
||||||
|
visible: comicInfo.genere
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: date
|
||||||
|
color: infoColor
|
||||||
|
font: mainContainer.infoFont
|
||||||
|
text: comicInfo.date
|
||||||
|
rightPadding: 20
|
||||||
|
visible: comicInfo.date
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: pages
|
||||||
|
color: infoColor
|
||||||
|
font: mainContainer.infoFont
|
||||||
|
text: comicInfo.numPages + " pages"
|
||||||
|
rightPadding: 20
|
||||||
|
visible: comicInfo.numPages
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: showInComicVinw
|
||||||
|
font: mainContainer.infoFont
|
||||||
|
color: "#ffcc00"
|
||||||
|
text: "Show in Comic Vine"
|
||||||
|
visible: comicInfo.comicVineID
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: {
|
||||||
|
Qt.openUrlExternally("http://www.comicvine.com/comic/4000-%1/".arg(comicInfo.comicVineID));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
Layout.topMargin: 22
|
||||||
|
Layout.rightMargin: 30
|
||||||
|
Layout.bottomMargin: 5
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
id: sinopsis
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
horizontalAlignment: Text.AlignJustify
|
||||||
|
text: comicInfo.synopsis
|
||||||
|
visible: comicInfo.synopsis
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
Layout.topMargin: 25
|
||||||
|
Layout.bottomMargin: 5
|
||||||
|
|
||||||
|
id: authors_title
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 18
|
||||||
|
font.bold: true
|
||||||
|
|
||||||
|
text: "Authors"
|
||||||
|
|
||||||
|
visible: comicInfo.getWriters().length +
|
||||||
|
comicInfo.getPencillers().length +
|
||||||
|
comicInfo.getInkers().length +
|
||||||
|
comicInfo.getColorists().length +
|
||||||
|
comicInfo.getLetterers().length +
|
||||||
|
comicInfo.getCoverArtists().length > 0
|
||||||
|
}
|
||||||
|
|
||||||
|
Flow {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
spacing: 20
|
||||||
|
Repeater {
|
||||||
|
id: writers
|
||||||
|
model: comicInfo.getWriters().length
|
||||||
|
Column{
|
||||||
|
Text {
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.getWriters()[index]
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
color: "#b0b0b0"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 13
|
||||||
|
font.italic: true
|
||||||
|
text: "writer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: pencilllers
|
||||||
|
model: comicInfo.getPencillers().length
|
||||||
|
Column{
|
||||||
|
Text {
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.getPencillers()[index]
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
color: "#b0b0b0"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 13
|
||||||
|
font.italic: true
|
||||||
|
text: "penciller"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: inkers
|
||||||
|
model: comicInfo.getInkers().length
|
||||||
|
Column{
|
||||||
|
Text {
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.getInkers()[index]
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
color: "#b0b0b0"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 13
|
||||||
|
font.italic: true
|
||||||
|
text: "inker"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: colorist
|
||||||
|
model: comicInfo.getColorists().length
|
||||||
|
Column{
|
||||||
|
Text {
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.getColorists()[index]
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
color: "#b0b0b0"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 13
|
||||||
|
font.italic: true
|
||||||
|
text: "colorist"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: letterers
|
||||||
|
model: comicInfo.getLetterers().length
|
||||||
|
Column{
|
||||||
|
Text {
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.getLetterers()[index]
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
color: "#b0b0b0"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 13
|
||||||
|
font.italic: true
|
||||||
|
text: "letterer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: cover_artist
|
||||||
|
model: comicInfo.getCoverArtists().length
|
||||||
|
Column{
|
||||||
|
Text {
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.getCoverArtists()[index]
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
color: "#b0b0b0"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 13
|
||||||
|
font.italic: true
|
||||||
|
text: "cover artist"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
Layout.topMargin: 25
|
||||||
|
|
||||||
|
id: publisher_title
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 18
|
||||||
|
font.bold: true
|
||||||
|
|
||||||
|
text: "Publisher"
|
||||||
|
|
||||||
|
visible: publisher.visible || format.visible || color.visible || age_rating.visible
|
||||||
|
}
|
||||||
|
|
||||||
|
Flow {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
spacing: 20
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: publisher
|
||||||
|
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.publisher
|
||||||
|
|
||||||
|
visible: comicInfo.publisher
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: format
|
||||||
|
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.format
|
||||||
|
|
||||||
|
visible: comicInfo.format
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: color
|
||||||
|
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.color ? "color" : "b/w"
|
||||||
|
|
||||||
|
visible: comicInfo.color
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: age_rating
|
||||||
|
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.ageRating
|
||||||
|
|
||||||
|
visible: comicInfo.ageRating
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
Layout.topMargin: 25
|
||||||
|
Layout.bottomMargin: 5
|
||||||
|
|
||||||
|
id: characters_title
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 18
|
||||||
|
font.bold: true
|
||||||
|
|
||||||
|
text: "Characters"
|
||||||
|
|
||||||
|
visible: comicInfo.getCharacters().length > 0
|
||||||
|
}
|
||||||
|
|
||||||
|
Flow {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
spacing: 20
|
||||||
|
Repeater {
|
||||||
|
id: characters
|
||||||
|
model: comicInfo.getCharacters().length
|
||||||
|
|
||||||
|
Text {
|
||||||
|
color: "white"
|
||||||
|
font.family: "Arial"
|
||||||
|
font.pixelSize: 15
|
||||||
|
|
||||||
|
text: comicInfo.getCharacters()[index]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.fillHeight: true
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.minimumWidth: 0
|
||||||
|
Layout.preferredWidth: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
211
YACReaderLibrary/qml/FlowView.qml
Normal file
@ -0,0 +1,211 @@
|
|||||||
|
import QtQuick 2.3
|
||||||
|
import QtQuick.Controls 1.4
|
||||||
|
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
|
|
||||||
|
import com.yacreader.ComicModel 1.0
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: main
|
||||||
|
|
||||||
|
property url backgroundImageURL;
|
||||||
|
|
||||||
|
property real backgroundBlurRadius : 100; //85;
|
||||||
|
property real backgroundBlurOpacity : 0.25; //0.35;
|
||||||
|
property bool backgroundBlurVisible : true;
|
||||||
|
|
||||||
|
property real additionalBottomSpace : 0;
|
||||||
|
|
||||||
|
property real verticalPadding: 12
|
||||||
|
|
||||||
|
property real itemsSpacing: 17
|
||||||
|
|
||||||
|
signal currentCoverChanged(int index)
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: background
|
||||||
|
color: "#2A2A2A"
|
||||||
|
anchors.fill: backgroundImg
|
||||||
|
}
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: backgroundImg
|
||||||
|
width: parent.width
|
||||||
|
height: parent.height + additionalBottomSpace
|
||||||
|
source: backgroundImage
|
||||||
|
fillMode: Image.PreserveAspectCrop
|
||||||
|
smooth: true
|
||||||
|
mipmap: true
|
||||||
|
asynchronous : true
|
||||||
|
cache: false //TODO clear cache only when it is needed
|
||||||
|
opacity: 0
|
||||||
|
visible: false
|
||||||
|
}
|
||||||
|
|
||||||
|
FastBlur {
|
||||||
|
anchors.fill: backgroundImg
|
||||||
|
source: backgroundImg
|
||||||
|
radius: backgroundBlurRadius
|
||||||
|
opacity: backgroundBlurOpacity
|
||||||
|
visible: backgroundBlurVisible
|
||||||
|
}
|
||||||
|
|
||||||
|
anchors.margins: 0
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill : list
|
||||||
|
onWheel: {
|
||||||
|
|
||||||
|
if(list.moving)
|
||||||
|
return;
|
||||||
|
|
||||||
|
var ci
|
||||||
|
if(wheel.angleDelta.y < 0) {
|
||||||
|
ci = Math.min(list.currentIndex+1, list.count - 1);
|
||||||
|
}
|
||||||
|
else if(wheel.angleDelta.y > 0) {
|
||||||
|
ci = Math.max(0,list.currentIndex-1);
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
list.currentIndex = ci;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ListView {
|
||||||
|
id: list
|
||||||
|
objectName: "list"
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
property int previousIndex;
|
||||||
|
|
||||||
|
orientation: Qt.Horizontal
|
||||||
|
pixelAligned: true
|
||||||
|
|
||||||
|
model: comicsList
|
||||||
|
|
||||||
|
spacing: itemsSpacing
|
||||||
|
anchors.leftMargin: Math.floor(verticalPadding * 1.1)
|
||||||
|
|
||||||
|
snapMode: ListView.SnapToItem
|
||||||
|
|
||||||
|
highlightFollowsCurrentItem: true
|
||||||
|
highlightRangeMode: ListView.StrictlyEnforceRange
|
||||||
|
preferredHighlightEnd: 50
|
||||||
|
|
||||||
|
highlightMoveDuration: 250
|
||||||
|
|
||||||
|
onCurrentIndexChanged: {
|
||||||
|
currentCoverChanged(currentIndex);
|
||||||
|
}
|
||||||
|
|
||||||
|
delegate: Component {
|
||||||
|
|
||||||
|
//cover
|
||||||
|
Rectangle {
|
||||||
|
width: Math.floor((list.height - (verticalPadding * 2)) * 0.65);
|
||||||
|
height: list.height - (verticalPadding * 2);
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
|
||||||
|
color:"transparent"
|
||||||
|
|
||||||
|
BusyIndicator {
|
||||||
|
scale: 0.5
|
||||||
|
anchors.centerIn: parent
|
||||||
|
running: coverElement.status === Image.Loading
|
||||||
|
}
|
||||||
|
|
||||||
|
DropShadow {
|
||||||
|
anchors.fill: coverElement
|
||||||
|
horizontalOffset: 0
|
||||||
|
verticalOffset: 0
|
||||||
|
radius: 6
|
||||||
|
samples: 17
|
||||||
|
color: "#BB000000"
|
||||||
|
source: coverElement
|
||||||
|
visible: (Qt.platform.os === "osx") ? false : true;
|
||||||
|
}
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: coverElement
|
||||||
|
anchors.fill: parent
|
||||||
|
source: cover_path
|
||||||
|
fillMode: Image.PreserveAspectCrop
|
||||||
|
smooth: true
|
||||||
|
mipmap: true
|
||||||
|
asynchronous : true
|
||||||
|
cache: false
|
||||||
|
}
|
||||||
|
|
||||||
|
//mark
|
||||||
|
Image {
|
||||||
|
id: mark
|
||||||
|
width: 23
|
||||||
|
height: 23
|
||||||
|
source: read_column&&show_marks?"tick.png":has_been_opened&&show_marks?"reading.png":""
|
||||||
|
anchors {right: coverElement.right; top: coverElement.top; topMargin: 9; rightMargin: 9}
|
||||||
|
asynchronous : true
|
||||||
|
}
|
||||||
|
|
||||||
|
//border
|
||||||
|
Rectangle {
|
||||||
|
width: coverElement.width
|
||||||
|
height: coverElement.height
|
||||||
|
anchors.centerIn: coverElement
|
||||||
|
color: "transparent"
|
||||||
|
border {
|
||||||
|
color: "#30FFFFFF"
|
||||||
|
width: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: mouseArea
|
||||||
|
anchors.fill: parent
|
||||||
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||||
|
|
||||||
|
hoverEnabled: true
|
||||||
|
|
||||||
|
onDoubleClicked: {
|
||||||
|
list.currentIndex = index;
|
||||||
|
currentIndexHelper.selectedItem(index);
|
||||||
|
}
|
||||||
|
|
||||||
|
onReleased: {
|
||||||
|
list.currentIndex = index;
|
||||||
|
|
||||||
|
if(mouse.button === Qt.RightButton) // context menu is requested
|
||||||
|
{
|
||||||
|
var coordinates = main.mapFromItem(coverElement,mouseX,mouseY)
|
||||||
|
contextMenuHelper.requestedContextMenu(Qt.point(coordinates.x,coordinates.y));
|
||||||
|
}
|
||||||
|
|
||||||
|
mouse.accepted = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
focus: true
|
||||||
|
Keys.onPressed: {
|
||||||
|
|
||||||
|
if (event.modifiers & Qt.ControlModifier || event.modifiers & Qt.ShiftModifier)
|
||||||
|
return;
|
||||||
|
var ci
|
||||||
|
if (event.key === Qt.Key_Right) {
|
||||||
|
ci = Math.min(list.currentIndex+1, list.count - 1);
|
||||||
|
}
|
||||||
|
else if (event.key === Qt.Key_Left) {
|
||||||
|
ci = Math.max(0,list.currentIndex-1);
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
list.currentIndex = ci;
|
||||||
|
|
||||||
|
event.accepted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -1,8 +1,21 @@
|
|||||||
import QtQuick 2.3
|
import QtQuick 2.3
|
||||||
|
|
||||||
import QtQuick.Controls 1.2
|
import QtQuick.Controls 1.4
|
||||||
import comicModel 1.0
|
import QtQuick.Layouts 1.2
|
||||||
|
|
||||||
import QtGraphicalEffects 1.0
|
import QtGraphicalEffects 1.0
|
||||||
|
import QtQuick.Controls.Styles 1.4
|
||||||
|
|
||||||
|
import com.yacreader.ComicModel 1.0
|
||||||
|
|
||||||
|
SplitView {
|
||||||
|
anchors.fill: parent
|
||||||
|
orientation: Qt.Horizontal
|
||||||
|
handleDelegate:Rectangle {
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
color: "#202020"
|
||||||
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: main
|
id: main
|
||||||
@ -30,18 +43,12 @@ Rectangle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
color: backgroundColor
|
color: backgroundColor
|
||||||
width: parent.width
|
width: parent.width - (info_container.visible ? info_container.width : 0)
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.minimumWidth: coverWidth + 100
|
||||||
height: parent.height
|
height: parent.height
|
||||||
anchors.margins: 0
|
anchors.margins: 0
|
||||||
|
|
||||||
function selectAll(from,to)
|
|
||||||
{
|
|
||||||
for(var i = from;i<=to;i++)
|
|
||||||
{
|
|
||||||
comicsSelectionHelper.selectIndex(i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
Component {
|
||||||
id: appDelegate
|
id: appDelegate
|
||||||
Rectangle
|
Rectangle
|
||||||
@ -121,7 +128,13 @@ Rectangle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
border.color: (Qt.platform.os === "osx") ? selectedBorderColor : "#ffcc00"
|
border.color: (Qt.platform.os === "osx") ? selectedBorderColor : "#ffcc00"
|
||||||
border.width: (dummyValue || !dummyValue) && (comicsSelectionHelper.isSelectedIndex(index) || mouseArea.containsMouse) ? 3 : 0
|
border.width: 3
|
||||||
|
|
||||||
|
opacity: (dummyValue || !dummyValue) && (comicsSelectionHelper.isSelectedIndex(index) || mouseArea.containsMouse) ? 1 : 0
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
NumberAnimation { duration: 300 }
|
||||||
|
}
|
||||||
|
|
||||||
radius : 2
|
radius : 2
|
||||||
}
|
}
|
||||||
@ -146,7 +159,15 @@ Rectangle {
|
|||||||
|
|
||||||
comicsSelectionHelper.selectIndex(index);
|
comicsSelectionHelper.selectIndex(index);
|
||||||
grid.currentIndex = index;
|
grid.currentIndex = index;
|
||||||
comicsSelectionHelper.selectedItem(index);
|
currentIndexHelper.selectedItem(index);
|
||||||
|
}
|
||||||
|
|
||||||
|
function selectAll(from,to)
|
||||||
|
{
|
||||||
|
for(var i = from;i<=to;i++)
|
||||||
|
{
|
||||||
|
comicsSelectionHelper.selectIndex(i);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onPressed: {
|
onPressed: {
|
||||||
@ -177,7 +198,7 @@ Rectangle {
|
|||||||
{
|
{
|
||||||
if(!comicsSelectionHelper.isSelectedIndex(index)) //the context menu is requested outside the current selection, the selection will be
|
if(!comicsSelectionHelper.isSelectedIndex(index)) //the context menu is requested outside the current selection, the selection will be
|
||||||
{
|
{
|
||||||
comicsSelectionHelper.setCurrentIndex(index)
|
currentIndexHelper.setCurrentIndex(index)
|
||||||
grid.currentIndex = index;
|
grid.currentIndex = index;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -214,7 +235,7 @@ Rectangle {
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
comicsSelectionHelper.setCurrentIndex(index)
|
currentIndexHelper.setCurrentIndex(index)
|
||||||
}
|
}
|
||||||
|
|
||||||
grid.currentIndex = index;
|
grid.currentIndex = index;
|
||||||
@ -228,7 +249,7 @@ Rectangle {
|
|||||||
{
|
{
|
||||||
if(comicsSelectionHelper.isSelectedIndex(index))
|
if(comicsSelectionHelper.isSelectedIndex(index))
|
||||||
{
|
{
|
||||||
comicsSelectionHelper.setCurrentIndex(index)
|
currentIndexHelper.setCurrentIndex(index)
|
||||||
grid.currentIndex = index;
|
grid.currentIndex = index;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -369,33 +390,49 @@ Rectangle {
|
|||||||
id: scrollView
|
id: scrollView
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 0
|
anchors.margins: 0
|
||||||
//QTBUG-39453
|
|
||||||
//Another fu%$·#& bug in Qt
|
style: YACReaderScrollViewStyle {
|
||||||
//https://bugreports.qt.io/browse/QTBUG-39453
|
transientScrollBars: false
|
||||||
//To solve this I am going to accept any input drag, drops will be filtered in "onDropped"
|
incrementControl: Item {}
|
||||||
|
decrementControl: Item {}
|
||||||
|
handle: Item {
|
||||||
|
implicitWidth: 16
|
||||||
|
implicitHeight: 26
|
||||||
|
Rectangle {
|
||||||
|
color: "#88424242"
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.topMargin: 6
|
||||||
|
anchors.leftMargin: 4
|
||||||
|
anchors.rightMargin: 4
|
||||||
|
anchors.bottomMargin: 6
|
||||||
|
border.color: "#AA313131"
|
||||||
|
border.width: 1
|
||||||
|
radius: 8
|
||||||
|
}
|
||||||
|
}
|
||||||
|
scrollBarBackground: Item {
|
||||||
|
implicitWidth: 16
|
||||||
|
implicitHeight: 26
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
DropArea {
|
DropArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
/*
|
|
||||||
onEntered: {
|
onEntered: {
|
||||||
console.log("onEntered");
|
|
||||||
if(drag.hasUrls)
|
if(drag.hasUrls)
|
||||||
{
|
{
|
||||||
console.log("HAS URLS -> ", drag.urls);
|
|
||||||
if(dropManager.canDropUrls(drag.urls, drag.action))
|
if(dropManager.canDropUrls(drag.urls, drag.action))
|
||||||
{
|
{
|
||||||
drag.accepted = true;
|
drag.accepted = true;
|
||||||
console.log("canDropUrls");
|
|
||||||
}else
|
}else
|
||||||
drag.accepted = false;
|
drag.accepted = false;
|
||||||
}
|
}
|
||||||
else if (dropManager.canDropFormats(drag.formats)) {
|
else if (dropManager.canDropFormats(drag.formats)) {
|
||||||
drag.accepted = true;
|
drag.accepted = true;
|
||||||
console.log("canDropFormats");
|
|
||||||
} else
|
} else
|
||||||
drag.accepted = false;
|
drag.accepted = false;
|
||||||
}*/
|
}
|
||||||
|
|
||||||
|
|
||||||
onDropped: {
|
onDropped: {
|
||||||
if(drop.hasUrls && dropManager.canDropUrls(drop.urls, drop.action))
|
if(drop.hasUrls && dropManager.canDropUrls(drop.urls, drop.action))
|
||||||
@ -434,7 +471,7 @@ Rectangle {
|
|||||||
anchors.rightMargin: 10
|
anchors.rightMargin: 10
|
||||||
pixelAligned: true
|
pixelAligned: true
|
||||||
//flickDeceleration: -2000
|
//flickDeceleration: -2000
|
||||||
snapMode: GridView.SnapToRow
|
|
||||||
currentIndex: 0
|
currentIndex: 0
|
||||||
cacheBuffer: 0
|
cacheBuffer: 0
|
||||||
|
|
||||||
@ -494,7 +531,7 @@ Rectangle {
|
|||||||
var numCells = grid.numCellsPerRow();
|
var numCells = grid.numCellsPerRow();
|
||||||
var ci
|
var ci
|
||||||
if (event.key === Qt.Key_Right) {
|
if (event.key === Qt.Key_Right) {
|
||||||
ci = Math.min(grid.currentIndex+1,grid.count);
|
ci = Math.min(grid.currentIndex+1,grid.count - 1);
|
||||||
}
|
}
|
||||||
else if (event.key === Qt.Key_Left) {
|
else if (event.key === Qt.Key_Left) {
|
||||||
ci = Math.max(0,grid.currentIndex-1);
|
ci = Math.max(0,grid.currentIndex-1);
|
||||||
@ -503,14 +540,14 @@ Rectangle {
|
|||||||
ci = Math.max(0,grid.currentIndex-numCells);
|
ci = Math.max(0,grid.currentIndex-numCells);
|
||||||
}
|
}
|
||||||
else if (event.key === Qt.Key_Down) {
|
else if (event.key === Qt.Key_Down) {
|
||||||
ci = Math.min(grid.currentIndex+numCells,grid.count);
|
ci = Math.min(grid.currentIndex+numCells,grid.count - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
//var ci = grid.currentIndex;
|
//var ci = grid.currentIndex;
|
||||||
grid.currentIndex = -1
|
grid.currentIndex = -1
|
||||||
comicsSelectionHelper.clear();
|
comicsSelectionHelper.clear();
|
||||||
comicsSelectionHelper.setCurrentIndex(ci);
|
currentIndexHelper.setCurrentIndex(ci);
|
||||||
grid.currentIndex = ci;
|
grid.currentIndex = ci;
|
||||||
}
|
}
|
||||||
//}
|
//}
|
||||||
@ -539,7 +576,55 @@ Rectangle {
|
|||||||
height: 64
|
height: 64
|
||||||
enabled: (dummyValue || !dummyValue)
|
enabled: (dummyValue || !dummyValue)
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Rectangle {
|
||||||
|
id: info_container
|
||||||
|
objectName: "infoContainer"
|
||||||
|
Layout.preferredWidth: 350
|
||||||
|
Layout.minimumWidth: 350
|
||||||
|
Layout.maximumWidth: 960
|
||||||
|
height: parent.height
|
||||||
|
|
||||||
|
color: "#2e2e2e"
|
||||||
|
|
||||||
|
visible: showInfo
|
||||||
|
|
||||||
|
ScrollView {
|
||||||
|
__wheelAreaScrollSpeed: 75
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: 0
|
||||||
|
|
||||||
|
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
|
||||||
|
|
||||||
|
style: ScrollViewStyle {
|
||||||
|
transientScrollBars: false
|
||||||
|
incrementControl: Item {}
|
||||||
|
decrementControl: Item {}
|
||||||
|
handle: Item {
|
||||||
|
implicitWidth: 10
|
||||||
|
implicitHeight: 26
|
||||||
|
Rectangle {
|
||||||
|
color: "#424246"
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.topMargin: 6
|
||||||
|
anchors.leftMargin: 4
|
||||||
|
anchors.rightMargin: 4
|
||||||
|
anchors.bottomMargin: 6
|
||||||
|
}
|
||||||
|
}
|
||||||
|
scrollBarBackground: Item {
|
||||||
|
implicitWidth: 14
|
||||||
|
implicitHeight: 26
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ComicInfo {
|
||||||
|
width: info_container.width
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
121
YACReaderLibrary/qml/InfoComicsView.qml
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
import QtQuick 2.5
|
||||||
|
|
||||||
|
import QtQuick.Controls 1.2
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
|
import QtQuick.Controls.Styles 1.4
|
||||||
|
|
||||||
|
import com.yacreader.ComicModel 1.0
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: main
|
||||||
|
|
||||||
|
color: "#2e2e2e"
|
||||||
|
|
||||||
|
width: parent.width
|
||||||
|
height: parent.height
|
||||||
|
anchors.margins: 0
|
||||||
|
|
||||||
|
FlowView {
|
||||||
|
id: flow
|
||||||
|
objectName: "flow"
|
||||||
|
height: 256 //TODO dynamic size?
|
||||||
|
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
|
||||||
|
additionalBottomSpace: indicator.height
|
||||||
|
}
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: top_shadow
|
||||||
|
source: "info-top-shadow.png"
|
||||||
|
width: parent.width
|
||||||
|
fillMode: Image.TileHorizontally
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: indicator_container
|
||||||
|
width: parent.width
|
||||||
|
y: 250
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: indicator
|
||||||
|
source: "info-indicator.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: bottom_shadow
|
||||||
|
x: indicator.width
|
||||||
|
width: parent.width - indicator.width
|
||||||
|
source: "info-shadow.png"
|
||||||
|
fillMode: Image.TileHorizontally
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: info_container
|
||||||
|
width: parent.width
|
||||||
|
y: flow.height + flow.additionalBottomSpace - 6
|
||||||
|
height: parent.height - y
|
||||||
|
|
||||||
|
color: "#2e2e2e"
|
||||||
|
|
||||||
|
ScrollView {
|
||||||
|
__wheelAreaScrollSpeed: 75
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: 0
|
||||||
|
|
||||||
|
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
|
||||||
|
|
||||||
|
style: ScrollViewStyle {
|
||||||
|
transientScrollBars: false
|
||||||
|
incrementControl: Item {}
|
||||||
|
decrementControl: Item {}
|
||||||
|
handle: Item {
|
||||||
|
implicitWidth: 10
|
||||||
|
implicitHeight: 26
|
||||||
|
Rectangle {
|
||||||
|
color: "#424246"
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.topMargin: 6
|
||||||
|
anchors.leftMargin: 4
|
||||||
|
anchors.rightMargin: 4
|
||||||
|
anchors.bottomMargin: 6
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
scrollBarBackground: Item {
|
||||||
|
implicitWidth: 14
|
||||||
|
implicitHeight: 26
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ComicInfo {
|
||||||
|
width: info_container.width - 14
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DropArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
onEntered: {
|
||||||
|
if(drag.hasUrls)
|
||||||
|
{
|
||||||
|
if(dropManager.canDropUrls(drag.urls, drag.action))
|
||||||
|
{
|
||||||
|
drag.accepted = true;
|
||||||
|
}else
|
||||||
|
drag.accepted = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onDropped: {
|
||||||
|
if(drop.hasUrls && dropManager.canDropUrls(drop.urls, drop.action))
|
||||||
|
{
|
||||||
|
dropManager.droppedFiles(drop.urls, drop.action);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
32
YACReaderLibrary/qml/InfoFavorites.qml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import QtQuick 2.6
|
||||||
|
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
|
|
||||||
|
Item {
|
||||||
|
width: 20
|
||||||
|
height: 20
|
||||||
|
|
||||||
|
property bool active
|
||||||
|
|
||||||
|
signal activeChangedByUser(bool active)
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: favorites_button_compact
|
||||||
|
onClicked: {
|
||||||
|
activeChangedByUser(!active);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Image {
|
||||||
|
anchors.centerIn: parent
|
||||||
|
id: favorites_button_compact
|
||||||
|
source: "info-favorites.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
ColorOverlay {
|
||||||
|
anchors.fill: favorites_button_compact
|
||||||
|
source: favorites_button_compact
|
||||||
|
color: active ? "#e84852" : "#1c1c1c"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
50
YACReaderLibrary/qml/InfoRating.qml
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import QtQuick 2.6
|
||||||
|
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
|
|
||||||
|
Row {
|
||||||
|
spacing: 0
|
||||||
|
property int rating : 0
|
||||||
|
property int mouseIndex : 0
|
||||||
|
|
||||||
|
signal ratingChangedByUser(int rating)
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: rating_compact
|
||||||
|
model: 5
|
||||||
|
Item {
|
||||||
|
width: 25
|
||||||
|
height: 20
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: star
|
||||||
|
source: "info-rating.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
ColorOverlay {
|
||||||
|
anchors.fill: star
|
||||||
|
source: star
|
||||||
|
color: index < (mouseIndex > 0 ? mouseIndex : rating) ? "#ffffff" : "#1c1c1c"
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
hoverEnabled: true
|
||||||
|
|
||||||
|
onPositionChanged: {
|
||||||
|
mouseIndex = index + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
onClicked: {
|
||||||
|
ratingChangedByUser(mouseIndex);
|
||||||
|
}
|
||||||
|
|
||||||
|
onExited: {
|
||||||
|
mouseIndex = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
29
YACReaderLibrary/qml/InfoTick.qml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import QtQuick 2.6
|
||||||
|
|
||||||
|
import QtGraphicalEffects 1.0
|
||||||
|
|
||||||
|
Item {
|
||||||
|
|
||||||
|
property bool read
|
||||||
|
|
||||||
|
signal readChangedByUser(bool read)
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: read_compact
|
||||||
|
onClicked: {
|
||||||
|
readChangedByUser(!read);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: read_compact
|
||||||
|
source: "info-tick.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
ColorOverlay {
|
||||||
|
anchors.fill: read_compact
|
||||||
|
source: read_compact
|
||||||
|
color: read ? "#e84852" : "#1c1c1c"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -44,6 +44,7 @@ import QtQuick.Controls.Styles 1.1
|
|||||||
\inqmlmodule QtQuick.Controls
|
\inqmlmodule QtQuick.Controls
|
||||||
\since 5.1
|
\since 5.1
|
||||||
\ingroup views
|
\ingroup views
|
||||||
|
\ingroup controls
|
||||||
\brief Provides a scrolling view within another Item.
|
\brief Provides a scrolling view within another Item.
|
||||||
|
|
||||||
\image scrollview.png
|
\image scrollview.png
|
||||||
@ -163,7 +164,9 @@ FocusScope {
|
|||||||
default property Item contentItem
|
default property Item contentItem
|
||||||
|
|
||||||
/*! \internal */
|
/*! \internal */
|
||||||
property Item __scroller: scroller
|
property alias __scroller: scroller
|
||||||
|
/*! \internal */
|
||||||
|
property alias __verticalScrollbarOffset: scroller.verticalScrollbarOffset
|
||||||
/*! \internal */
|
/*! \internal */
|
||||||
property alias __wheelAreaScrollSpeed: wheelArea.scrollSpeed
|
property alias __wheelAreaScrollSpeed: wheelArea.scrollSpeed
|
||||||
/*! \internal */
|
/*! \internal */
|
||||||
@ -237,13 +240,13 @@ FocusScope {
|
|||||||
|
|
||||||
onContentYChanged: {
|
onContentYChanged: {
|
||||||
scroller.blockUpdates = true
|
scroller.blockUpdates = true
|
||||||
scroller.verticalScrollBar.value = flickableItem.contentY
|
scroller.verticalScrollBar.value = flickableItem.contentY - flickableItem.originY
|
||||||
scroller.blockUpdates = false
|
scroller.blockUpdates = false
|
||||||
}
|
}
|
||||||
|
|
||||||
onContentXChanged: {
|
onContentXChanged: {
|
||||||
scroller.blockUpdates = true
|
scroller.blockUpdates = true
|
||||||
scroller.horizontalScrollBar.value = flickableItem.contentX
|
scroller.horizontalScrollBar.value = flickableItem.contentX - flickableItem.originX
|
||||||
scroller.blockUpdates = false
|
scroller.blockUpdates = false
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -273,42 +276,43 @@ FocusScope {
|
|||||||
property bool horizontalRecursionGuard: false
|
property bool horizontalRecursionGuard: false
|
||||||
property bool verticalRecursionGuard: false
|
property bool verticalRecursionGuard: false
|
||||||
|
|
||||||
horizontalMinimumValue: flickableItem ? flickableItem.originX : 0
|
horizontalMinimumValue: 0
|
||||||
horizontalMaximumValue: flickableItem ? flickableItem.originX + flickableItem.contentWidth - viewport.width : 0
|
horizontalMaximumValue: flickableItem ? flickableItem.contentWidth - viewport.width : 0
|
||||||
|
|
||||||
verticalMinimumValue: flickableItem ? flickableItem.originY : 0
|
verticalMinimumValue: 0
|
||||||
verticalMaximumValue: flickableItem ? flickableItem.originY + flickableItem.contentHeight - viewport.height + __viewTopMargin : 0
|
verticalMaximumValue: flickableItem ? flickableItem.contentHeight - viewport.height + __viewTopMargin : 0
|
||||||
|
|
||||||
// The default scroll speed for typical angle-based mouse wheels. The value
|
// The default scroll speed for typical angle-based mouse wheels. The value
|
||||||
// comes originally from QTextEdit, which sets 20px steps by default, as well as
|
// comes originally from QTextEdit, which sets 20px steps by default, as well as
|
||||||
// QQuickWheelArea.
|
// QQuickWheelArea.
|
||||||
// TODO: centralize somewhere, QPlatformTheme?
|
// TODO: centralize somewhere, QPlatformTheme?
|
||||||
scrollSpeed: 20 * (__style.__wheelScrollLines || 1)
|
scrollSpeed: 20 * (__style && __style.__wheelScrollLines || 1)
|
||||||
|
|
||||||
Connections {
|
Connections {
|
||||||
target: flickableItem
|
target: flickableItem
|
||||||
|
|
||||||
onContentYChanged: {
|
onContentYChanged: {
|
||||||
wheelArea.verticalRecursionGuard = true
|
wheelArea.verticalRecursionGuard = true
|
||||||
wheelArea.verticalValue = flickableItem.contentY
|
wheelArea.verticalValue = flickableItem.contentY - flickableItem.originY
|
||||||
wheelArea.verticalRecursionGuard = false
|
wheelArea.verticalRecursionGuard = false
|
||||||
}
|
}
|
||||||
onContentXChanged: {
|
onContentXChanged: {
|
||||||
wheelArea.horizontalRecursionGuard = true
|
wheelArea.horizontalRecursionGuard = true
|
||||||
wheelArea.horizontalValue = flickableItem.contentX
|
wheelArea.horizontalValue = flickableItem.contentX - flickableItem.originX
|
||||||
wheelArea.horizontalRecursionGuard = false
|
wheelArea.horizontalRecursionGuard = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onVerticalValueChanged: {
|
onVerticalValueChanged: {
|
||||||
if (!verticalRecursionGuard) {
|
if (!verticalRecursionGuard) {
|
||||||
if (flickableItem.contentY < flickThreshold && verticalDelta > speedThreshold) {
|
var effectiveContentY = flickableItem.contentY - flickableItem.originY
|
||||||
|
if (effectiveContentY < flickThreshold && verticalDelta > speedThreshold) {
|
||||||
flickableItem.flick(ignored, Math.min(maxFlick, acceleration * verticalDelta))
|
flickableItem.flick(ignored, Math.min(maxFlick, acceleration * verticalDelta))
|
||||||
} else if (flickableItem.contentY > flickableItem.contentHeight
|
} else if (effectiveContentY > flickableItem.contentHeight - flickThreshold - viewport.height
|
||||||
- flickThreshold - viewport.height && verticalDelta < -speedThreshold) {
|
&& verticalDelta < -speedThreshold) {
|
||||||
flickableItem.flick(ignored, Math.max(-maxFlick, acceleration * verticalDelta))
|
flickableItem.flick(ignored, Math.max(-maxFlick, acceleration * verticalDelta))
|
||||||
} else {
|
} else {
|
||||||
flickableItem.contentY = verticalValue
|
flickableItem.contentY = verticalValue + flickableItem.originY
|
||||||
}
|
}
|
||||||
flickableItem.contentY = Math.min(verticalMaximumValue, Math.max(0, flickableItem.contentY));
|
flickableItem.contentY = Math.min(verticalMaximumValue, Math.max(0, flickableItem.contentY));
|
||||||
}
|
}
|
||||||
@ -316,7 +320,7 @@ FocusScope {
|
|||||||
|
|
||||||
onHorizontalValueChanged: {
|
onHorizontalValueChanged: {
|
||||||
if (!horizontalRecursionGuard)
|
if (!horizontalRecursionGuard)
|
||||||
flickableItem.contentX = horizontalValue
|
flickableItem.contentX = horizontalValue + flickableItem.originX
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
403
YACReaderLibrary/qml/YACReaderScrollViewStyle.qml
Normal file
@ -0,0 +1,403 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2015 The Qt Company Ltd.
|
||||||
|
** Contact: http://www.qt.io/licensing/
|
||||||
|
**
|
||||||
|
** This file is part of the Qt Quick Controls module of the Qt Toolkit.
|
||||||
|
**
|
||||||
|
** $QT_BEGIN_LICENSE:LGPL3$
|
||||||
|
** Commercial License Usage
|
||||||
|
** Licensees holding valid commercial Qt licenses may use this file in
|
||||||
|
** accordance with the commercial license agreement provided with the
|
||||||
|
** Software or, alternatively, in accordance with the terms contained in
|
||||||
|
** a written agreement between you and The Qt Company. For licensing terms
|
||||||
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||||
|
** information use the contact form at http://www.qt.io/contact-us.
|
||||||
|
**
|
||||||
|
** GNU Lesser General Public License Usage
|
||||||
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||||
|
** General Public License version 3 as published by the Free Software
|
||||||
|
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||||
|
** packaging of this file. Please review the following information to
|
||||||
|
** ensure the GNU Lesser General Public License version 3 requirements
|
||||||
|
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||||
|
**
|
||||||
|
** GNU General Public License Usage
|
||||||
|
** Alternatively, this file may be used under the terms of the GNU
|
||||||
|
** General Public License version 2.0 or later as published by the Free
|
||||||
|
** Software Foundation and appearing in the file LICENSE.GPL included in
|
||||||
|
** the packaging of this file. Please review the following information to
|
||||||
|
** ensure the GNU General Public License version 2.0 requirements will be
|
||||||
|
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||||
|
**
|
||||||
|
** $QT_END_LICENSE$
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
import QtQuick 2.2
|
||||||
|
import QtQuick.Controls 1.2
|
||||||
|
import QtQuick.Controls.Private 1.0
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\qmltype ScrollViewStyle
|
||||||
|
\inqmlmodule QtQuick.Controls.Styles
|
||||||
|
\since 5.1
|
||||||
|
\ingroup viewsstyling
|
||||||
|
\ingroup controlsstyling
|
||||||
|
\brief Provides custom styling for ScrollView
|
||||||
|
*/
|
||||||
|
Style {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
/*! The \l ScrollView this style is attached to. */
|
||||||
|
readonly property YACReaderScrollView control: __control
|
||||||
|
|
||||||
|
/*! This property controls the frame border padding of the scrollView. */
|
||||||
|
padding {left: 1; top: 1; right: 1; bottom: 1}
|
||||||
|
|
||||||
|
/*! This Component paints the corner area between scroll bars */
|
||||||
|
property Component corner: Rectangle { color: "#ccc" }
|
||||||
|
|
||||||
|
/*! This component determines if the flickable should reposition itself at the
|
||||||
|
mouse location when clicked. */
|
||||||
|
property bool scrollToClickedPosition: true
|
||||||
|
|
||||||
|
/*! This property holds whether the scroll bars are transient. Transient scroll bars
|
||||||
|
appear when the content is scrolled and disappear when they are no longer needed.
|
||||||
|
|
||||||
|
The default value is platform dependent. */
|
||||||
|
property bool transientScrollBars: Settings.isMobile && Settings.hasTouchScreen
|
||||||
|
|
||||||
|
/*! This Component paints the frame around scroll bars. */
|
||||||
|
property Component frame: Rectangle {
|
||||||
|
color: control["backgroundVisible"] ? "white": "transparent"
|
||||||
|
border.color: "#999"
|
||||||
|
border.width: 1
|
||||||
|
radius: 1
|
||||||
|
visible: control.frameVisible
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! This is the minimum extent of the scroll bar handle.
|
||||||
|
|
||||||
|
The default value is \c 30.
|
||||||
|
*/
|
||||||
|
|
||||||
|
property int minimumHandleLength: 30
|
||||||
|
|
||||||
|
/*! This property controls the edge overlap
|
||||||
|
between the handle and the increment/decrement buttons.
|
||||||
|
|
||||||
|
The default value is \c 30.
|
||||||
|
*/
|
||||||
|
|
||||||
|
property int handleOverlap: 1
|
||||||
|
|
||||||
|
/*! This component controls the appearance of the
|
||||||
|
scroll bar background.
|
||||||
|
|
||||||
|
You can access the following state properties:
|
||||||
|
|
||||||
|
\table
|
||||||
|
\row \li property bool \b styleData.hovered
|
||||||
|
\row \li property bool \b styleData.horizontal
|
||||||
|
\endtable
|
||||||
|
*/
|
||||||
|
|
||||||
|
property Component scrollBarBackground: Item {
|
||||||
|
property bool sticky: false
|
||||||
|
property bool hovered: styleData.hovered
|
||||||
|
implicitWidth: Math.round(TextSingleton.implicitHeight)
|
||||||
|
implicitHeight: Math.round(TextSingleton.implicitHeight)
|
||||||
|
clip: true
|
||||||
|
opacity: transientScrollBars ? 0.5 : 1.0
|
||||||
|
visible: !Settings.hasTouchScreen && (!transientScrollBars || sticky)
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
color: "#ddd"
|
||||||
|
border.color: "#aaa"
|
||||||
|
anchors.rightMargin: styleData.horizontal ? -2 : -1
|
||||||
|
anchors.leftMargin: styleData.horizontal ? -2 : 0
|
||||||
|
anchors.topMargin: styleData.horizontal ? 0 : -2
|
||||||
|
anchors.bottomMargin: styleData.horizontal ? -1 : -2
|
||||||
|
}
|
||||||
|
onHoveredChanged: if (hovered) sticky = true
|
||||||
|
onVisibleChanged: if (!visible) sticky = false
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! This component controls the appearance of the
|
||||||
|
scroll bar handle.
|
||||||
|
|
||||||
|
You can access the following state properties:
|
||||||
|
|
||||||
|
\table
|
||||||
|
\row \li property bool \b styleData.hovered
|
||||||
|
\row \li property bool \b styleData.pressed
|
||||||
|
\row \li property bool \b styleData.horizontal
|
||||||
|
\endtable
|
||||||
|
*/
|
||||||
|
|
||||||
|
property Component handle: Item {
|
||||||
|
property bool sticky: false
|
||||||
|
property bool hovered: __activeControl !== "none"
|
||||||
|
implicitWidth: Math.round(TextSingleton.implicitHeight) + 1
|
||||||
|
implicitHeight: Math.round(TextSingleton.implicitHeight) + 1
|
||||||
|
BorderImage {
|
||||||
|
id: img
|
||||||
|
opacity: styleData.pressed && !transientScrollBars ? 0.5 : styleData.hovered ? 1 : 0.8
|
||||||
|
source: "images/scrollbar-handle-" + (transientScrollBars ? "transient" : styleData.horizontal ? "horizontal" : "vertical") + ".png"
|
||||||
|
border.left: transientScrollBars ? 5 : 2
|
||||||
|
border.top: transientScrollBars ? 5 : 2
|
||||||
|
border.right: transientScrollBars ? 5 : 2
|
||||||
|
border.bottom: transientScrollBars ? 5 : 2
|
||||||
|
anchors.top: !styleData.horizontal ? parent.top : undefined
|
||||||
|
anchors.margins: transientScrollBars ? 2 : 0
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.left: styleData.horizontal ? parent.left : undefined
|
||||||
|
width: !styleData.horizontal && transientScrollBars ? sticky ? 13 : 10 : parent.width
|
||||||
|
height: styleData.horizontal && transientScrollBars ? sticky ? 13 : 10 : parent.height
|
||||||
|
Behavior on width { enabled: !styleData.horizontal && transientScrollBars; NumberAnimation { duration: 100 } }
|
||||||
|
Behavior on height { enabled: styleData.horizontal && transientScrollBars; NumberAnimation { duration: 100 } }
|
||||||
|
}
|
||||||
|
onHoveredChanged: if (hovered) sticky = true
|
||||||
|
onVisibleChanged: if (!visible) sticky = false
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! This component controls the appearance of the
|
||||||
|
scroll bar increment button.
|
||||||
|
|
||||||
|
You can access the following state properties:
|
||||||
|
|
||||||
|
\table
|
||||||
|
\row \li property bool \b styleData.hovered
|
||||||
|
\row \li property bool \b styleData.pressed
|
||||||
|
\row \li property bool \b styleData.horizontal
|
||||||
|
\endtable
|
||||||
|
*/
|
||||||
|
property Component incrementControl: Rectangle {
|
||||||
|
visible: !transientScrollBars
|
||||||
|
implicitWidth: transientScrollBars ? 0 : Math.round(TextSingleton.implicitHeight)
|
||||||
|
implicitHeight: transientScrollBars ? 0 : Math.round(TextSingleton.implicitHeight)
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.bottomMargin: -1
|
||||||
|
anchors.rightMargin: -1
|
||||||
|
border.color: "#aaa"
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: 1
|
||||||
|
color: "transparent"
|
||||||
|
border.color: "#44ffffff"
|
||||||
|
}
|
||||||
|
Image {
|
||||||
|
source: styleData.horizontal ? "images/arrow-right.png" : "images/arrow-down.png"
|
||||||
|
anchors.centerIn: parent
|
||||||
|
opacity: control.enabled ? 0.6 : 0.5
|
||||||
|
}
|
||||||
|
gradient: Gradient {
|
||||||
|
GradientStop {color: styleData.pressed ? "lightgray" : "white" ; position: 0}
|
||||||
|
GradientStop {color: styleData.pressed ? "lightgray" : "lightgray" ; position: 1}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! This component controls the appearance of the
|
||||||
|
scroll bar decrement button.
|
||||||
|
|
||||||
|
You can access the following state properties:
|
||||||
|
|
||||||
|
\table
|
||||||
|
\row \li property bool \b styleData.hovered
|
||||||
|
\row \li property bool \b styleData.pressed
|
||||||
|
\row \li property bool \b styleData.horizontal
|
||||||
|
\endtable
|
||||||
|
*/
|
||||||
|
property Component decrementControl: Rectangle {
|
||||||
|
visible: !transientScrollBars
|
||||||
|
implicitWidth: transientScrollBars ? 0 : Math.round(TextSingleton.implicitHeight)
|
||||||
|
implicitHeight: transientScrollBars ? 0 : Math.round(TextSingleton.implicitHeight)
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.topMargin: styleData.horizontal ? 0 : -1
|
||||||
|
anchors.leftMargin: styleData.horizontal ? -1 : 0
|
||||||
|
anchors.bottomMargin: styleData.horizontal ? -1 : 0
|
||||||
|
anchors.rightMargin: styleData.horizontal ? 0 : -1
|
||||||
|
color: "lightgray"
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: 1
|
||||||
|
color: "transparent"
|
||||||
|
border.color: "#44ffffff"
|
||||||
|
}
|
||||||
|
Image {
|
||||||
|
source: styleData.horizontal ? "images/arrow-left.png" : "images/arrow-up.png"
|
||||||
|
anchors.centerIn: parent
|
||||||
|
anchors.verticalCenterOffset: styleData.horizontal ? 0 : -1
|
||||||
|
anchors.horizontalCenterOffset: styleData.horizontal ? -1 : 0
|
||||||
|
opacity: control.enabled ? 0.6 : 0.5
|
||||||
|
}
|
||||||
|
gradient: Gradient {
|
||||||
|
GradientStop {color: styleData.pressed ? "lightgray" : "white" ; position: 0}
|
||||||
|
GradientStop {color: styleData.pressed ? "lightgray" : "lightgray" ; position: 1}
|
||||||
|
}
|
||||||
|
border.color: "#aaa"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! \internal */
|
||||||
|
property Component __scrollbar: Item {
|
||||||
|
id: panel
|
||||||
|
property string activeControl: "none"
|
||||||
|
property bool scrollToClickPosition: true
|
||||||
|
property bool isTransient: transientScrollBars
|
||||||
|
|
||||||
|
property bool on: false
|
||||||
|
property bool raised: false
|
||||||
|
property bool sunken: __styleData.upPressed | __styleData.downPressed | __styleData.handlePressed
|
||||||
|
|
||||||
|
states: State {
|
||||||
|
name: "out"
|
||||||
|
when: isTransient
|
||||||
|
&& (!__stickyScrollbars || !flickableItem.moving)
|
||||||
|
&& panel.activeControl === "none"
|
||||||
|
&& !panel.on
|
||||||
|
&& !panel.raised
|
||||||
|
PropertyChanges { target: panel; opacity: 0 }
|
||||||
|
}
|
||||||
|
|
||||||
|
transitions: Transition {
|
||||||
|
to: "out"
|
||||||
|
SequentialAnimation {
|
||||||
|
PauseAnimation { duration: root.__scrollBarFadeDelay }
|
||||||
|
NumberAnimation { properties: "opacity"; duration: root.__scrollBarFadeDuration }
|
||||||
|
PropertyAction { target: panel; property: "visible"; value: false }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
implicitWidth: __styleData.horizontal ? 200 : bg.implicitWidth
|
||||||
|
implicitHeight: __styleData.horizontal ? bg.implicitHeight : 200
|
||||||
|
|
||||||
|
function pixelMetric(arg) {
|
||||||
|
if (arg === "scrollbarExtent")
|
||||||
|
return (__styleData.horizontal ? bg.height : bg.width);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function styleHint(arg) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function hitTest(argX, argY) {
|
||||||
|
if (itemIsHit(handleControl, argX, argY))
|
||||||
|
return "handle"
|
||||||
|
else if (itemIsHit(incrementLoader, argX, argY))
|
||||||
|
return "up";
|
||||||
|
else if (itemIsHit(decrementLoader, argX, argY))
|
||||||
|
return "down";
|
||||||
|
else if (itemIsHit(bg, argX, argY)) {
|
||||||
|
if (__styleData.horizontal && argX < handleControl.x || !__styleData.horizontal && argY < handleControl.y)
|
||||||
|
return "upPage"
|
||||||
|
else
|
||||||
|
return "downPage"
|
||||||
|
}
|
||||||
|
|
||||||
|
return "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
function subControlRect(arg) {
|
||||||
|
if (arg === "handle") {
|
||||||
|
return Qt.rect(handleControl.x, handleControl.y, handleControl.width, handleControl.height);
|
||||||
|
} else if (arg === "groove") {
|
||||||
|
if (__styleData.horizontal) {
|
||||||
|
return Qt.rect(incrementLoader.width - handleOverlap,
|
||||||
|
0,
|
||||||
|
__control.width - (incrementLoader.width + decrementLoader.width - handleOverlap * 2),
|
||||||
|
__control.height);
|
||||||
|
} else {
|
||||||
|
return Qt.rect(0,
|
||||||
|
incrementLoader.height - handleOverlap,
|
||||||
|
__control.width,
|
||||||
|
__control.height - (incrementLoader.height + decrementLoader.height - handleOverlap * 2));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Qt.rect(0,0,0,0);
|
||||||
|
}
|
||||||
|
|
||||||
|
function itemIsHit(argItem, argX, argY) {
|
||||||
|
var pos = argItem.mapFromItem(__control, argX, argY);
|
||||||
|
return (pos.x >= 0 && pos.x <= argItem.width && pos.y >= 0 && pos.y <= argItem.height);
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
id: incrementLoader
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.left: parent.left
|
||||||
|
sourceComponent: decrementControl
|
||||||
|
property QtObject styleData: QtObject {
|
||||||
|
readonly property bool hovered: activeControl === "up"
|
||||||
|
readonly property bool pressed: __styleData.upPressed
|
||||||
|
readonly property bool horizontal: __styleData.horizontal
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
id: bg
|
||||||
|
anchors.top: __styleData.horizontal ? undefined : incrementLoader.bottom
|
||||||
|
anchors.bottom: __styleData.horizontal ? undefined : decrementLoader.top
|
||||||
|
anchors.left: __styleData.horizontal ? incrementLoader.right : undefined
|
||||||
|
anchors.right: __styleData.horizontal ? decrementLoader.left : undefined
|
||||||
|
sourceComponent: scrollBarBackground
|
||||||
|
property QtObject styleData: QtObject {
|
||||||
|
readonly property bool horizontal: __styleData.horizontal
|
||||||
|
readonly property bool hovered: activeControl !== "none"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
id: decrementLoader
|
||||||
|
anchors.bottom: __styleData.horizontal ? undefined : parent.bottom
|
||||||
|
anchors.right: __styleData.horizontal ? parent.right : undefined
|
||||||
|
sourceComponent: incrementControl
|
||||||
|
property QtObject styleData: QtObject {
|
||||||
|
readonly property bool hovered: activeControl === "down"
|
||||||
|
readonly property bool pressed: __styleData.downPressed
|
||||||
|
readonly property bool horizontal: __styleData.horizontal
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
property var flickableItem: control.flickableItem
|
||||||
|
property int extent: Math.max(minimumHandleLength, __styleData.horizontal ?
|
||||||
|
(flickableItem ? flickableItem.width/flickableItem.contentWidth : 0 ) * bg.width :
|
||||||
|
(flickableItem ? flickableItem.height/flickableItem.contentHeight : 0) * bg.height)
|
||||||
|
readonly property real range: __control.maximumValue - __control.minimumValue
|
||||||
|
readonly property real begin: __control.value - __control.minimumValue
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
id: handleControl
|
||||||
|
height: __styleData.horizontal ? implicitHeight : extent
|
||||||
|
width: __styleData.horizontal ? extent : implicitWidth
|
||||||
|
anchors.top: bg.top
|
||||||
|
anchors.left: bg.left
|
||||||
|
anchors.topMargin: __styleData.horizontal || range === 0 ? 0 : -handleOverlap + (2 * begin * (bg.height + (2 * handleOverlap) - extent) + range) / (2 * range)
|
||||||
|
anchors.leftMargin: __styleData.horizontal && range !== 0 ? -handleOverlap + (2 * begin * (bg.width + (2 * handleOverlap) - extent) + range) / (2 * range) : 0
|
||||||
|
sourceComponent: handle
|
||||||
|
property QtObject styleData: QtObject {
|
||||||
|
readonly property bool hovered: activeControl === "handle"
|
||||||
|
readonly property bool pressed: __styleData.handlePressed
|
||||||
|
readonly property bool horizontal: __styleData.horizontal
|
||||||
|
}
|
||||||
|
readonly property alias __activeControl: panel.activeControl
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*! \internal */
|
||||||
|
property bool __externalScrollBars: false
|
||||||
|
/*! \internal */
|
||||||
|
property int __scrollBarSpacing: 4
|
||||||
|
/*! \internal */
|
||||||
|
property int __scrollBarFadeDelay: 450
|
||||||
|
/*! \internal */
|
||||||
|
property int __scrollBarFadeDuration: 200
|
||||||
|
/*! \internal */
|
||||||
|
property bool __stickyScrollbars: false
|
||||||
|
}
|
BIN
YACReaderLibrary/qml/info-favorites.png
Normal file
After Width: | Height: | Size: 371 B |
BIN
YACReaderLibrary/qml/info-favorites@2x.png
Normal file
After Width: | Height: | Size: 615 B |
BIN
YACReaderLibrary/qml/info-indicator.png
Normal file
After Width: | Height: | Size: 652 B |
BIN
YACReaderLibrary/qml/info-rating.png
Normal file
After Width: | Height: | Size: 322 B |
BIN
YACReaderLibrary/qml/info-rating@2x.png
Normal file
After Width: | Height: | Size: 551 B |
BIN
YACReaderLibrary/qml/info-shadow.png
Normal file
After Width: | Height: | Size: 135 B |
BIN
YACReaderLibrary/qml/info-tag.png
Normal file
After Width: | Height: | Size: 289 B |
BIN
YACReaderLibrary/qml/info-tag@2x.png
Normal file
After Width: | Height: | Size: 459 B |
BIN
YACReaderLibrary/qml/info-tick.png
Normal file
After Width: | Height: | Size: 244 B |
BIN
YACReaderLibrary/qml/info-tick@2x.png
Normal file
After Width: | Height: | Size: 367 B |
BIN
YACReaderLibrary/qml/info-top-shadow.png
Normal file
After Width: | Height: | Size: 121 B |
@ -37,7 +37,7 @@ void FileLogger::refreshSettings() {
|
|||||||
maxBackups=settings->value("maxBackups",1).toInt();
|
maxBackups=settings->value("maxBackups",1).toInt();
|
||||||
msgFormat=settings->value("msgFormat","{timestamp} {type} {msg}").toString();
|
msgFormat=settings->value("msgFormat","{timestamp} {type} {msg}").toString();
|
||||||
timestampFormat=settings->value("timestampFormat","yyyy-MM-dd hh:mm:ss.zzz").toString();
|
timestampFormat=settings->value("timestampFormat","yyyy-MM-dd hh:mm:ss.zzz").toString();
|
||||||
minLevel=static_cast<QtMsgType>(settings->value("minLevel",QtWarningMsg).toInt());
|
minLevel=static_cast<QtMsgType>(settings->value("minLevel",QtCriticalMsg).toInt());
|
||||||
bufferSize=settings->value("bufferSize",0).toInt();
|
bufferSize=settings->value("bufferSize",0).toInt();
|
||||||
|
|
||||||
// Create new file if the filename has been changed
|
// Create new file if the filename has been changed
|
||||||
|
45
YACReaderLibrary/yacreader_comic_info_helper.cpp
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
#include "yacreader_comic_info_helper.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#include "comic_model.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
YACReaderComicInfoHelper::YACReaderComicInfoHelper(QObject *parent)
|
||||||
|
: QObject(parent), model(nullptr)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicInfoHelper::setModel(ComicModel *model)
|
||||||
|
{
|
||||||
|
this->model = model;
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicInfoHelper::rate(int index, int rating)
|
||||||
|
{
|
||||||
|
if(model != nullptr)
|
||||||
|
model->updateRating(rating,model->index(index,0));
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicInfoHelper::setRead(int index, bool read)
|
||||||
|
{
|
||||||
|
YACReaderComicReadStatus status;
|
||||||
|
read ? (status = YACReaderComicReadStatus::Read) : (status = YACReaderComicReadStatus::Unread);
|
||||||
|
|
||||||
|
if(model != nullptr)
|
||||||
|
model->setComicsRead(QModelIndexList() << model->index(index, 0), status);
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicInfoHelper::addToFavorites(int index)
|
||||||
|
{
|
||||||
|
if(model != nullptr)
|
||||||
|
model->addComicsToFavorites(QModelIndexList() << model->index(index, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicInfoHelper::removeFromFavorites(int index)
|
||||||
|
{
|
||||||
|
if(model != nullptr)
|
||||||
|
model->deleteComicsFromFavorites(QModelIndexList() << model->index(index, 0));
|
||||||
|
}
|
31
YACReaderLibrary/yacreader_comic_info_helper.h
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
#ifndef YACREADERCOMICINFOHELPER_H
|
||||||
|
#define YACREADERCOMICINFOHELPER_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
|
||||||
|
|
||||||
|
class ComicModel;
|
||||||
|
|
||||||
|
|
||||||
|
class YACReaderComicInfoHelper : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit YACReaderComicInfoHelper(QObject *parent = 0);
|
||||||
|
|
||||||
|
void setModel(ComicModel *model);
|
||||||
|
|
||||||
|
Q_INVOKABLE void rate(int index, int rating);
|
||||||
|
Q_INVOKABLE void setRead(int index, bool read);
|
||||||
|
Q_INVOKABLE void addToFavorites(int index);
|
||||||
|
Q_INVOKABLE void removeFromFavorites(int index);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
|
||||||
|
protected:
|
||||||
|
ComicModel *model;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // YACREADERCOMICINFOHELPER_H
|
127
YACReaderLibrary/yacreader_comics_selection_helper.cpp
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
#include "yacreader_comics_selection_helper.h"
|
||||||
|
|
||||||
|
#include "comic_model.h"
|
||||||
|
|
||||||
|
YACReaderComicsSelectionHelper::YACReaderComicsSelectionHelper(QObject *parent) : QObject(parent), _selectionModel(nullptr)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsSelectionHelper::setModel(ComicModel *model)
|
||||||
|
{
|
||||||
|
if(model == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
|
this->model = model;
|
||||||
|
|
||||||
|
if(_selectionModel != nullptr)
|
||||||
|
delete _selectionModel;
|
||||||
|
|
||||||
|
_selectionModel = new QItemSelectionModel(model);
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsSelectionHelper::selectIndex(int index)
|
||||||
|
{
|
||||||
|
if(_selectionModel != nullptr && model!=NULL)
|
||||||
|
{
|
||||||
|
_selectionModel->select(model->index(index,0),QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
||||||
|
|
||||||
|
emit selectionChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsSelectionHelper::deselectIndex(int index)
|
||||||
|
{
|
||||||
|
if(_selectionModel != nullptr && model!=NULL)
|
||||||
|
{
|
||||||
|
_selectionModel->select(model->index(index,0),QItemSelectionModel::Deselect | QItemSelectionModel::Rows);
|
||||||
|
|
||||||
|
emit selectionChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool YACReaderComicsSelectionHelper::isSelectedIndex(int index) const
|
||||||
|
{
|
||||||
|
if(_selectionModel != nullptr && model!=NULL)
|
||||||
|
{
|
||||||
|
QModelIndex mi = model->index(index,0);
|
||||||
|
return _selectionModel->isSelected(mi);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsSelectionHelper::clear()
|
||||||
|
{
|
||||||
|
if(_selectionModel != nullptr)
|
||||||
|
{
|
||||||
|
_selectionModel->clear();
|
||||||
|
|
||||||
|
emit selectionChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
QModelIndex YACReaderComicsSelectionHelper::currentIndex()
|
||||||
|
{
|
||||||
|
if(!_selectionModel)
|
||||||
|
return QModelIndex();
|
||||||
|
|
||||||
|
QModelIndexList indexes = _selectionModel->selectedRows();
|
||||||
|
if(indexes.length()>0)
|
||||||
|
return indexes[0];
|
||||||
|
|
||||||
|
this->selectIndex(0);
|
||||||
|
indexes = _selectionModel->selectedRows();
|
||||||
|
if(indexes.length()>0)
|
||||||
|
return indexes[0];
|
||||||
|
else
|
||||||
|
return QModelIndex();
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsSelectionHelper::selectAll()
|
||||||
|
{
|
||||||
|
QModelIndex top = model->index(0, 0);
|
||||||
|
QModelIndex bottom = model->index(model->rowCount()-1, 0);
|
||||||
|
QItemSelection selection(top, bottom);
|
||||||
|
_selectionModel->select(selection, QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
||||||
|
|
||||||
|
emit selectionChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
QModelIndexList YACReaderComicsSelectionHelper::selectedRows(int column) const
|
||||||
|
{
|
||||||
|
return _selectionModel->selectedRows(column);
|
||||||
|
}
|
||||||
|
|
||||||
|
QList<QModelIndex> YACReaderComicsSelectionHelper::selectedIndexes() const
|
||||||
|
{
|
||||||
|
return _selectionModel->selectedIndexes();
|
||||||
|
}
|
||||||
|
|
||||||
|
int YACReaderComicsSelectionHelper::numItemsSelected() const
|
||||||
|
{
|
||||||
|
if(_selectionModel != nullptr)
|
||||||
|
{
|
||||||
|
return _selectionModel->selectedRows().length();
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int YACReaderComicsSelectionHelper::lastSelectedIndex() const
|
||||||
|
{
|
||||||
|
if(_selectionModel != nullptr)
|
||||||
|
{
|
||||||
|
return _selectionModel->selectedRows().last().row();
|
||||||
|
}
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
QItemSelectionModel *YACReaderComicsSelectionHelper::selectionModel()
|
||||||
|
{
|
||||||
|
QModelIndexList indexes = _selectionModel->selectedRows();
|
||||||
|
if(indexes.length()==0)
|
||||||
|
this->selectIndex(0);
|
||||||
|
|
||||||
|
return _selectionModel;
|
||||||
|
}
|
41
YACReaderLibrary/yacreader_comics_selection_helper.h
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#ifndef YACREADERCOMICSSELECTIONHELPER_H
|
||||||
|
#define YACREADERCOMICSSELECTIONHELPER_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
#include <QtWidgets>
|
||||||
|
|
||||||
|
class ComicModel;
|
||||||
|
|
||||||
|
class YACReaderComicsSelectionHelper : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit YACReaderComicsSelectionHelper(QObject *parent = 0);
|
||||||
|
|
||||||
|
void setModel(ComicModel *model);
|
||||||
|
|
||||||
|
Q_INVOKABLE void selectIndex(int index);
|
||||||
|
Q_INVOKABLE void deselectIndex(int index);
|
||||||
|
Q_INVOKABLE bool isSelectedIndex(int index) const;
|
||||||
|
Q_INVOKABLE void clear();
|
||||||
|
Q_INVOKABLE int numItemsSelected() const;
|
||||||
|
Q_INVOKABLE int lastSelectedIndex() const;
|
||||||
|
Q_INVOKABLE QModelIndex currentIndex();
|
||||||
|
Q_INVOKABLE void selectAll();
|
||||||
|
Q_INVOKABLE QModelIndexList selectedIndexes() const;
|
||||||
|
Q_INVOKABLE QModelIndexList selectedRows(int column = 0) const;
|
||||||
|
|
||||||
|
QItemSelectionModel * selectionModel();
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void selectionChanged();
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
|
||||||
|
protected:
|
||||||
|
QItemSelectionModel * _selectionModel;
|
||||||
|
|
||||||
|
ComicModel * model;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // YACREADERCOMICSSELECTIONHELPER_H
|
232
YACReaderLibrary/yacreader_comics_views_manager.cpp
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
#include "yacreader_comics_views_manager.h"
|
||||||
|
|
||||||
|
#include "library_window.h"
|
||||||
|
|
||||||
|
#include "classic_comics_view.h"
|
||||||
|
#include "grid_comics_view.h"
|
||||||
|
#include "info_comics_view.h"
|
||||||
|
#include "comics_view_transition.h"
|
||||||
|
#include "empty_folder_widget.h"
|
||||||
|
#include "empty_label_widget.h"
|
||||||
|
#include "empty_special_list.h"
|
||||||
|
#include "empty_reading_list_widget.h"
|
||||||
|
#include "no_search_results_widget.h"
|
||||||
|
|
||||||
|
//--
|
||||||
|
#include "yacreader_search_line_edit.h"
|
||||||
|
#include "options_dialog.h"
|
||||||
|
|
||||||
|
YACReaderComicsViewsManager::YACReaderComicsViewsManager(QSettings *settings, LibraryWindow *parent)
|
||||||
|
: QObject(parent), libraryWindow(parent), classicComicsView(nullptr), gridComicsView(nullptr), infoComicsView(nullptr)
|
||||||
|
{
|
||||||
|
comicsViewStack = new QStackedWidget();
|
||||||
|
|
||||||
|
switch ((YACReader::ComicsViewStatus)settings->value(COMICS_VIEW_STATUS).toInt())
|
||||||
|
{
|
||||||
|
case Flow:
|
||||||
|
comicsView = classicComicsView = new ClassicComicsView();
|
||||||
|
comicsViewStatus = Flow;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case Grid:
|
||||||
|
comicsView = gridComicsView = new GridComicsView();
|
||||||
|
connect(libraryWindow->optionsDialog, SIGNAL(optionsChanged()), gridComicsView, SLOT(updateBackgroundConfig()));
|
||||||
|
comicsViewStatus = Grid;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case Info:
|
||||||
|
comicsView = infoComicsView = new InfoComicsView();
|
||||||
|
comicsViewStatus = Info;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
comicsView = classicComicsView = new ClassicComicsView();
|
||||||
|
comicsViewStatus = Flow;
|
||||||
|
}
|
||||||
|
|
||||||
|
doComicsViewConnections();
|
||||||
|
|
||||||
|
comicsViewStack->addWidget(comicsViewTransition = new ComicsViewTransition());
|
||||||
|
comicsViewStack->addWidget(emptyFolderWidget = new EmptyFolderWidget());
|
||||||
|
comicsViewStack->addWidget(emptyLabelWidget = new EmptyLabelWidget());
|
||||||
|
comicsViewStack->addWidget(emptySpecialList = new EmptySpecialListWidget());
|
||||||
|
comicsViewStack->addWidget(emptyReadingList = new EmptyReadingListWidget());
|
||||||
|
comicsViewStack->addWidget(noSearchResultsWidget = new NoSearchResultsWidget());
|
||||||
|
|
||||||
|
comicsViewStack->addWidget(comicsView);
|
||||||
|
|
||||||
|
comicsViewStack->setCurrentWidget(comicsView);
|
||||||
|
|
||||||
|
//connections
|
||||||
|
|
||||||
|
connect(emptyFolderWidget, SIGNAL(copyComicsToCurrentFolder(QList<QPair<QString, QString> >)), libraryWindow, SLOT(copyAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
||||||
|
connect(emptyFolderWidget, SIGNAL(moveComicsToCurrentFolder(QList<QPair<QString, QString> >)), libraryWindow, SLOT(moveAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
||||||
|
}
|
||||||
|
|
||||||
|
QWidget * YACReaderComicsViewsManager::containerWidget()
|
||||||
|
{
|
||||||
|
return comicsViewStack;
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::showComicsView()
|
||||||
|
{
|
||||||
|
comicsViewStack->setCurrentWidget(comicsView);
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::showEmptyFolderView()
|
||||||
|
{
|
||||||
|
comicsViewStack->setCurrentWidget(emptyFolderWidget);
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::showEmptyLabelView()
|
||||||
|
{
|
||||||
|
comicsViewStack->setCurrentWidget(emptyLabelWidget);
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::showEmptySpecialList()
|
||||||
|
{
|
||||||
|
comicsViewStack->setCurrentWidget(emptySpecialList);
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::showEmptyReadingListWidget()
|
||||||
|
{
|
||||||
|
comicsViewStack->setCurrentWidget(emptyReadingList);
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::showNoSearchResultsView()
|
||||||
|
{
|
||||||
|
comicsViewStack->setCurrentWidget(noSearchResultsWidget);
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO recover the current comics selection and restore it in the destination
|
||||||
|
void YACReaderComicsViewsManager::toggleComicsView()
|
||||||
|
{
|
||||||
|
if(comicsViewStack->currentWidget()==comicsView) {
|
||||||
|
QTimer::singleShot(0,this,SLOT(showComicsViewTransition()));
|
||||||
|
QTimer::singleShot(100,this,SLOT(_toggleComicsView()));
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
_toggleComicsView();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//PROTECTED
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::disconnectComicsViewConnections(ComicsView * widget)
|
||||||
|
{
|
||||||
|
disconnect(widget, SIGNAL(comicRated(int,QModelIndex)), libraryWindow->comicsModel, SLOT(updateRating(int,QModelIndex)));
|
||||||
|
disconnect(libraryWindow->showHideMarksAction,SIGNAL(toggled(bool)),widget,SLOT(setShowMarks(bool)));
|
||||||
|
disconnect(widget,SIGNAL(selected(unsigned int)),libraryWindow,SLOT(openComic()));
|
||||||
|
disconnect(libraryWindow->selectAllComicsAction,SIGNAL(triggered()),widget,SLOT(selectAll()));
|
||||||
|
disconnect(comicsView, SIGNAL(copyComicsToCurrentFolder(QList<QPair<QString, QString> >)), libraryWindow, SLOT(copyAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
||||||
|
disconnect(comicsView, SIGNAL(moveComicsToCurrentFolder(QList<QPair<QString, QString> >)), libraryWindow, SLOT(moveAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
||||||
|
disconnect(comicsView,SIGNAL(customContextMenuViewRequested(QPoint)),libraryWindow,SLOT(showComicsViewContextMenu(QPoint)));
|
||||||
|
disconnect(comicsView,SIGNAL(customContextMenuItemRequested(QPoint)),libraryWindow,SLOT(showComicsItemContextMenu(QPoint)));
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::doComicsViewConnections()
|
||||||
|
{
|
||||||
|
connect(comicsView, SIGNAL(comicRated(int,QModelIndex)), libraryWindow->comicsModel, SLOT(updateRating(int,QModelIndex)));
|
||||||
|
connect(libraryWindow->showHideMarksAction,SIGNAL(toggled(bool)),comicsView,SLOT(setShowMarks(bool)));
|
||||||
|
connect(comicsView,SIGNAL(selected(unsigned int)),libraryWindow,SLOT(openComic()));
|
||||||
|
connect(libraryWindow->selectAllComicsAction,SIGNAL(triggered()),comicsView,SLOT(selectAll()));
|
||||||
|
|
||||||
|
connect(comicsView,SIGNAL(customContextMenuViewRequested(QPoint)),libraryWindow,SLOT(showComicsViewContextMenu(QPoint)));
|
||||||
|
connect(comicsView,SIGNAL(customContextMenuItemRequested(QPoint)),libraryWindow,SLOT(showComicsItemContextMenu(QPoint)));
|
||||||
|
//Drops
|
||||||
|
connect(comicsView, SIGNAL(copyComicsToCurrentFolder(QList<QPair<QString, QString> >)), libraryWindow, SLOT(copyAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
||||||
|
connect(comicsView, SIGNAL(moveComicsToCurrentFolder(QList<QPair<QString, QString> >)), libraryWindow, SLOT(moveAndImportComicsToCurrentFolder(QList<QPair<QString, QString> >)));
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::switchToComicsView(ComicsView * from, ComicsView * to)
|
||||||
|
{
|
||||||
|
//setup views
|
||||||
|
disconnectComicsViewConnections(from);
|
||||||
|
from->close();
|
||||||
|
|
||||||
|
comicsView = to;
|
||||||
|
doComicsViewConnections();
|
||||||
|
|
||||||
|
comicsView->setToolBar(libraryWindow->editInfoToolBar);
|
||||||
|
|
||||||
|
comicsViewStack->removeWidget(from);
|
||||||
|
comicsViewStack->addWidget(comicsView);
|
||||||
|
|
||||||
|
//delete from; No need to delete the previews view, because all views are going to be kept in memory
|
||||||
|
|
||||||
|
//load content into current view
|
||||||
|
libraryWindow->loadCoversFromCurrentModel();
|
||||||
|
|
||||||
|
if(!libraryWindow->searchEdit->text().isEmpty())
|
||||||
|
{
|
||||||
|
comicsView->enableFilterMode(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::showComicsViewTransition()
|
||||||
|
{
|
||||||
|
comicsViewStack->setCurrentWidget(comicsViewTransition);
|
||||||
|
}
|
||||||
|
|
||||||
|
void YACReaderComicsViewsManager::_toggleComicsView()
|
||||||
|
{
|
||||||
|
switch(comicsViewStatus)
|
||||||
|
{
|
||||||
|
case Flow:
|
||||||
|
{
|
||||||
|
QIcon icoViewsButton;
|
||||||
|
icoViewsButton.addFile(":/images/main_toolbar/info.png", QSize(), QIcon::Normal);
|
||||||
|
libraryWindow->toggleComicsViewAction->setIcon(icoViewsButton);
|
||||||
|
#ifdef Q_OS_MAC
|
||||||
|
libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton);
|
||||||
|
#endif
|
||||||
|
if(gridComicsView == nullptr)
|
||||||
|
gridComicsView = new GridComicsView();
|
||||||
|
|
||||||
|
switchToComicsView(classicComicsView, gridComicsView);
|
||||||
|
connect(libraryWindow->optionsDialog, SIGNAL(optionsChanged()), gridComicsView, SLOT(updateBackgroundConfig()));
|
||||||
|
comicsViewStatus = Grid;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case Grid:
|
||||||
|
{
|
||||||
|
QIcon icoViewsButton;
|
||||||
|
icoViewsButton.addFile(":/images/main_toolbar/flow.png", QSize(), QIcon::Normal);
|
||||||
|
libraryWindow->toggleComicsViewAction->setIcon(icoViewsButton);
|
||||||
|
#ifdef Q_OS_MAC
|
||||||
|
libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton);
|
||||||
|
#endif
|
||||||
|
if(infoComicsView == nullptr)
|
||||||
|
infoComicsView = new InfoComicsView();
|
||||||
|
|
||||||
|
switchToComicsView(gridComicsView, infoComicsView);
|
||||||
|
comicsViewStatus = Info;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case Info:
|
||||||
|
{
|
||||||
|
QIcon icoViewsButton;
|
||||||
|
icoViewsButton.addFile(":/images/main_toolbar/grid.png", QSize(), QIcon::Normal);
|
||||||
|
libraryWindow->toggleComicsViewAction->setIcon(icoViewsButton);
|
||||||
|
#ifdef Q_OS_MAC
|
||||||
|
libraryWindow->libraryToolBar->updateViewSelectorIcon(icoViewsButton);
|
||||||
|
#endif
|
||||||
|
if(classicComicsView == nullptr)
|
||||||
|
classicComicsView = new ClassicComicsView();
|
||||||
|
|
||||||
|
switchToComicsView(infoComicsView, classicComicsView);
|
||||||
|
comicsViewStatus = Flow;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
libraryWindow->settings->setValue(COMICS_VIEW_STATUS, comicsViewStatus);
|
||||||
|
|
||||||
|
if(comicsViewStack->currentWidget()==comicsViewTransition)
|
||||||
|
showComicsView();
|
||||||
|
}
|
75
YACReaderLibrary/yacreader_comics_views_manager.h
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
#ifndef YACREADERCOMICSVIEWSMANAGER_H
|
||||||
|
#define YACREADERCOMICSVIEWSMANAGER_H
|
||||||
|
|
||||||
|
#include <QtWidgets>
|
||||||
|
|
||||||
|
#include "yacreader_global_gui.h"
|
||||||
|
|
||||||
|
class LibraryWindow;
|
||||||
|
|
||||||
|
class ComicsView;
|
||||||
|
class ClassicComicsView;
|
||||||
|
class GridComicsView;
|
||||||
|
class InfoComicsView;
|
||||||
|
class ComicsViewTransition;
|
||||||
|
class EmptyFolderWidget;
|
||||||
|
class EmptyLabelWidget;
|
||||||
|
class EmptySpecialListWidget;
|
||||||
|
class EmptyReadingListWidget;
|
||||||
|
class NoSearchResultsWidget;
|
||||||
|
|
||||||
|
using namespace YACReader;
|
||||||
|
|
||||||
|
class YACReaderComicsViewsManager : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit YACReaderComicsViewsManager(QSettings *settings, LibraryWindow *parent = 0);
|
||||||
|
|
||||||
|
QWidget * containerWidget();
|
||||||
|
|
||||||
|
ComicsView * comicsView;
|
||||||
|
|
||||||
|
ComicsViewTransition * comicsViewTransition;
|
||||||
|
|
||||||
|
EmptyFolderWidget * emptyFolderWidget;
|
||||||
|
EmptyLabelWidget * emptyLabelWidget;
|
||||||
|
EmptySpecialListWidget * emptySpecialList;
|
||||||
|
EmptyReadingListWidget * emptyReadingList;
|
||||||
|
|
||||||
|
NoSearchResultsWidget * noSearchResultsWidget;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
QStackedWidget * comicsViewStack;
|
||||||
|
LibraryWindow * libraryWindow;
|
||||||
|
|
||||||
|
ComicsViewStatus comicsViewStatus;
|
||||||
|
|
||||||
|
ClassicComicsView * classicComicsView;
|
||||||
|
GridComicsView * gridComicsView;
|
||||||
|
InfoComicsView *infoComicsView;
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void toggleComicsView();
|
||||||
|
|
||||||
|
void showComicsView();
|
||||||
|
void showEmptyFolderView();
|
||||||
|
void showEmptyLabelView();
|
||||||
|
void showEmptySpecialList();
|
||||||
|
void showEmptyReadingListWidget();
|
||||||
|
void showNoSearchResultsView();
|
||||||
|
|
||||||
|
protected slots:
|
||||||
|
void showComicsViewTransition();
|
||||||
|
void _toggleComicsView();
|
||||||
|
|
||||||
|
void disconnectComicsViewConnections(ComicsView * widget);
|
||||||
|
void doComicsViewConnections();
|
||||||
|
|
||||||
|
void switchToComicsView(ComicsView *from, ComicsView *to);
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // COMICSVIEWSMANAGER_H
|
@ -16,11 +16,12 @@
|
|||||||
#include "yacreader_global.h"
|
#include "yacreader_global.h"
|
||||||
#include "empty_label_widget.h"
|
#include "empty_label_widget.h"
|
||||||
#include "empty_special_list.h"
|
#include "empty_special_list.h"
|
||||||
|
#include "yacreader_comics_views_manager.h"
|
||||||
|
|
||||||
#include "QsLog.h"
|
#include "QsLog.h"
|
||||||
|
|
||||||
YACReaderNavigationController::YACReaderNavigationController(LibraryWindow *parent) :
|
YACReaderNavigationController::YACReaderNavigationController(LibraryWindow *parent, YACReaderComicsViewsManager *comicsViewsManager) :
|
||||||
QObject(parent),libraryWindow(parent)
|
QObject(parent),libraryWindow(parent),comicsViewsManager(comicsViewsManager)
|
||||||
{
|
{
|
||||||
setupConnections();
|
setupConnections();
|
||||||
}
|
}
|
||||||
@ -59,19 +60,19 @@ void YACReaderNavigationController::loadFolderInfo(const QModelIndex &modelIndex
|
|||||||
|
|
||||||
//check comics in folder with id = folderId
|
//check comics in folder with id = folderId
|
||||||
libraryWindow->comicsModel->setupFolderModelData(folderId,libraryWindow->foldersModel->getDatabase());
|
libraryWindow->comicsModel->setupFolderModelData(folderId,libraryWindow->foldersModel->getDatabase());
|
||||||
libraryWindow->comicsView->setModel(libraryWindow->comicsModel);
|
comicsViewsManager->comicsView->setModel(libraryWindow->comicsModel);
|
||||||
|
|
||||||
//configure views
|
//configure views
|
||||||
if(libraryWindow->comicsModel->rowCount() > 0)
|
if(libraryWindow->comicsModel->rowCount() > 0)
|
||||||
{
|
{
|
||||||
//updateView
|
//updateView
|
||||||
libraryWindow->showComicsView();
|
comicsViewsManager->showComicsView();
|
||||||
libraryWindow->disableComicsActions(false);
|
libraryWindow->disableComicsActions(false);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
//showEmptyFolder
|
//showEmptyFolder
|
||||||
loadEmptyFolderInfo(modelIndex);
|
loadEmptyFolderInfo(modelIndex);
|
||||||
libraryWindow->showEmptyFolderView();
|
comicsViewsManager->showEmptyFolderView();
|
||||||
libraryWindow->disableComicsActions(true);
|
libraryWindow->disableComicsActions(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -116,11 +117,11 @@ void YACReaderNavigationController::loadSpecialListInfo(const QModelIndex &model
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
libraryWindow->comicsView->setModel(libraryWindow->comicsModel);
|
comicsViewsManager->comicsView->setModel(libraryWindow->comicsModel);
|
||||||
|
|
||||||
if(libraryWindow->comicsModel->rowCount() > 0)
|
if(libraryWindow->comicsModel->rowCount() > 0)
|
||||||
{
|
{
|
||||||
libraryWindow->showComicsView();
|
comicsViewsManager->showComicsView();
|
||||||
libraryWindow->disableComicsActions(false);
|
libraryWindow->disableComicsActions(false);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -129,16 +130,16 @@ void YACReaderNavigationController::loadSpecialListInfo(const QModelIndex &model
|
|||||||
switch(type)
|
switch(type)
|
||||||
{
|
{
|
||||||
case ReadingListModel::Favorites:
|
case ReadingListModel::Favorites:
|
||||||
libraryWindow->emptySpecialList->setPixmap(QPixmap(":/images/empty_favorites.png"));
|
comicsViewsManager->emptySpecialList->setPixmap(QPixmap(":/images/empty_favorites.png"));
|
||||||
libraryWindow->emptySpecialList->setText(tr("No favorites"));
|
comicsViewsManager->emptySpecialList->setText(tr("No favorites"));
|
||||||
break;
|
break;
|
||||||
case ReadingListModel::Reading:
|
case ReadingListModel::Reading:
|
||||||
libraryWindow->emptySpecialList->setPixmap(QPixmap(":/images/empty_current_readings.png"));
|
comicsViewsManager->emptySpecialList->setPixmap(QPixmap(":/images/empty_current_readings.png"));
|
||||||
libraryWindow->emptySpecialList->setText(tr("You are not reading anything yet, come on!!"));
|
comicsViewsManager->emptySpecialList->setText(tr("You are not reading anything yet, come on!!"));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
libraryWindow->showEmptySpecialList();
|
comicsViewsManager->showEmptySpecialList();
|
||||||
libraryWindow->disableComicsActions(true);
|
libraryWindow->disableComicsActions(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -148,20 +149,20 @@ void YACReaderNavigationController::loadLabelInfo(const QModelIndex &modelIndex)
|
|||||||
qulonglong id = modelIndex.data(ReadingListModel::IDRole).toULongLong();
|
qulonglong id = modelIndex.data(ReadingListModel::IDRole).toULongLong();
|
||||||
//check comics in label with id = id
|
//check comics in label with id = id
|
||||||
libraryWindow->comicsModel->setupLabelModelData(id,libraryWindow->foldersModel->getDatabase());
|
libraryWindow->comicsModel->setupLabelModelData(id,libraryWindow->foldersModel->getDatabase());
|
||||||
libraryWindow->comicsView->setModel(libraryWindow->comicsModel);
|
comicsViewsManager->comicsView->setModel(libraryWindow->comicsModel);
|
||||||
|
|
||||||
//configure views
|
//configure views
|
||||||
if(libraryWindow->comicsModel->rowCount() > 0)
|
if(libraryWindow->comicsModel->rowCount() > 0)
|
||||||
{
|
{
|
||||||
//updateView
|
//updateView
|
||||||
libraryWindow->showComicsView();
|
comicsViewsManager->showComicsView();
|
||||||
libraryWindow->disableComicsActions(false);
|
libraryWindow->disableComicsActions(false);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
//showEmptyFolder
|
//showEmptyFolder
|
||||||
//loadEmptyLabelInfo(); //there is no info in an empty label by now, TODO design something
|
//loadEmptyLabelInfo(); //there is no info in an empty label by now, TODO design something
|
||||||
libraryWindow->emptyLabelWidget->setColor((YACReader::LabelColors)modelIndex.data(ReadingListModel::LabelColorRole).toInt());
|
comicsViewsManager->emptyLabelWidget->setColor((YACReader::LabelColors)modelIndex.data(ReadingListModel::LabelColorRole).toInt());
|
||||||
libraryWindow->showEmptyLabelView();
|
comicsViewsManager->showEmptyLabelView();
|
||||||
libraryWindow->disableComicsActions(true);
|
libraryWindow->disableComicsActions(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -171,17 +172,17 @@ void YACReaderNavigationController::loadReadingListInfo(const QModelIndex &model
|
|||||||
qulonglong id = modelIndex.data(ReadingListModel::IDRole).toULongLong();
|
qulonglong id = modelIndex.data(ReadingListModel::IDRole).toULongLong();
|
||||||
//check comics in label with id = id
|
//check comics in label with id = id
|
||||||
libraryWindow->comicsModel->setupReadingListModelData(id,libraryWindow->foldersModel->getDatabase());
|
libraryWindow->comicsModel->setupReadingListModelData(id,libraryWindow->foldersModel->getDatabase());
|
||||||
libraryWindow->comicsView->setModel(libraryWindow->comicsModel);
|
comicsViewsManager->comicsView->setModel(libraryWindow->comicsModel);
|
||||||
|
|
||||||
//configure views
|
//configure views
|
||||||
if(libraryWindow->comicsModel->rowCount() > 0)
|
if(libraryWindow->comicsModel->rowCount() > 0)
|
||||||
{
|
{
|
||||||
//updateView
|
//updateView
|
||||||
libraryWindow->showComicsView();
|
comicsViewsManager->showComicsView();
|
||||||
libraryWindow->disableComicsActions(false);
|
libraryWindow->disableComicsActions(false);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
libraryWindow->showEmptyReadingListWidget();
|
comicsViewsManager->showEmptyReadingListWidget();
|
||||||
libraryWindow->disableComicsActions(true);
|
libraryWindow->disableComicsActions(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -273,7 +274,7 @@ void YACReaderNavigationController::loadEmptyFolderInfo(const QModelIndex &model
|
|||||||
{
|
{
|
||||||
QStringList subfolders;
|
QStringList subfolders;
|
||||||
subfolders = libraryWindow->foldersModel->getSubfoldersNames(modelIndex);
|
subfolders = libraryWindow->foldersModel->getSubfoldersNames(modelIndex);
|
||||||
libraryWindow->emptyFolderWidget->setSubfolders(modelIndex,subfolders);
|
comicsViewsManager->emptyFolderWidget->setSubfolders(modelIndex,subfolders);
|
||||||
}
|
}
|
||||||
|
|
||||||
void YACReaderNavigationController::loadPreviousStatus()
|
void YACReaderNavigationController::loadPreviousStatus()
|
||||||
@ -287,7 +288,7 @@ void YACReaderNavigationController::setupConnections()
|
|||||||
connect(libraryWindow->foldersView,SIGNAL(clicked(QModelIndex)),this,SLOT(selectedFolder(QModelIndex)));
|
connect(libraryWindow->foldersView,SIGNAL(clicked(QModelIndex)),this,SLOT(selectedFolder(QModelIndex)));
|
||||||
connect(libraryWindow->listsView,SIGNAL(clicked(QModelIndex)),this,SLOT(selectedList(QModelIndex)));
|
connect(libraryWindow->listsView,SIGNAL(clicked(QModelIndex)),this,SLOT(selectedList(QModelIndex)));
|
||||||
connect(libraryWindow->historyController,SIGNAL(modelIndexSelected(YACReaderLibrarySourceContainer)),this,SLOT(selectedIndexFromHistory(YACReaderLibrarySourceContainer)));
|
connect(libraryWindow->historyController,SIGNAL(modelIndexSelected(YACReaderLibrarySourceContainer)),this,SLOT(selectedIndexFromHistory(YACReaderLibrarySourceContainer)));
|
||||||
connect(libraryWindow->emptyFolderWidget,SIGNAL(subfolderSelected(QModelIndex,int)),this,SLOT(selectSubfolder(QModelIndex,int)));
|
connect(comicsViewsManager->emptyFolderWidget,SIGNAL(subfolderSelected(QModelIndex,int)),this,SLOT(selectSubfolder(QModelIndex,int)));
|
||||||
connect(libraryWindow->comicsModel,SIGNAL(isEmpty()),this,SLOT(reselectCurrentSource()));
|
connect(libraryWindow->comicsModel,SIGNAL(isEmpty()),this,SLOT(reselectCurrentSource()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,13 +4,14 @@
|
|||||||
#include <QObject>
|
#include <QObject>
|
||||||
class LibraryWindow;
|
class LibraryWindow;
|
||||||
class YACReaderLibrarySourceContainer;
|
class YACReaderLibrarySourceContainer;
|
||||||
|
class YACReaderComicsViewsManager;
|
||||||
|
|
||||||
class YACReaderNavigationController : public QObject
|
class YACReaderNavigationController : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
|
|
||||||
explicit YACReaderNavigationController(LibraryWindow * parent);
|
explicit YACReaderNavigationController(LibraryWindow * parent, YACReaderComicsViewsManager * comicsViewsManager);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
@ -45,6 +46,7 @@ private:
|
|||||||
|
|
||||||
void setupConnections();
|
void setupConnections();
|
||||||
LibraryWindow * libraryWindow;
|
LibraryWindow * libraryWindow;
|
||||||
|
YACReaderComicsViewsManager * comicsViewsManager;
|
||||||
|
|
||||||
//convenience methods
|
//convenience methods
|
||||||
qulonglong folderModelIndexToID(const QModelIndex & mi);
|
qulonglong folderModelIndexToID(const QModelIndex & mi);
|
||||||
|
@ -11,6 +11,11 @@ ComicDB::ComicDB()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ComicDB::ComicDB(const ComicDB &comicDB)
|
||||||
|
{
|
||||||
|
operator=(comicDB);
|
||||||
|
}
|
||||||
|
|
||||||
bool ComicDB::isDir()
|
bool ComicDB::isDir()
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
@ -108,6 +113,17 @@ QString ComicDB::toTXT()
|
|||||||
return txt;
|
return txt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ComicDB &ComicDB::operator=(const ComicDB &other)
|
||||||
|
{
|
||||||
|
LibraryItem::operator =(other);
|
||||||
|
|
||||||
|
this->_hasCover = other._hasCover;
|
||||||
|
|
||||||
|
this->info = other.info;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
QString ComicDB::getFileName() const
|
QString ComicDB::getFileName() const
|
||||||
{
|
{
|
||||||
return QFileInfo(path).fileName();
|
return QFileInfo(path).fileName();
|
||||||
@ -136,6 +152,16 @@ qulonglong ComicDB::getFileSize() const
|
|||||||
return info.hash.right(info.hash.length()-40).toLongLong();
|
return info.hash.right(info.hash.length()-40).toLongLong();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString ComicDB::getTitleIncludingNumber() const
|
||||||
|
{
|
||||||
|
if(!info.number.isNull())
|
||||||
|
{
|
||||||
|
return "#" + info.number.toString() + " - " + getTitleOrFileName();
|
||||||
|
}
|
||||||
|
|
||||||
|
return getTitleOrFileName();
|
||||||
|
}
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//COMIC_INFO-------------------------------------------------------------------
|
//COMIC_INFO-------------------------------------------------------------------
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
@ -348,6 +374,104 @@ QPixmap ComicInfo::getCover(const QString & basePath)
|
|||||||
c.convertFromImage(cover);
|
c.convertFromImage(cover);
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QStringList ComicInfo::getWriters()
|
||||||
|
{
|
||||||
|
if(writer.toString().length()>0)
|
||||||
|
{
|
||||||
|
return writer.toString().split("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return QStringList();
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList ComicInfo::getPencillers()
|
||||||
|
{
|
||||||
|
if(penciller.toString().length()>0)
|
||||||
|
{
|
||||||
|
return penciller.toString().split("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return QStringList();
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList ComicInfo::getInkers()
|
||||||
|
{
|
||||||
|
if(inker.toString().length()>0)
|
||||||
|
{
|
||||||
|
return inker.toString().split("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return QStringList();
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList ComicInfo::getColorists()
|
||||||
|
{
|
||||||
|
if(colorist.toString().length()>0)
|
||||||
|
{
|
||||||
|
return colorist.toString().split("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return QStringList();
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList ComicInfo::getLetterers()
|
||||||
|
{
|
||||||
|
if(letterer.toString().length()>0)
|
||||||
|
{
|
||||||
|
return letterer.toString().split("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return QStringList();
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList ComicInfo::getCoverArtists()
|
||||||
|
{
|
||||||
|
if(coverArtist.toString().length()>0)
|
||||||
|
{
|
||||||
|
return coverArtist.toString().split("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return QStringList();
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList ComicInfo::getCharacters()
|
||||||
|
{
|
||||||
|
if(characters.toString().length()>0)
|
||||||
|
{
|
||||||
|
return characters.toString().split("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return QStringList();
|
||||||
|
}
|
||||||
|
|
||||||
|
void ComicInfo::setRead(bool r)
|
||||||
|
{
|
||||||
|
if(r != read)
|
||||||
|
{
|
||||||
|
read = r;
|
||||||
|
emit readChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ComicInfo::setRating(int r)
|
||||||
|
{
|
||||||
|
if(r != rating)
|
||||||
|
{
|
||||||
|
rating = r;
|
||||||
|
emit ratingChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ComicInfo::setFavorite(bool f)
|
||||||
|
{
|
||||||
|
if(f != isFavorite)
|
||||||
|
{
|
||||||
|
isFavorite = f;
|
||||||
|
emit favoriteChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
QDataStream &operator<<(QDataStream & stream, const ComicDB & comic)
|
QDataStream &operator<<(QDataStream & stream, const ComicDB & comic)
|
||||||
{
|
{
|
||||||
stream << comic.id;
|
stream << comic.id;
|
||||||
|
@ -8,8 +8,12 @@
|
|||||||
#include <QImage>
|
#include <QImage>
|
||||||
#include <QMetaType>
|
#include <QMetaType>
|
||||||
|
|
||||||
class ComicInfo
|
typedef QPair<QString,QString> YACReaderComicInfoPair;
|
||||||
|
Q_DECLARE_METATYPE(YACReaderComicInfoPair)
|
||||||
|
|
||||||
|
class ComicInfo : public QObject
|
||||||
{
|
{
|
||||||
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
ComicInfo();
|
ComicInfo();
|
||||||
ComicInfo(const ComicInfo & comicInfo);
|
ComicInfo(const ComicInfo & comicInfo);
|
||||||
@ -17,6 +21,9 @@ public:
|
|||||||
|
|
||||||
ComicInfo & operator=(const ComicInfo & comicInfo);
|
ComicInfo & operator=(const ComicInfo & comicInfo);
|
||||||
|
|
||||||
|
bool operator==(const ComicInfo & other){return id == other.id;}
|
||||||
|
bool operator!=(const ComicInfo & other){return id != other.id;}
|
||||||
|
|
||||||
//mandatory fields
|
//mandatory fields
|
||||||
qulonglong id;
|
qulonglong id;
|
||||||
bool read;
|
bool read;
|
||||||
@ -111,47 +118,131 @@ public:
|
|||||||
|
|
||||||
QPixmap getCover(const QString & basePath);
|
QPixmap getCover(const QString & basePath);
|
||||||
|
|
||||||
|
Q_INVOKABLE QStringList getWriters();
|
||||||
|
Q_INVOKABLE QStringList getPencillers();
|
||||||
|
Q_INVOKABLE QStringList getInkers();
|
||||||
|
Q_INVOKABLE QStringList getColorists();
|
||||||
|
Q_INVOKABLE QStringList getLetterers();
|
||||||
|
Q_INVOKABLE QStringList getCoverArtists();
|
||||||
|
|
||||||
|
Q_INVOKABLE QStringList getCharacters();
|
||||||
|
|
||||||
friend QDataStream &operator<<(QDataStream & stream, const ComicInfo & comicInfo);
|
friend QDataStream &operator<<(QDataStream & stream, const ComicInfo & comicInfo);
|
||||||
|
|
||||||
friend QDataStream &operator>>(QDataStream & stream, ComicInfo & comicInfo);
|
friend QDataStream &operator>>(QDataStream & stream, ComicInfo & comicInfo);
|
||||||
|
|
||||||
|
Q_PROPERTY(qulonglong id MEMBER id CONSTANT)
|
||||||
|
Q_PROPERTY(bool read MEMBER read WRITE setRead NOTIFY readChanged)
|
||||||
|
Q_PROPERTY(bool edited MEMBER edited CONSTANT)
|
||||||
|
Q_PROPERTY(QString hash MEMBER hash CONSTANT)
|
||||||
|
Q_PROPERTY(bool existOnDb MEMBER existOnDb CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(int rating MEMBER rating WRITE setRating NOTIFY ratingChanged)
|
||||||
|
|
||||||
|
Q_PROPERTY(bool hasBeenOpened MEMBER hasBeenOpened CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(int currentPage MEMBER currentPage CONSTANT)
|
||||||
|
Q_PROPERTY(int bookmark1 MEMBER bookmark1 CONSTANT)
|
||||||
|
Q_PROPERTY(int bookmark2 MEMBER bookmark2 CONSTANT)
|
||||||
|
Q_PROPERTY(int bookmark3 MEMBER bookmark3 CONSTANT)
|
||||||
|
Q_PROPERTY(int brightness MEMBER brightness CONSTANT)
|
||||||
|
Q_PROPERTY(int contrast MEMBER contrast CONSTANT)
|
||||||
|
Q_PROPERTY(int gamma MEMBER gamma CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant title MEMBER title CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant coverPage MEMBER coverPage CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant numPages MEMBER numPages CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant number MEMBER number CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant isBis MEMBER isBis CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant count MEMBER count CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant volume MEMBER volume CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant storyArc MEMBER storyArc CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant arcNumber MEMBER arcNumber CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant arcCount MEMBER arcCount CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant genere MEMBER genere CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant writer MEMBER writer CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant penciller MEMBER penciller CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant inker MEMBER inker CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant colorist MEMBER colorist CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant letterer MEMBER letterer CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant coverArtist MEMBER coverArtist CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant date MEMBER date CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant publisher MEMBER publisher CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant format MEMBER format CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant color MEMBER color CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant ageRating MEMBER ageRating CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant synopsis MEMBER synopsis CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant characters MEMBER characters CONSTANT)
|
||||||
|
Q_PROPERTY(QVariant notes MEMBER notes CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QVariant comicVineID MEMBER comicVineID CONSTANT)
|
||||||
|
|
||||||
|
Q_PROPERTY(QImage cover MEMBER cover CONSTANT)
|
||||||
|
|
||||||
|
//-new properties, not loaded from the DB automatically
|
||||||
|
bool isFavorite;
|
||||||
|
Q_PROPERTY(bool isFavorite MEMBER isFavorite WRITE setFavorite NOTIFY favoriteChanged)
|
||||||
|
|
||||||
|
//setters, used in QML only by now
|
||||||
|
void setRead(bool r);
|
||||||
|
void setRating(int r);
|
||||||
|
void setFavorite(bool f);
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void readChanged();
|
||||||
|
void ratingChanged();
|
||||||
|
void favoriteChanged();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class ComicDB : public LibraryItem
|
class ComicDB : public LibraryItem
|
||||||
{
|
{
|
||||||
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
ComicDB();
|
ComicDB();
|
||||||
|
ComicDB(const ComicDB & comicDB);
|
||||||
|
|
||||||
bool isDir();
|
bool isDir();
|
||||||
|
|
||||||
bool _hasCover;
|
bool _hasCover;
|
||||||
|
|
||||||
bool hasCover() {return _hasCover;};
|
bool hasCover() {return _hasCover;}
|
||||||
|
|
||||||
//return comic file name
|
//return comic file name
|
||||||
QString getFileName() const;
|
QString getFileName() const;
|
||||||
|
|
||||||
//returns comic title if it isn't null or empty, in other case returns fileName
|
//returns comic title if it isn't null or empty, in other case returns fileName
|
||||||
QString getTitleOrFileName() const;
|
Q_INVOKABLE QString getTitleOrFileName() const;
|
||||||
|
|
||||||
//returns parent folder name
|
//returns parent folder name
|
||||||
QString getParentFolderName() const;
|
QString getParentFolderName() const;
|
||||||
|
|
||||||
//return the size of the file in bytes
|
//return the size of the file in bytes
|
||||||
qulonglong getFileSize() const;
|
Q_INVOKABLE qulonglong getFileSize() const;
|
||||||
|
|
||||||
|
Q_INVOKABLE QString getTitleIncludingNumber() const;
|
||||||
|
|
||||||
QString toTXT();
|
QString toTXT();
|
||||||
|
|
||||||
ComicInfo info;
|
ComicInfo info;
|
||||||
|
Q_PROPERTY(ComicInfo info MEMBER info)
|
||||||
|
|
||||||
bool operator==(const ComicDB & other){return id == other.id;};
|
ComicDB & operator=(const ComicDB & other);
|
||||||
|
bool operator==(const ComicDB & other){return id == other.id;}
|
||||||
|
|
||||||
friend QDataStream &operator<<(QDataStream &, const ComicDB &);
|
friend QDataStream &operator<<(QDataStream &, const ComicDB &);
|
||||||
friend QDataStream &operator>>(QDataStream &, ComicDB &);
|
friend QDataStream &operator>>(QDataStream &, ComicDB &);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Q_DECLARE_METATYPE(ComicDB);
|
Q_DECLARE_METATYPE(ComicDB)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
#include "folder.h"
|
||||||
|
|
||||||
|
Folder::Folder(const Folder &folder)
|
||||||
|
{
|
||||||
|
operator=(folder);
|
||||||
|
}
|
||||||
|
|
||||||
|
Folder &Folder::operator =(const Folder &other)
|
||||||
|
{
|
||||||
|
LibraryItem::operator =(other);
|
||||||
|
|
||||||
|
this->knownParent = other.knownParent;
|
||||||
|
this->knownId = other.knownId;
|
||||||
|
this->finished = other.finished;
|
||||||
|
this->completed = other.completed;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
@ -11,16 +11,18 @@ public:
|
|||||||
bool knownParent;
|
bool knownParent;
|
||||||
bool knownId;
|
bool knownId;
|
||||||
|
|
||||||
Folder():knownParent(false), knownId(false){};
|
Folder():knownParent(false), knownId(false){}
|
||||||
Folder(qulonglong sid, qulonglong pid,QString fn, QString fp):knownParent(true), knownId(true){id = sid; parentId = pid;name = fn; path = fp;};
|
Folder(qulonglong sid, qulonglong pid,QString fn, QString fp):knownParent(true), knownId(true){id = sid; parentId = pid;name = fn; path = fp;}
|
||||||
Folder(QString fn, QString fp):knownParent(false), knownId(false){name = fn; path = fp;};
|
Folder(QString fn, QString fp):knownParent(false), knownId(false){name = fn; path = fp;}
|
||||||
void setId(qulonglong sid){id = sid;knownId = true;};
|
Folder(const Folder &folder);
|
||||||
void setFather(qulonglong pid){parentId = pid;knownParent = true;};
|
Folder &operator =(const Folder & other);
|
||||||
bool isDir() {return true;};
|
void setId(qulonglong sid){id = sid;knownId = true;}
|
||||||
bool isFinished() const {return finished;};
|
void setFather(qulonglong pid){parentId = pid;knownParent = true;}
|
||||||
bool isCompleted() const {return completed;};
|
bool isDir() {return true;}
|
||||||
void setFinished(bool b) {finished = b;};
|
bool isFinished() const {return finished;}
|
||||||
void setCompleted(bool b) {completed = b;};
|
bool isCompleted() const {return completed;}
|
||||||
|
void setFinished(bool b) {finished = b;}
|
||||||
|
void setCompleted(bool b) {completed = b;}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool finished;
|
bool finished;
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
#include "library_item.h"
|
||||||
|
|
||||||
|
LibraryItem &LibraryItem::operator=(const LibraryItem &other)
|
||||||
|
{
|
||||||
|
this->name = other.name;
|
||||||
|
this->path = other.path;
|
||||||
|
this->parentId = other.parentId;
|
||||||
|
this->id = other.id;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
@ -3,10 +3,12 @@
|
|||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
class LibraryItem
|
class LibraryItem : public QObject
|
||||||
{
|
{
|
||||||
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
virtual bool isDir() = 0;
|
virtual bool isDir() = 0;
|
||||||
|
LibraryItem & operator=(const LibraryItem & other);
|
||||||
QString name;
|
QString name;
|
||||||
QString path;
|
QString path;
|
||||||
qulonglong parentId;
|
qulonglong parentId;
|
||||||
|
@ -53,6 +53,8 @@
|
|||||||
#define COMICS_VIEW_FLOW_SPLITTER_STATUS "COMICS_VIEW_FLOW_SPLITTER_STATUS"
|
#define COMICS_VIEW_FLOW_SPLITTER_STATUS "COMICS_VIEW_FLOW_SPLITTER_STATUS"
|
||||||
#define SIDEBAR_SPLITTER_STATUS "SIDEBAR_SPLITTER_STATUS"
|
#define SIDEBAR_SPLITTER_STATUS "SIDEBAR_SPLITTER_STATUS"
|
||||||
#define COMICS_GRID_COVER_SIZES "COMICS_GRID_COVER_SIZES"
|
#define COMICS_GRID_COVER_SIZES "COMICS_GRID_COVER_SIZES"
|
||||||
|
#define COMICS_GRID_SHOW_INFO "COMICS_GRID_SHOW_INFO"
|
||||||
|
#define COMICS_GRID_INFO_WIDTH "COMICS_GRID_INFO_WIDTH"
|
||||||
|
|
||||||
#define COMIC_VINE_API_KEY "COMIC_VINE_API_KEY"
|
#define COMIC_VINE_API_KEY "COMIC_VINE_API_KEY"
|
||||||
#define COMIC_VINE_BASE_URL "COMIC_VINE_BASE_URL"
|
#define COMIC_VINE_BASE_URL "COMIC_VINE_BASE_URL"
|
||||||
@ -76,7 +78,8 @@ static const QString YACReaderLibrarSubReadingListMimeDataFormat = "application/
|
|||||||
enum ComicsViewStatus
|
enum ComicsViewStatus
|
||||||
{
|
{
|
||||||
Flow,
|
Flow,
|
||||||
Grid
|
Grid,
|
||||||
|
Info
|
||||||
};
|
};
|
||||||
|
|
||||||
enum FitMode{
|
enum FitMode{
|
||||||
|
BIN
images/comics_view_toolbar/show_comic_info.png
Normal file
After Width: | Height: | Size: 133 B |
BIN
images/comics_view_toolbar/show_comic_info@2x.png
Normal file
After Width: | Height: | Size: 154 B |
Before Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 146 KiB |
Before Width: | Height: | Size: 127 KiB |
Before Width: | Height: | Size: 147 KiB |
BIN
images/main_toolbar/info.png
Normal file
After Width: | Height: | Size: 197 B |