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
|
/* KRPINTER4 - Simple PostScript document printer
* Copyright (C) 2014 Marco Nelles, credativ GmbH (marco.nelles@credativ.de)
* <http://www.credativ.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/>.
*/
/*
Gwenview:
Copyright 2007 Aurélien Gâteau <agateau@kde.org>
*/
#include "printscalingoptionswidget.h"
printScalingOptionsWidget::printScalingOptionsWidget(QWidget *parent) : printScalingOptionsWidgetUI(parent) {
initPositionFrame();
mScaleGroup.addButton(mNoScale, NoScale);
mScaleGroup.addButton(mScaleToPage, ScaleToPage);
mScaleGroup.addButton(mScaleTo, ScaleToCustomSize);
connect(mNoScale, SIGNAL(toggled(bool)), SLOT(emitScalingEnabled(bool)));
}
printScalingOptionsWidget::~printScalingOptionsWidget() {
}
void printScalingOptionsWidget::initPositionFrame() {
mPositionFrame->setStyleSheet(
"QFrame {"
" background-color: palette(mid);"
" border: 1px solid palette(dark);"
"}"
"QToolButton {"
" border: none;"
" background: palette(base);"
"}"
"QToolButton:hover {"
" background: palette(alternate-base);"
" border: 1px solid palette(highlight);"
"}"
"QToolButton:checked {"
" background-color: palette(highlight);"
"}"
);
QGridLayout* layout = new QGridLayout(mPositionFrame);
layout->setMargin(0);
layout->setSpacing(1);
for (int row = 0; row < 3; ++row) {
for (int col = 0; col < 3; ++col) {
QToolButton* button = new QToolButton(mPositionFrame);
button->setFixedSize(40, 40);
button->setCheckable(TRUE);
layout->addWidget(button, row, col);
Qt::Alignment alignment;
if (row == 0) {
alignment = Qt::AlignTop;
} else if (row == 1) {
alignment = Qt::AlignVCenter;
} else {
alignment = Qt::AlignBottom;
}
if (col == 0) {
alignment |= Qt::AlignLeft;
} else if (col == 1) {
alignment |= Qt::AlignHCenter;
} else {
alignment |= Qt::AlignRight;
}
mPositionGroup.addButton(button, int(alignment));
if (alignment & Qt::AlignVCenter && alignment & Qt::AlignHCenter)
{
button->setChecked(TRUE);
}
}
}
}
Qt::Alignment printScalingOptionsWidget::alignment() const {
int id = mPositionGroup.checkedId();
return Qt::Alignment(id);
}
printScalingOptionsWidget::ScaleMode printScalingOptionsWidget::scaleMode() const {
return printScalingOptionsWidget::ScaleMode(mScaleGroup.checkedId());
}
bool printScalingOptionsWidget::enlargeSmallerImages() const {
return kcfg_PrintEnlargeSmallerImages->isChecked();
}
double printScalingOptionsWidget::scaleFactor() const {
return kcfg_PrintScalePercent->value() / 100.0f;
}
QSize printScalingOptionsWidget::adjustPainterSize(const QImage& img, const QSize & viewportSize, const QSizeF& pageSize, const QSizeF& paperSize) {
QSize size = img.size();
printScalingOptionsWidget::ScaleMode scaleMode = this->scaleMode();
if (scaleMode == printScalingOptionsWidget::ScaleToPage) {
bool imageBiggerThanPaper =
size.width() > viewportSize.width()
|| size.height() > viewportSize.height();
if (imageBiggerThanPaper || enlargeSmallerImages()) {
size.scale(viewportSize, Qt::KeepAspectRatio);
}
} else if (scaleMode == printScalingOptionsWidget::ScaleToCustomSize) {
qreal scalePixelX = pageSize.width() / paperSize.width();
qreal scalePixelY = pageSize.height() / paperSize.height();
size.scale(viewportSize.width() * scalePixelX * scaleFactor(),
viewportSize.height() * scalePixelY * scaleFactor(),
Qt::KeepAspectRatio);
}
return size;
}
QPoint printScalingOptionsWidget::adjustPainterPosition(const QSize& imageSize, const QSize & viewportSize) {
Qt::Alignment alignment = this->alignment();
int posX, posY;
if (alignment & Qt::AlignLeft) {
posX = 0;
} else if (alignment & Qt::AlignHCenter) {
posX = (viewportSize.width() - imageSize.width()) / 2;
} else {
posX = viewportSize.width() - imageSize.width();
}
if (alignment & Qt::AlignTop) {
posY = 0;
} else if (alignment & Qt::AlignVCenter) {
posY = (viewportSize.height() - imageSize.height()) / 2;
} else {
posY = viewportSize.height() - imageSize.height();
}
return QPoint(posX, posY);
}
void printScalingOptionsWidget::emitScalingEnabled(bool noScale) {
emit scalingEnabled(!noScale);
}
|