305 lines
8.4 KiB
C++
305 lines
8.4 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2014 John Layt <jlayt@kde.org>
|
|
** Contact: http://www.qt.io/licensing/
|
|
**
|
|
** 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 The Qt Company. For licensing terms
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at http://www.qt.io/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.
|
|
**
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "qprintdevice_p.h"
|
|
#include "qplatformprintdevice.h"
|
|
|
|
#include <private/qdebug_p.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
#ifndef QT_NO_PRINTER
|
|
|
|
QPrintDevice::QPrintDevice()
|
|
: d(new QPlatformPrintDevice())
|
|
{
|
|
}
|
|
|
|
QPrintDevice::QPrintDevice(const QString &id)
|
|
: d(new QPlatformPrintDevice(id))
|
|
{
|
|
}
|
|
|
|
QPrintDevice::QPrintDevice(QPlatformPrintDevice *dd)
|
|
: d(dd)
|
|
{
|
|
}
|
|
|
|
QPrintDevice::QPrintDevice(const QPrintDevice &other)
|
|
: d(other.d)
|
|
{
|
|
}
|
|
|
|
QPrintDevice::~QPrintDevice()
|
|
{
|
|
}
|
|
|
|
QPrintDevice &QPrintDevice::operator=(const QPrintDevice &other)
|
|
{
|
|
d = other.d;
|
|
return *this;
|
|
}
|
|
|
|
bool QPrintDevice::operator==(const QPrintDevice &other) const
|
|
{
|
|
if (d && other.d)
|
|
return d->id() == other.d->id();
|
|
return d == other.d;
|
|
}
|
|
|
|
QString QPrintDevice::id() const
|
|
{
|
|
return isValid() ? d->id() : QString();
|
|
}
|
|
|
|
QString QPrintDevice::name() const
|
|
{
|
|
return isValid() ? d->name() : QString();
|
|
}
|
|
|
|
QString QPrintDevice::location() const
|
|
{
|
|
return isValid() ? d->location() : QString();
|
|
}
|
|
|
|
QString QPrintDevice::makeAndModel() const
|
|
{
|
|
return isValid() ? d->makeAndModel() : QString();
|
|
}
|
|
|
|
bool QPrintDevice::isValid() const
|
|
{
|
|
return d && d->isValid();
|
|
}
|
|
|
|
bool QPrintDevice::isDefault() const
|
|
{
|
|
return isValid() && d->isDefault();
|
|
}
|
|
|
|
bool QPrintDevice::isRemote() const
|
|
{
|
|
return isValid() && d->isRemote();
|
|
}
|
|
|
|
QPrint::DeviceState QPrintDevice::state() const
|
|
{
|
|
return isValid() ? d->state() : QPrint::Error;
|
|
}
|
|
|
|
bool QPrintDevice::isValidPageLayout(const QPageLayout &layout, int resolution) const
|
|
{
|
|
return isValid() && d->isValidPageLayout(layout, resolution);
|
|
}
|
|
|
|
bool QPrintDevice::supportsMultipleCopies() const
|
|
{
|
|
return isValid() && d->supportsMultipleCopies();
|
|
}
|
|
|
|
bool QPrintDevice::supportsCollateCopies() const
|
|
{
|
|
return isValid() && d->supportsCollateCopies();
|
|
}
|
|
|
|
QPageSize QPrintDevice::defaultPageSize() const
|
|
{
|
|
return isValid() ? d->defaultPageSize() : QPageSize();
|
|
}
|
|
|
|
QList<QPageSize> QPrintDevice::supportedPageSizes() const
|
|
{
|
|
return isValid() ? d->supportedPageSizes() : QList<QPageSize>();
|
|
}
|
|
|
|
QPageSize QPrintDevice::supportedPageSize(const QPageSize &pageSize) const
|
|
{
|
|
return isValid() ? d->supportedPageSize(pageSize) : QPageSize();
|
|
}
|
|
|
|
QPageSize QPrintDevice::supportedPageSize(QPageSize::PageSizeId pageSizeId) const
|
|
{
|
|
return isValid() ? d->supportedPageSize(pageSizeId) : QPageSize();
|
|
}
|
|
|
|
QPageSize QPrintDevice::supportedPageSize(const QString &pageName) const
|
|
{
|
|
return isValid() ? d->supportedPageSize(pageName) : QPageSize();
|
|
}
|
|
|
|
QPageSize QPrintDevice::supportedPageSize(const QSize &pointSize) const
|
|
{
|
|
return isValid() ? d->supportedPageSize(pointSize) : QPageSize();
|
|
}
|
|
|
|
QPageSize QPrintDevice::supportedPageSize(const QSizeF &size, QPageSize::Unit units) const
|
|
{
|
|
return isValid() ? d->supportedPageSize(size, units) : QPageSize();
|
|
}
|
|
|
|
bool QPrintDevice::supportsCustomPageSizes() const
|
|
{
|
|
return isValid() && d->supportsCustomPageSizes();
|
|
}
|
|
|
|
QSize QPrintDevice::minimumPhysicalPageSize() const
|
|
{
|
|
return isValid() ? d->minimumPhysicalPageSize() : QSize();
|
|
}
|
|
|
|
QSize QPrintDevice::maximumPhysicalPageSize() const
|
|
{
|
|
return isValid() ? d->maximumPhysicalPageSize() : QSize();
|
|
}
|
|
|
|
QMarginsF QPrintDevice::printableMargins(const QPageSize &pageSize,
|
|
QPageLayout::Orientation orientation,
|
|
int resolution) const
|
|
{
|
|
return isValid() ? d->printableMargins(pageSize, orientation, resolution) : QMarginsF();
|
|
}
|
|
|
|
int QPrintDevice::defaultResolution() const
|
|
{
|
|
return isValid() ? d->defaultResolution() : 0;
|
|
}
|
|
|
|
QList<int> QPrintDevice::supportedResolutions() const
|
|
{
|
|
return isValid() ? d->supportedResolutions() : QList<int>();
|
|
}
|
|
|
|
QPrint::InputSlot QPrintDevice::defaultInputSlot() const
|
|
{
|
|
return isValid() ? d->defaultInputSlot() : QPrint::InputSlot();
|
|
}
|
|
|
|
QList<QPrint::InputSlot> QPrintDevice::supportedInputSlots() const
|
|
{
|
|
return isValid() ? d->supportedInputSlots() : QList<QPrint::InputSlot>();
|
|
}
|
|
|
|
QPrint::OutputBin QPrintDevice::defaultOutputBin() const
|
|
{
|
|
return isValid() ? d->defaultOutputBin() : QPrint::OutputBin();
|
|
}
|
|
|
|
QList<QPrint::OutputBin> QPrintDevice::supportedOutputBins() const
|
|
{
|
|
return isValid() ? d->supportedOutputBins() : QList<QPrint::OutputBin>();
|
|
}
|
|
|
|
QPrint::DuplexMode QPrintDevice::defaultDuplexMode() const
|
|
{
|
|
return isValid() ? d->defaultDuplexMode() : QPrint::DuplexNone;
|
|
}
|
|
|
|
QList<QPrint::DuplexMode> QPrintDevice::supportedDuplexModes() const
|
|
{
|
|
return isValid() ? d->supportedDuplexModes() : QList<QPrint::DuplexMode>();
|
|
}
|
|
|
|
QPrint::ColorMode QPrintDevice::defaultColorMode() const
|
|
{
|
|
return isValid() ? d->defaultColorMode() : QPrint::GrayScale;
|
|
}
|
|
|
|
QList<QPrint::ColorMode> QPrintDevice::supportedColorModes() const
|
|
{
|
|
return isValid() ? d->supportedColorModes() : QList<QPrint::ColorMode>();
|
|
}
|
|
|
|
#ifndef QT_NO_MIMETYPE
|
|
QList<QMimeType> QPrintDevice::supportedMimeTypes() const
|
|
{
|
|
return isValid() ? d->supportedMimeTypes() : QList<QMimeType>();
|
|
}
|
|
#endif // QT_NO_MIMETYPE
|
|
|
|
# ifndef QT_NO_DEBUG_STREAM
|
|
void QPrintDevice::format(QDebug debug) const
|
|
{
|
|
QDebugStateSaver saver(debug);
|
|
debug.noquote();
|
|
debug.nospace();
|
|
if (isValid()) {
|
|
const QString deviceId = id();
|
|
const QString deviceName = name();
|
|
debug << "id=\"" << deviceId << "\", state=" << state();
|
|
if (!deviceName.isEmpty() && deviceName != deviceId)
|
|
debug << ", name=\"" << deviceName << '"';
|
|
if (!location().isEmpty())
|
|
debug << ", location=\"" << location() << '"';
|
|
debug << ", makeAndModel=\"" << makeAndModel() << '"';
|
|
if (isDefault())
|
|
debug << ", default";
|
|
if (isRemote())
|
|
debug << ", remote";
|
|
debug << ", defaultPageSize=" << defaultPageSize();
|
|
if (supportsCustomPageSizes())
|
|
debug << ", supportsCustomPageSizes";
|
|
debug << ", physicalPageSize=(";
|
|
QtDebugUtils::formatQSize(debug, minimumPhysicalPageSize());
|
|
debug << ")..(";
|
|
QtDebugUtils::formatQSize(debug, maximumPhysicalPageSize());
|
|
debug << "), defaultResolution=" << defaultResolution()
|
|
<< ", defaultDuplexMode=" << defaultDuplexMode()
|
|
<< ", defaultColorMode="<< defaultColorMode();
|
|
# ifndef QT_NO_MIMETYPE
|
|
const QList<QMimeType> mimeTypes = supportedMimeTypes();
|
|
if (const int mimeTypeCount = mimeTypes.size()) {
|
|
debug << ", supportedMimeTypes=(";
|
|
for (int i = 0; i < mimeTypeCount; ++i)
|
|
debug << " \"" << mimeTypes.at(i).name() << '"';
|
|
debug << ')';
|
|
}
|
|
# endif // !QT_NO_MIMETYPE
|
|
} else {
|
|
debug << "null";
|
|
}
|
|
}
|
|
|
|
QDebug operator<<(QDebug debug, const QPrintDevice &p)
|
|
{
|
|
QDebugStateSaver saver(debug);
|
|
debug.nospace();
|
|
debug << "QPrintDevice(";
|
|
p.format(debug);
|
|
debug << ')';
|
|
return debug;
|
|
}
|
|
# endif // QT_NO_DEBUG_STREAM
|
|
#endif // QT_NO_PRINTER
|
|
|
|
QT_END_NAMESPACE
|