aboutsummaryrefslogtreecommitdiff
path: root/pageitem.cc
blob: 3bd5b7f1408ed1a475fb6fb69b8d07974324721e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <QtCore/QDebug>
#include <QtGui/QPen>
#include "pageitem.h"
#include "stfgraphicsitem.h"

PageItem::PageItem(AfdNotebook *nb, PaperReplay *replay, int pageNum, QGraphicsItem *parent) :
    QGraphicsItem(parent), _nb(nb), _replay(replay), _pageNum(pageNum), _strokesLoaded(false)
{
	_pageSize = _nb->getPageSize(pageNum);
	_pageTrim = _nb->getPageTrim(pageNum);

	QGraphicsRectItem *border = new QGraphicsRectItem(_pageTrim, this);
	border->setPen(QPen(Qt::black));

	QPixmap bgPix = _nb->getPageBackground(_pageNum);
	QGraphicsPixmapItem *bg = new QGraphicsPixmapItem(bgPix, this);
	bg->setShapeMode(QGraphicsPixmapItem::BoundingRectShape);
	bg->setTransformationMode(Qt::SmoothTransformation);
	QRectF bgRect = bg->boundingRect();
	bg->scale(_pageTrim.width() / bgRect.width(), _pageTrim.height() / bgRect.height());
	bg->setPos(_pageTrim.topLeft());
}

QRectF PageItem::boundingRect() const
{
	return QRectF(QPointF(0, 0), _pageSize);
}

void PageItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
	Q_UNUSED(painter);
	Q_UNUSED(option);
	Q_UNUSED(widget);
	if (!_strokesLoaded) {
		createStrokes();
		_strokesLoaded = true;
	}
}

int PageItem::type() const
{
	return Type;
}

int PageItem::pageNum() const
{
	return _pageNum;
}

void PageItem::createStrokes()
{
	QStringList pens = _nb->penSerials();
	if (pens.isEmpty()) return;

	// Load paper replay data if available
	AfdPageAddress pageAddr = _nb->getPageAddress(_pageNum);
	PaperReplay::SessionList replays = _replay ? _replay->sessions(pageAddr.toUInt64()) : PaperReplay::SessionList();

	// Now create a new StfGraphicsItem for every stroke file
	// Which will in turn create a stroke item for every stroke
	QStringList strokeFiles = _nb->strokeFiles(pens.first(), _pageNum);
	foreach (const QString &strokeFile, strokeFiles) {
		QFile f(strokeFile);
		if (!f.open(QIODevice::ReadOnly)) {
			qWarning() << "Could not open stroke file:" << strokeFile;
			continue;
		}
		new StfGraphicsItem(&f, replays, this);
	}

	qDebug() << "strokes loaded for page" << _pageNum;
}