/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtPrintSupport module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qcupsjobwidget_p.h" #include #include #include #include #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE #ifndef QT_NO_PRINTER /*! \internal \class QCupsJobWidget A widget to add to QPrintDialog to enable extra CUPS options such as Job Scheduling, Job Priority or Job Billing \ingroup printing \inmodule QtPrintSupport */ QCupsJobWidget::QCupsJobWidget(QWidget *parent) : QWidget(parent) { m_ui.setupUi(this); //set all the default values //TODO restore last used values initJobHold(); initJobBilling(); initJobPriority(); initBannerPages(); } QCupsJobWidget::~QCupsJobWidget() { } void QCupsJobWidget::setPrinter(QPrinter *printer) { m_printer = printer; } void QCupsJobWidget::setupPrinter() { QCUPSSupport::setJobHold(m_printer, jobHold(), jobHoldTime()); QCUPSSupport::setJobBilling(m_printer, jobBilling()); QCUPSSupport::setJobPriority(m_printer, jobPriority()); QCUPSSupport::setBannerPages(m_printer, startBannerPage(), endBannerPage()); } void QCupsJobWidget::initJobHold() { m_ui.jobHoldComboBox->addItem(tr("Print Immediately"), QVariant::fromValue(QCUPSSupport::NoHold)); m_ui.jobHoldComboBox->addItem(tr("Hold Indefinitely"), QVariant::fromValue(QCUPSSupport::Indefinite)); m_ui.jobHoldComboBox->addItem(tr("Day (06:00 to 17:59)"), QVariant::fromValue(QCUPSSupport::DayTime)); m_ui.jobHoldComboBox->addItem(tr("Night (18:00 to 05:59)"), QVariant::fromValue(QCUPSSupport::Night)); m_ui.jobHoldComboBox->addItem(tr("Second Shift (16:00 to 23:59)"), QVariant::fromValue(QCUPSSupport::SecondShift)); m_ui.jobHoldComboBox->addItem(tr("Third Shift (00:00 to 07:59)"), QVariant::fromValue(QCUPSSupport::ThirdShift)); m_ui.jobHoldComboBox->addItem(tr("Weekend (Saturday to Sunday)"), QVariant::fromValue(QCUPSSupport::Weekend)); m_ui.jobHoldComboBox->addItem(tr("Specific Time"), QVariant::fromValue(QCUPSSupport::SpecificTime)); connect(m_ui.jobHoldComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(toggleJobHoldTime())); setJobHold(QCUPSSupport::NoHold, QTime()); toggleJobHoldTime(); } void QCupsJobWidget::setJobHold(QCUPSSupport::JobHoldUntil jobHold, const QTime &holdUntilTime) { if (jobHold == QCUPSSupport::SpecificTime && holdUntilTime.isNull()) { jobHold = QCUPSSupport::NoHold; toggleJobHoldTime(); } m_ui.jobHoldComboBox->setCurrentIndex(m_ui.jobHoldComboBox->findData(QVariant::fromValue(jobHold))); m_ui.jobHoldTimeEdit->setTime(holdUntilTime); } QCUPSSupport::JobHoldUntil QCupsJobWidget::jobHold() const { return m_ui.jobHoldComboBox->itemData(m_ui.jobHoldComboBox->currentIndex()).value(); } void QCupsJobWidget::toggleJobHoldTime() { if (jobHold() == QCUPSSupport::SpecificTime) m_ui.jobHoldTimeEdit->setEnabled(true); else m_ui.jobHoldTimeEdit->setEnabled(false); } QTime QCupsJobWidget::jobHoldTime() const { return m_ui.jobHoldTimeEdit->time(); } void QCupsJobWidget::initJobBilling() { setJobBilling(QString()); } void QCupsJobWidget::setJobBilling(const QString &jobBilling) { m_ui.jobBillingLineEdit->insert(jobBilling); } QString QCupsJobWidget::jobBilling() const { return m_ui.jobBillingLineEdit->text(); } void QCupsJobWidget::initJobPriority() { setJobPriority(50); } void QCupsJobWidget::setJobPriority(int jobPriority) { m_ui.jobPrioritySpinBox->setValue(jobPriority); } int QCupsJobWidget::jobPriority() const { return m_ui.jobPrioritySpinBox->value(); } void QCupsJobWidget::initBannerPages() { m_ui.startBannerPageCombo->addItem(tr("None", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::NoBanner)); m_ui.startBannerPageCombo->addItem(tr("Standard", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Standard)); m_ui.startBannerPageCombo->addItem(tr("Unclassified", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Unclassified)); m_ui.startBannerPageCombo->addItem(tr("Confidential", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Confidential)); m_ui.startBannerPageCombo->addItem(tr("Classified", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Classified)); m_ui.startBannerPageCombo->addItem(tr("Secret", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Secret)); m_ui.startBannerPageCombo->addItem(tr("Top Secret", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::TopSecret)); m_ui.endBannerPageCombo->addItem(tr("None", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::NoBanner)); m_ui.endBannerPageCombo->addItem(tr("Standard", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Standard)); m_ui.endBannerPageCombo->addItem(tr("Unclassified", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Unclassified)); m_ui.endBannerPageCombo->addItem(tr("Confidential", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Confidential)); m_ui.endBannerPageCombo->addItem(tr("Classified", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Classified)); m_ui.endBannerPageCombo->addItem(tr("Secret", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::Secret)); m_ui.endBannerPageCombo->addItem(tr("Top Secret", "CUPS Banner page"), QVariant::fromValue(QCUPSSupport::TopSecret)); setStartBannerPage(QCUPSSupport::NoBanner); setEndBannerPage(QCUPSSupport::NoBanner); } void QCupsJobWidget::setStartBannerPage(const QCUPSSupport::BannerPage bannerPage) { m_ui.startBannerPageCombo->setCurrentIndex(m_ui.startBannerPageCombo->findData(QVariant::fromValue(bannerPage))); } QCUPSSupport::BannerPage QCupsJobWidget::startBannerPage() const { return m_ui.startBannerPageCombo->itemData(m_ui.startBannerPageCombo->currentIndex()).value(); } void QCupsJobWidget::setEndBannerPage(const QCUPSSupport::BannerPage bannerPage) { m_ui.endBannerPageCombo->setCurrentIndex(m_ui.endBannerPageCombo->findData(QVariant::fromValue(bannerPage))); } QCUPSSupport::BannerPage QCupsJobWidget::endBannerPage() const { return m_ui.endBannerPageCombo->itemData(m_ui.endBannerPageCombo->currentIndex()).value(); } #endif // QT_NO_PRINTER QT_END_NAMESPACE