qucs_s/qucs/printerwriter.cpp

132 lines
3.5 KiB
C++
Raw Normal View History

/*
* printerwriter.cpp - implementation of writer to printer
*
* Copyright (C) 2014, Yodalee, lc85301@gmail.com
*
* This file is part of Qucs
*
* Qucs 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 2, or (at your option)
* any later version.
*
* This software 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 Qucs. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "printerwriter.h"
#include "schematic.h"
#include "textdoc.h"
#include "qucs.h"
2014-11-24 21:12:45 +08:00
#include <QPrinter>
#include <QPainter>
#include <QPrintDialog>
PrinterWriter::PrinterWriter()
{
2014-11-24 21:12:45 +08:00
//default setting
Printer = new QPrinter(QPrinter::HighResolution);
/*Printer->setOptionEnabled(QPrinter::PrintSelection, true);
2014-11-24 21:12:45 +08:00
Printer->setOptionEnabled(QPrinter::PrintPageRange, false);
Printer->setOptionEnabled(QPrinter::PrintToFile, true);*/
2014-11-25 00:01:41 +08:00
Printer->setPaperSize(QPrinter::A4);
2014-11-24 21:12:45 +08:00
Printer->setColorMode(QPrinter::Color);
Printer->setFullPage(true);
fitToPage = false;
}
PrinterWriter::~PrinterWriter()
{
2014-11-24 21:12:45 +08:00
delete Printer;
}
2014-11-25 00:01:41 +08:00
//allow user pass parameter and print document
void
PrinterWriter::noGuiPrint(QWidget *doc, QString printFile,
QString page, int dpi, QString color, QString orientation)
{
//set property
Printer->setOutputFileName(printFile);
//page size
if (page == "A3") {
Printer->setPaperSize(QPrinter::A3);
} else if (page == "B4") {
Printer->setPaperSize(QPrinter::B4);
} else if (page == "B5") {
Printer->setPaperSize(QPrinter::B5);
} else {
Printer->setPaperSize(QPrinter::A4);
}
//dpi
Printer->setResolution(dpi);
//color
if (color == "BW") {
Printer->setColorMode(QPrinter::GrayScale);
} else {
Printer->setColorMode(QPrinter::Color);
}
//orientation
if (orientation == "landscape") {
Printer->setOrientation(QPrinter::Landscape);
} else {
Printer->setOrientation(QPrinter::Portrait);
}
QPainter Painter(Printer);
if(!Painter.device()) { // valid device available ?
return;
}
static_cast<Schematic *>(doc)->print(Printer, &Painter,
Printer->printRange() == QPrinter::AllPages, fitToPage);
}
void
2014-11-24 21:12:45 +08:00
PrinterWriter::print(QWidget *doc)
{
2014-11-24 21:12:45 +08:00
QPrintDialog *dialog = new QPrintDialog(Printer, 0);
dialog->setWindowTitle(QObject::tr("Print Document"));
dialog->addEnabledOption(QAbstractPrintDialog::PrintSelection);
if (QucsApp::isTextDocument(doc))
2014-11-24 21:12:45 +08:00
{
if (dialog->exec() == QDialog::Accepted) {
static_cast<QPlainTextEdit *>(doc)->print(Printer);
}
}
else {
Printer->setOrientation(QPrinter::Landscape);
if (dialog->exec() == QDialog::Accepted)
{
QPainter Painter(Printer);
if(!Painter.device()) { // valid device available ?
2014-11-25 00:01:41 +08:00
delete dialog;
2014-11-24 21:12:45 +08:00
return;
}
for (int z = Printer->numCopies(); z > 0; --z) {
if (Printer->printerState() == QPrinter::Aborted) {
2014-11-24 21:12:45 +08:00
break;
}
static_cast<Schematic *>(doc)->print(Printer, &Painter,
Printer->printRange() == QPrinter::AllPages, fitToPage);
if (z > 1 && !Printer->newPage()) {
2014-11-25 00:01:41 +08:00
delete dialog;
2014-11-24 21:12:45 +08:00
return;
}
}
}
}
delete dialog;
}