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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
/* This file is part of the KDE project
* Copyright (C) 2007 Thomas Zander <zander@kde.org>
* Copyright (C) 2006 Gary Cramblitt <garycramblitt@comcast.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "KoPagePreviewWidget.h"
#include <KoDpi.h>
#include <KoUnit.h>
#include <KoPageLayout.h>
#include <KoColumns.h>
#include <QPainter>
#include <WidgetsDebug.h>
class Q_DECL_HIDDEN KoPagePreviewWidget::Private
{
public:
KoPageLayout pageLayout;
KoColumns columns;
};
KoPagePreviewWidget::KoPagePreviewWidget(QWidget *parent)
: QWidget(parent)
, d(new Private)
{
setMinimumSize( 100, 100 );
}
KoPagePreviewWidget::~KoPagePreviewWidget()
{
delete d;
}
void KoPagePreviewWidget::paintEvent(QPaintEvent *event)
{
Q_UNUSED(event);
// resolution[XY] is in pixel per pt
qreal resolutionX = POINT_TO_INCH( static_cast<qreal>(KoDpi::dpiX()) );
qreal resolutionY = POINT_TO_INCH( static_cast<qreal>(KoDpi::dpiY()) );
qreal pageWidth = d->pageLayout.width * resolutionX;
qreal pageHeight = d->pageLayout.height * resolutionY;
const bool pageSpread = (d->pageLayout.bindingSide >= 0 && d->pageLayout.pageEdge >= 0);
qreal sheetWidth = pageWidth / (pageSpread?2:1);
qreal zoomH = (height() * 90 / 100) / pageHeight;
qreal zoomW = (width() * 90 / 100) / pageWidth;
qreal zoom = qMin( zoomW, zoomH );
pageWidth *= zoom;
sheetWidth *= zoom;
pageHeight *= zoom;
QPainter painter( this );
QRect page = QRectF((width() - pageWidth) / 2.0,
(height() - pageHeight) / 2.0, sheetWidth, pageHeight).toRect();
painter.save();
drawPage(painter, zoom, page, true);
painter.restore();
if(pageSpread) {
page.moveLeft(page.left() + (int) (sheetWidth));
painter.save();
drawPage(painter, zoom, page, false);
painter.restore();
}
painter.end();
// paint scale
}
void KoPagePreviewWidget::drawPage(QPainter &painter, qreal zoom, const QRect &dimensions, bool left)
{
painter.fillRect(dimensions, QBrush(palette().base()));
painter.setPen(QPen(palette().color(QPalette::Dark), 0));
painter.drawRect(dimensions);
// draw text areas
QRect textArea = dimensions;
if ((d->pageLayout.topMargin == 0 && d->pageLayout.bottomMargin == 0 &&
d->pageLayout.leftMargin == 0 && d->pageLayout.rightMargin == 0) ||
( d->pageLayout.pageEdge == 0 && d->pageLayout.bindingSide == 0)) {
// no margin
return;
}
else {
textArea.setTop(textArea.top() + qRound(zoom * d->pageLayout.topMargin));
textArea.setBottom(textArea.bottom() - qRound(zoom * d->pageLayout.bottomMargin));
qreal leftMargin, rightMargin;
if(d->pageLayout.bindingSide < 0) { // normal margins.
leftMargin = d->pageLayout.leftMargin;
rightMargin = d->pageLayout.rightMargin;
}
else { // margins mirrored for left/right pages
leftMargin = d->pageLayout.bindingSide;
rightMargin = d->pageLayout.pageEdge;
if(left)
qSwap(leftMargin, rightMargin);
}
textArea.setLeft(textArea.left() + qRound(zoom * leftMargin));
textArea.setRight(textArea.right() - qRound(zoom * rightMargin));
}
painter.setBrush( QBrush( palette().color(QPalette::ButtonText), Qt::HorPattern ) );
painter.setPen(QPen(palette().color(QPalette::Dark), 0));
// uniform columns?
if (d->columns.columnData.isEmpty()) {
qreal columnWidth = (textArea.width() + (d->columns.gapWidth * zoom)) / d->columns.count;
int width = qRound(columnWidth - d->columns.gapWidth * zoom);
for ( int i = 0; i < d->columns.count; ++i )
painter.drawRect( qRound(textArea.x() + i * columnWidth), textArea.y(), width, textArea.height());
} else {
qreal totalRelativeWidth = 0.0;
foreach(const KoColumns::ColumnDatum &cd, d->columns.columnData) {
totalRelativeWidth += cd.relativeWidth;
}
int relativeColumnXOffset = 0;
for (int i = 0; i < d->columns.count; i++) {
const KoColumns::ColumnDatum &columnDatum = d->columns.columnData.at(i);
const qreal columnWidth = textArea.width() * columnDatum.relativeWidth / totalRelativeWidth;
const qreal columnXOffset = textArea.width() * relativeColumnXOffset / totalRelativeWidth;
painter.drawRect( qRound(textArea.x() + columnXOffset + columnDatum.leftMargin * zoom),
qRound(textArea.y() + columnDatum.topMargin * zoom),
qRound(columnWidth - (columnDatum.leftMargin + columnDatum.rightMargin) * zoom),
qRound(textArea.height() - (columnDatum.topMargin + columnDatum.bottomMargin) * zoom));
relativeColumnXOffset += columnDatum.relativeWidth;
}
}
}
void KoPagePreviewWidget::setPageLayout(const KoPageLayout &layout)
{
d->pageLayout = layout;
update();
}
void KoPagePreviewWidget::setColumns(const KoColumns &columns)
{
d->columns = columns;
update();
}
|