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
2022-02-24 22:30:33 +01:00
Printer->setPageSize(QPageSize(QPageSize::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") {
2022-02-24 22:30:33 +01:00
Printer->setPageSize(QPageSize(QPageSize::A3));
2014-11-25 00:01:41 +08:00
} else if (page == "B4") {
2022-02-24 22:30:33 +01:00
Printer->setPageSize(QPageSize(QPageSize::B4));
2014-11-25 00:01:41 +08:00
} else if (page == "B5") {
2022-02-24 22:30:33 +01:00
Printer->setPageSize(QPageSize(QPageSize::B5));
2014-11-25 00:01:41 +08:00
} else {
2022-02-24 22:30:33 +01:00
Printer->setPageSize(QPageSize(QPageSize::A4));
2014-11-25 00:01:41 +08:00
}
//dpi
Printer->setResolution(dpi);
//color
if (color == "BW") {
Printer->setColorMode(QPrinter::GrayScale);
} else {
Printer->setColorMode(QPrinter::Color);
}
//orientation
if (orientation == "landscape") {
2022-02-24 22:30:33 +01:00
Printer->setPageOrientation(QPageLayout::Landscape);
2014-11-25 00:01:41 +08:00
} else {
2022-02-24 22:30:33 +01:00
Printer->setPageOrientation(QPageLayout::Portrait);
2014-11-25 00:01:41 +08:00
}
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"));
2023-01-17 13:27:12 +03:00
dialog->setOption(QAbstractPrintDialog::PrintSelection);
2014-11-24 21:12:45 +08:00
if (QucsApp::isTextDocument(doc))
2014-11-24 21:12:45 +08:00
{
if (dialog->exec() == QDialog::Accepted) {
static_cast<QPlainTextEdit *>(doc)->print(Printer);
}
}
else {
2022-02-24 22:30:33 +01:00
Printer->setPageOrientation(QPageLayout::Landscape);
2014-11-24 21:12:45 +08:00
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;
}
2022-02-24 22:30:33 +01:00
for (int z = Printer->copyCount(); 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;
}