mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
two "comics views" added, classic (flow+table_view) and grid (based on qml/qtquick) TODO: the views are only interchangeable in compilation time, some more work is needed for doing it in run time. fixed reloadCovers
12 lines
175 B
C++
12 lines
175 B
C++
#include "comics_view.h"
|
|
|
|
ComicsView::ComicsView(QWidget *parent) :
|
|
QWidget(parent),model(NULL)
|
|
{
|
|
}
|
|
|
|
void ComicsView::setModel(TableModel *m)
|
|
{
|
|
model = m;
|
|
}
|