mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-12-02 08:33:00 +08:00
76 lines
2.4 KiB
C++
76 lines
2.4 KiB
C++
|
// Copyright (C) 2014 John Layt <jlayt@kde.org>
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||
|
|
||
|
#include <QTest>
|
||
|
#include <QMimeType>
|
||
|
|
||
|
#include <qpa/qplatformprintplugin.h>
|
||
|
#include <qpa/qplatformprintersupport.h>
|
||
|
|
||
|
#include <private/qprintdevice_p.h>
|
||
|
|
||
|
class tst_QPrintDevice : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private slots:
|
||
|
void basics();
|
||
|
};
|
||
|
|
||
|
void tst_QPrintDevice::basics()
|
||
|
{
|
||
|
#ifndef QT_NO_PRINTER
|
||
|
QPlatformPrinterSupport *ps = QPlatformPrinterSupportPlugin::get();
|
||
|
if (!ps)
|
||
|
QSKIP("Could not load platform plugin");
|
||
|
|
||
|
QString defaultId = ps->defaultPrintDeviceId();
|
||
|
if (defaultId.isEmpty()) {
|
||
|
qDebug() << "No default printer found";
|
||
|
} else {
|
||
|
QVERIFY(ps->availablePrintDeviceIds().contains(defaultId));
|
||
|
}
|
||
|
|
||
|
qDebug() << "Available Printer IDs :" << ps->availablePrintDeviceIds();
|
||
|
|
||
|
// Just exercise the api for now as we don't know what is installed
|
||
|
foreach (const QString id, ps->availablePrintDeviceIds()) {
|
||
|
QPrintDevice printDevice = ps->createPrintDevice(id);
|
||
|
const char quote = id == defaultId ? '*' : '"';
|
||
|
qDebug().noquote().nospace() << "\nCreated printer " << quote << id
|
||
|
<< quote << ":\n" << printDevice << '\n';
|
||
|
QCOMPARE(printDevice.isValid(), true);
|
||
|
printDevice.id();
|
||
|
printDevice.name();
|
||
|
printDevice.location();
|
||
|
printDevice.makeAndModel();
|
||
|
printDevice.isValid();
|
||
|
printDevice.isDefault();
|
||
|
printDevice.isRemote();
|
||
|
printDevice.state();
|
||
|
printDevice.supportsMultipleCopies();
|
||
|
printDevice.supportsCollateCopies();
|
||
|
printDevice.defaultPageSize();
|
||
|
printDevice.supportedPageSizes();
|
||
|
printDevice.supportsCustomPageSizes();
|
||
|
printDevice.minimumPhysicalPageSize();
|
||
|
printDevice.maximumPhysicalPageSize();
|
||
|
printDevice.defaultResolution();
|
||
|
printDevice.supportedResolutions();
|
||
|
printDevice.defaultInputSlot();
|
||
|
printDevice.supportedInputSlots();
|
||
|
printDevice.defaultOutputBin();
|
||
|
printDevice.supportedOutputBins();
|
||
|
printDevice.defaultDuplexMode();
|
||
|
printDevice.supportedDuplexModes();
|
||
|
printDevice.defaultColorMode();
|
||
|
printDevice.supportedColorModes();
|
||
|
printDevice.supportedMimeTypes();
|
||
|
}
|
||
|
#endif // QT_NO_PRINTER
|
||
|
}
|
||
|
|
||
|
QTEST_MAIN(tst_QPrintDevice)
|
||
|
|
||
|
#include "tst_qprintdevice.moc"
|