aboutsummaryrefslogtreecommitdiff
path: root/pageitem.cc
blob: 09c84ae0e5a546fb31472bc3b0bca46e09cbd572 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * scribiu -- read notebooks and voice memos from Livescribe pens
 * Copyright (C) 2015 Javier S. Pedro <javier@javispedro.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#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;
}