123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- /****************************************************************************
- **
- ** Copyright (C) 2016 The Qt Company Ltd.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtTest module of the Qt Toolkit.
- **
- ** $QT_BEGIN_LICENSE:LGPL$
- ** 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 https://www.qt.io/terms-conditions. For further
- ** information use the contact form at https://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 3 as published by the Free Software
- ** Foundation and appearing in the file LICENSE.LGPL3 included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU Lesser General Public License version 3 requirements
- ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 2.0 or (at your option) the GNU General
- ** Public license version 3 or any later version approved by the KDE Free
- ** Qt Foundation. The licenses are as published by the Free Software
- ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
- ** included in the packaging of this file. Please review the following
- ** information to ensure the GNU General Public License requirements will
- ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
- ** https://www.gnu.org/licenses/gpl-3.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
- #ifndef QTEST_GUI_H
- #define QTEST_GUI_H
- // enable GUI features
- #ifndef QT_GUI_LIB
- #define QT_GUI_LIB
- #endif
- #if 0
- #pragma qt_class(QtTestGui)
- #endif
- #include <QtTest/qtestassert.h>
- #include <QtTest/qtest.h>
- #include <QtTest/qtestevent.h>
- #include <QtTest/qtestmouse.h>
- #include <QtTest/qtesttouch.h>
- #include <QtTest/qtestkeyboard.h>
- #include <QtGui/qcolor.h>
- #include <QtGui/qpixmap.h>
- #include <QtGui/qimage.h>
- #include <QtGui/qregion.h>
- #ifdef QT_WIDGETS_LIB
- #include <QtGui/qicon.h>
- #endif
- #if 0
- // inform syncqt
- #pragma qt_no_master_include
- #endif
- QT_BEGIN_NAMESPACE
- namespace QTest
- {
- /*!
- \internal
- */
- template<> inline char *toString(const QColor &color)
- {
- return qstrdup(color.name().toLocal8Bit().constData());
- }
- template<> inline char *toString(const QRegion ®ion)
- {
- QByteArray result = "QRegion(";
- if (region.isNull()) {
- result += "null";
- } else if (region.isEmpty()) {
- result += "empty";
- } else {
- const QVector<QRect> &rects = region.rects();
- const int rectCount = rects.size();
- if (rectCount > 1) {
- result += QByteArray::number(rectCount);
- result += " rectangles, ";
- }
- for (int i = 0; i < rectCount; ++i) {
- if (i)
- result += ", ";
- const QRect &r = rects.at(i);
- result += QByteArray::number(r.width());
- result += 'x';
- result += QByteArray::number(r.height());
- if (r.x() >= 0)
- result += '+';
- result += QByteArray::number(r.x());
- if (r.y() >= 0)
- result += '+';
- result += QByteArray::number(r.y());
- }
- }
- result += ')';
- return qstrdup(result.constData());
- }
- inline bool qCompare(QIcon const &t1, QIcon const &t2, const char *actual, const char *expected,
- const char *file, int line)
- {
- QTEST_ASSERT(sizeof(QIcon) == sizeof(void *));
- return qCompare(*reinterpret_cast<void * const *>(&t1),
- *reinterpret_cast<void * const *>(&t2), actual, expected, file, line);
- }
- inline bool qCompare(QImage const &t1, QImage const &t2,
- const char *actual, const char *expected, const char *file, int line)
- {
- char msg[1024];
- msg[0] = '\0';
- const bool t1Null = t1.isNull();
- const bool t2Null = t2.isNull();
- if (t1Null != t2Null) {
- qsnprintf(msg, 1024, "Compared QImages differ.\n"
- " Actual (%s).isNull(): %d\n"
- " Expected (%s).isNull(): %d", actual, t1Null, expected, t2Null);
- return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
- }
- if (t1Null && t2Null)
- return compare_helper(true, Q_NULLPTR, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
- if (t1.width() != t2.width() || t1.height() != t2.height()) {
- qsnprintf(msg, 1024, "Compared QImages differ in size.\n"
- " Actual (%s): %dx%d\n"
- " Expected (%s): %dx%d",
- actual, t1.width(), t1.height(),
- expected, t2.width(), t2.height());
- return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
- }
- if (t1.format() != t2.format()) {
- qsnprintf(msg, 1024, "Compared QImages differ in format.\n"
- " Actual (%s): %d\n"
- " Expected (%s): %d",
- actual, t1.format(), expected, t2.format());
- return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
- }
- return compare_helper(t1 == t2, "Compared values are not the same",
- toString(t1), toString(t2), actual, expected, file, line);
- }
- inline bool qCompare(QPixmap const &t1, QPixmap const &t2, const char *actual, const char *expected,
- const char *file, int line)
- {
- char msg[1024];
- msg[0] = '\0';
- const bool t1Null = t1.isNull();
- const bool t2Null = t2.isNull();
- if (t1Null != t2Null) {
- qsnprintf(msg, 1024, "Compared QPixmaps differ.\n"
- " Actual (%s).isNull(): %d\n"
- " Expected (%s).isNull(): %d", actual, t1Null, expected, t2Null);
- return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
- }
- if (t1Null && t2Null)
- return compare_helper(true, Q_NULLPTR, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
- if (t1.width() != t2.width() || t1.height() != t2.height()) {
- qsnprintf(msg, 1024, "Compared QPixmaps differ in size.\n"
- " Actual (%s): %dx%d\n"
- " Expected (%s): %dx%d",
- actual, t1.width(), t1.height(),
- expected, t2.width(), t2.height());
- return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
- }
- return qCompare(t1.toImage(), t2.toImage(), actual, expected, file, line);
- }
- }
- QT_END_NAMESPACE
- #endif
|