2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2015-01-28 08:44:43 +00:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
** Contact: http://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2014-08-21 13:51:22 +00:00
|
|
|
** $QT_BEGIN_LICENSE:LGPL21$
|
2012-09-19 12:28:29 +00:00
|
|
|
** 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
|
2015-01-28 08:44:43 +00:00
|
|
|
** 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.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-08-21 13:51:22 +00:00
|
|
|
** 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.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2015-01-28 08:44:43 +00:00
|
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2011-04-27 10:05:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
|
|
|
|
|
|
|
|
#include <qapplication.h>
|
2014-10-20 16:44:13 +00:00
|
|
|
#include <qfontdatabase.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <qfontinfo.h>
|
|
|
|
#include <qtimer.h>
|
|
|
|
#include <qmainwindow.h>
|
|
|
|
#include <qlistview.h>
|
|
|
|
#include "qfontdialog.h"
|
|
|
|
#include <private/qfontdialog_p.h>
|
|
|
|
|
|
|
|
QT_FORWARD_DECLARE_CLASS(QtTestEventThread)
|
|
|
|
|
|
|
|
class tst_QFontDialog : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
tst_QFontDialog();
|
|
|
|
virtual ~tst_QFontDialog();
|
|
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void postKeyReturn();
|
2013-09-02 07:30:26 +00:00
|
|
|
void testGetFont();
|
2012-09-13 06:24:09 +00:00
|
|
|
void testSetFont();
|
2014-03-25 09:47:29 +00:00
|
|
|
void testNonStandardFontSize();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void initTestCase();
|
|
|
|
void cleanupTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
private slots:
|
|
|
|
void defaultOkButton();
|
|
|
|
void setFont();
|
|
|
|
void task256466_wrongStyle();
|
2014-03-25 09:47:29 +00:00
|
|
|
void setNonStandardFontSize();
|
2014-10-20 16:44:13 +00:00
|
|
|
#ifndef QT_NO_STYLE_STYLESHEET
|
|
|
|
void qtbug_41513_stylesheetStyle();
|
|
|
|
#endif
|
|
|
|
|
2012-10-22 12:03:06 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void runSlotWithFailsafeTimer(const char *member);
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
tst_QFontDialog::tst_QFontDialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
tst_QFontDialog::~tst_QFontDialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QFontDialog::initTestCase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QFontDialog::cleanupTestCase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QFontDialog::init()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QFontDialog::cleanup()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QFontDialog::postKeyReturn() {
|
|
|
|
QWidgetList list = QApplication::topLevelWidgets();
|
|
|
|
for (int i=0; i<list.count(); ++i) {
|
2014-01-13 14:48:44 +00:00
|
|
|
QFontDialog *dialog = qobject_cast<QFontDialog*>(list[i]);
|
|
|
|
if (dialog) {
|
|
|
|
QTest::keyClick( list[i], Qt::Key_Return, Qt::NoModifier );
|
|
|
|
return;
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-02 07:30:26 +00:00
|
|
|
void tst_QFontDialog::testGetFont()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2013-09-02 07:30:26 +00:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
QEXPECT_FAIL("", "Sending QTest::keyClick to OSX font dialog helper fails, see QTBUG-24321", Continue);
|
|
|
|
#endif
|
|
|
|
bool ok = false;
|
|
|
|
QTimer::singleShot(2000, this, SLOT(postKeyReturn()));
|
|
|
|
QFontDialog::getFont(&ok);
|
|
|
|
QVERIFY(ok);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-10-22 12:03:06 +00:00
|
|
|
void tst_QFontDialog::runSlotWithFailsafeTimer(const char *member)
|
|
|
|
{
|
|
|
|
// FailSafeTimer quits the nested event loop if the dialog closing doesn't do it.
|
|
|
|
QTimer failSafeTimer;
|
|
|
|
failSafeTimer.setInterval(4000);
|
|
|
|
failSafeTimer.setSingleShot(true);
|
|
|
|
connect(&failSafeTimer, SIGNAL(timeout()), qApp, SLOT(quit()));
|
|
|
|
failSafeTimer.start();
|
|
|
|
|
|
|
|
QTimer::singleShot(0, this, member);
|
|
|
|
qApp->exec();
|
|
|
|
|
|
|
|
// FailSafeTimer stops once it goes out of scope.
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-13 06:24:09 +00:00
|
|
|
void tst_QFontDialog::defaultOkButton()
|
|
|
|
{
|
2013-09-02 07:30:26 +00:00
|
|
|
runSlotWithFailsafeTimer(SLOT(testGetFont()));
|
2012-09-13 06:24:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tst_QFontDialog::testSetFont()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2011-12-30 05:51:05 +00:00
|
|
|
bool ok = false;
|
2011-04-27 10:05:43 +00:00
|
|
|
#if defined Q_OS_HPUX
|
|
|
|
QString fontName = "Courier";
|
|
|
|
int fontSize = 25;
|
|
|
|
#elif defined Q_OS_AIX
|
|
|
|
QString fontName = "Charter";
|
|
|
|
int fontSize = 13;
|
|
|
|
#else
|
|
|
|
QString fontName = "Arial";
|
|
|
|
int fontSize = 24;
|
|
|
|
#endif
|
|
|
|
QFont f1(fontName, fontSize);
|
|
|
|
f1.setPixelSize(QFontInfo(f1).pixelSize());
|
|
|
|
QTimer::singleShot(2000, this, SLOT(postKeyReturn()));
|
|
|
|
QFont f2 = QFontDialog::getFont(&ok, f1);
|
|
|
|
QCOMPARE(QFontInfo(f2).pointSize(), QFontInfo(f1).pointSize());
|
|
|
|
}
|
|
|
|
|
2012-09-13 06:24:09 +00:00
|
|
|
void tst_QFontDialog::setFont()
|
|
|
|
{
|
|
|
|
/* The font should be the same before as it is after if nothing changed
|
|
|
|
while the font dialog was open.
|
|
|
|
Task #27662
|
|
|
|
*/
|
2012-10-22 12:03:06 +00:00
|
|
|
runSlotWithFailsafeTimer(SLOT(testSetFont()));
|
2012-09-13 06:24:09 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
class FriendlyFontDialog : public QFontDialog
|
|
|
|
{
|
|
|
|
friend class tst_QFontDialog;
|
2012-09-13 06:24:09 +00:00
|
|
|
Q_DECLARE_PRIVATE(QFontDialog)
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void tst_QFontDialog::task256466_wrongStyle()
|
|
|
|
{
|
|
|
|
QFontDatabase fdb;
|
|
|
|
FriendlyFontDialog dialog;
|
2012-04-10 15:17:41 +00:00
|
|
|
dialog.setOption(QFontDialog::DontUseNativeDialog);
|
2011-04-27 10:05:43 +00:00
|
|
|
QListView *familyList = reinterpret_cast<QListView*>(dialog.d_func()->familyList);
|
|
|
|
QListView *styleList = reinterpret_cast<QListView*>(dialog.d_func()->styleList);
|
|
|
|
QListView *sizeList = reinterpret_cast<QListView*>(dialog.d_func()->sizeList);
|
|
|
|
for (int i = 0; i < familyList->model()->rowCount(); ++i) {
|
|
|
|
QModelIndex currentFamily = familyList->model()->index(i, 0);
|
|
|
|
familyList->setCurrentIndex(currentFamily);
|
|
|
|
const QFont current = dialog.currentFont(),
|
|
|
|
expected = fdb.font(currentFamily.data().toString(),
|
|
|
|
styleList->currentIndex().data().toString(), sizeList->currentIndex().data().toInt());
|
|
|
|
QCOMPARE(current.family(), expected.family());
|
|
|
|
QCOMPARE(current.style(), expected.style());
|
|
|
|
QCOMPARE(current.pointSizeF(), expected.pointSizeF());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-25 09:47:29 +00:00
|
|
|
void tst_QFontDialog::setNonStandardFontSize()
|
|
|
|
{
|
|
|
|
runSlotWithFailsafeTimer(SLOT(testNonStandardFontSize()));
|
|
|
|
}
|
2014-10-20 16:44:13 +00:00
|
|
|
#ifndef QT_NO_STYLE_STYLESHEET
|
|
|
|
static const QString offendingStyleSheet = QStringLiteral("* { font-family: \"QtBidiTestFont\"; }");
|
|
|
|
|
|
|
|
void tst_QFontDialog::qtbug_41513_stylesheetStyle()
|
|
|
|
{
|
|
|
|
if (QFontDatabase::addApplicationFont(QFINDTESTDATA("test.ttf")) < 0)
|
|
|
|
QSKIP("Test fonts not found.");
|
|
|
|
if (QFontDatabase::addApplicationFont(QFINDTESTDATA("testfont.ttf")) < 0)
|
|
|
|
QSKIP("Test fonts not found.");
|
|
|
|
QFont testFont = QFont(QStringLiteral("QtsSpecialTestFont"));
|
|
|
|
qApp->setStyleSheet(offendingStyleSheet);
|
|
|
|
bool accepted = false;
|
|
|
|
QTimer::singleShot(2000, this, SLOT(postKeyReturn()));
|
|
|
|
QFont resultFont = QFontDialog::getFont(&accepted, testFont,
|
|
|
|
QApplication::activeWindow(),
|
|
|
|
QLatin1String("QFontDialog - Stylesheet Test"),
|
|
|
|
QFontDialog::DontUseNativeDialog);
|
|
|
|
QVERIFY(accepted);
|
|
|
|
|
2015-05-13 13:33:26 +00:00
|
|
|
// The fontdialog sets the styleName, when the fontdatabase knows the style name.
|
|
|
|
resultFont.setStyleName(testFont.styleName());
|
2014-10-20 16:44:13 +00:00
|
|
|
QCOMPARE(resultFont, testFont);
|
|
|
|
|
|
|
|
// reset stylesheet
|
|
|
|
qApp->setStyleSheet(QString());
|
|
|
|
}
|
|
|
|
#endif // QT_NO_STYLE_STYLESHEET
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2014-03-25 09:47:29 +00:00
|
|
|
void tst_QFontDialog::testNonStandardFontSize()
|
|
|
|
{
|
|
|
|
QList<int> standardSizesList = QFontDatabase::standardSizes();
|
|
|
|
int nonStandardFontSize;
|
|
|
|
if (!standardSizesList.isEmpty()) {
|
|
|
|
nonStandardFontSize = standardSizesList.at(standardSizesList.count()-1); // get the maximum standard size.
|
|
|
|
nonStandardFontSize += 1; // the increment of 1 to mock a non-standard font size.
|
|
|
|
} else {
|
|
|
|
QSKIP("QFontDatabase::standardSizes() is empty.");
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2014-03-25 09:47:29 +00:00
|
|
|
QFont testFont;
|
|
|
|
testFont.setPointSize(nonStandardFontSize);
|
|
|
|
|
|
|
|
bool accepted = false;
|
|
|
|
QTimer::singleShot(2000, this, SLOT(postKeyReturn()));
|
|
|
|
QFont resultFont = QFontDialog::getFont(&accepted, testFont,
|
|
|
|
QApplication::activeWindow(),
|
|
|
|
QLatin1String("QFontDialog - NonStandardFontSize Test"),
|
|
|
|
QFontDialog::DontUseNativeDialog);
|
|
|
|
QVERIFY(accepted);
|
|
|
|
|
|
|
|
if (accepted)
|
|
|
|
QCOMPARE(testFont.pointSize(), resultFont.pointSize());
|
|
|
|
else
|
|
|
|
QWARN("Fail using a non-standard font size.");
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QTEST_MAIN(tst_QFontDialog)
|
|
|
|
#include "tst_qfontdialog.moc"
|