49b08f96e8
Many (most?) strings written aren't in fact UTF-8, and we can check at compile-time which are and which aren't, so don't hard-code fromUtf8() but use the much more efficient QStringLiteral() where applicable. This is low-hanging fruit. This patch only optimises US-ASCII string literals, not those that are latin-1 or even UTF-8, because that would require more extensive changes to the original fixString() function. Likewise, there are also other calls to QString::fromUtf8() being generated (e.g. in the pixmap code) that could benefit from being turned into QStringLiterals, but their code paths are more involved than those this patch fixes. This patch at least suffices in turning all the setObjectName() arguments into QStringLiterals, which was the main goal. The autotest baseline has been updated with the new expected results. Change-Id: Ic1ef67f500f9ff92d36164d515f4e004ef2a10bc Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
313 lines
12 KiB
C++
313 lines
12 KiB
C++
/*
|
|
*********************************************************************
|
|
**
|
|
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/
|
|
**
|
|
** This file is part of the autotests of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** GNU Lesser General Public License Usage
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this
|
|
** file. Please review the following information to ensure the GNU Lesser
|
|
** General Public License version 2.1 requirements will be met:
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU General
|
|
** Public License version 3.0 as published by the Free Software Foundation
|
|
** and appearing in the file LICENSE.GPL included in the packaging of this
|
|
** file. Please review the following information to ensure the GNU General
|
|
** Public License version 3.0 requirements will be met:
|
|
** http://www.gnu.org/copyleft/gpl.html.
|
|
**
|
|
** Other Usage
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
**
|
|
**
|
|
**
|
|
**
|
|
**
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
*********************************************************************
|
|
*/
|
|
|
|
/********************************************************************************
|
|
** Form generated from reading UI file 'formwindowsettings.ui'
|
|
**
|
|
** Created: Fri Sep 4 10:17:13 2009
|
|
** by: Qt User Interface Compiler version 4.6.0
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef FORMWINDOWSETTINGS_H
|
|
#define FORMWINDOWSETTINGS_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QAction>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QButtonGroup>
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtWidgets/QDialogButtonBox>
|
|
#include <QtWidgets/QFrame>
|
|
#include <QtWidgets/QGridLayout>
|
|
#include <QtWidgets/QGroupBox>
|
|
#include <QtWidgets/QHBoxLayout>
|
|
#include <QtWidgets/QHeaderView>
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QLineEdit>
|
|
#include <QtWidgets/QSpacerItem>
|
|
#include <QtWidgets/QSpinBox>
|
|
#include <QtWidgets/QTextEdit>
|
|
#include <QtWidgets/QVBoxLayout>
|
|
#include <gridpanel_p.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_FormWindowSettings
|
|
{
|
|
public:
|
|
QGridLayout *gridLayout;
|
|
QDialogButtonBox *buttonBox;
|
|
QFrame *line;
|
|
QHBoxLayout *hboxLayout;
|
|
QGroupBox *layoutDefaultGroupBox;
|
|
QGridLayout *gridLayout1;
|
|
QLabel *label_2;
|
|
QLabel *label;
|
|
QSpinBox *defaultSpacingSpinBox;
|
|
QSpinBox *defaultMarginSpinBox;
|
|
QGroupBox *layoutFunctionGroupBox;
|
|
QGridLayout *gridLayout2;
|
|
QLineEdit *spacingFunctionLineEdit;
|
|
QLineEdit *marginFunctionLineEdit;
|
|
QLabel *label_3;
|
|
QLabel *label_3_2;
|
|
QGroupBox *pixmapFunctionGroupBox_2;
|
|
QVBoxLayout *vboxLayout;
|
|
QLineEdit *authorLineEdit;
|
|
QGroupBox *includeHintsGroupBox;
|
|
QVBoxLayout *vboxLayout1;
|
|
QTextEdit *includeHintsTextEdit;
|
|
QHBoxLayout *hboxLayout1;
|
|
QGroupBox *pixmapFunctionGroupBox;
|
|
QVBoxLayout *vboxLayout2;
|
|
QLineEdit *pixmapFunctionLineEdit;
|
|
QSpacerItem *spacerItem;
|
|
qdesigner_internal::GridPanel *gridPanel;
|
|
|
|
void setupUi(QDialog *FormWindowSettings)
|
|
{
|
|
if (FormWindowSettings->objectName().isEmpty())
|
|
FormWindowSettings->setObjectName(QStringLiteral("FormWindowSettings"));
|
|
FormWindowSettings->resize(433, 465);
|
|
gridLayout = new QGridLayout(FormWindowSettings);
|
|
gridLayout->setObjectName(QStringLiteral("gridLayout"));
|
|
buttonBox = new QDialogButtonBox(FormWindowSettings);
|
|
buttonBox->setObjectName(QStringLiteral("buttonBox"));
|
|
buttonBox->setOrientation(Qt::Horizontal);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok);
|
|
|
|
gridLayout->addWidget(buttonBox, 6, 0, 1, 2);
|
|
|
|
line = new QFrame(FormWindowSettings);
|
|
line->setObjectName(QStringLiteral("line"));
|
|
line->setFrameShape(QFrame::HLine);
|
|
line->setFrameShadow(QFrame::Sunken);
|
|
|
|
gridLayout->addWidget(line, 5, 0, 1, 2);
|
|
|
|
hboxLayout = new QHBoxLayout();
|
|
#ifndef Q_OS_MAC
|
|
hboxLayout->setSpacing(6);
|
|
#endif
|
|
hboxLayout->setContentsMargins(0, 0, 0, 0);
|
|
hboxLayout->setObjectName(QStringLiteral("hboxLayout"));
|
|
layoutDefaultGroupBox = new QGroupBox(FormWindowSettings);
|
|
layoutDefaultGroupBox->setObjectName(QStringLiteral("layoutDefaultGroupBox"));
|
|
layoutDefaultGroupBox->setCheckable(true);
|
|
gridLayout1 = new QGridLayout(layoutDefaultGroupBox);
|
|
#ifndef Q_OS_MAC
|
|
gridLayout1->setSpacing(6);
|
|
#endif
|
|
gridLayout1->setContentsMargins(8, 8, 8, 8);
|
|
gridLayout1->setObjectName(QStringLiteral("gridLayout1"));
|
|
label_2 = new QLabel(layoutDefaultGroupBox);
|
|
label_2->setObjectName(QStringLiteral("label_2"));
|
|
|
|
gridLayout1->addWidget(label_2, 1, 0, 1, 1);
|
|
|
|
label = new QLabel(layoutDefaultGroupBox);
|
|
label->setObjectName(QStringLiteral("label"));
|
|
|
|
gridLayout1->addWidget(label, 0, 0, 1, 1);
|
|
|
|
defaultSpacingSpinBox = new QSpinBox(layoutDefaultGroupBox);
|
|
defaultSpacingSpinBox->setObjectName(QStringLiteral("defaultSpacingSpinBox"));
|
|
|
|
gridLayout1->addWidget(defaultSpacingSpinBox, 1, 1, 1, 1);
|
|
|
|
defaultMarginSpinBox = new QSpinBox(layoutDefaultGroupBox);
|
|
defaultMarginSpinBox->setObjectName(QStringLiteral("defaultMarginSpinBox"));
|
|
|
|
gridLayout1->addWidget(defaultMarginSpinBox, 0, 1, 1, 1);
|
|
|
|
|
|
hboxLayout->addWidget(layoutDefaultGroupBox);
|
|
|
|
layoutFunctionGroupBox = new QGroupBox(FormWindowSettings);
|
|
layoutFunctionGroupBox->setObjectName(QStringLiteral("layoutFunctionGroupBox"));
|
|
layoutFunctionGroupBox->setCheckable(true);
|
|
gridLayout2 = new QGridLayout(layoutFunctionGroupBox);
|
|
#ifndef Q_OS_MAC
|
|
gridLayout2->setSpacing(6);
|
|
#endif
|
|
gridLayout2->setContentsMargins(8, 8, 8, 8);
|
|
gridLayout2->setObjectName(QStringLiteral("gridLayout2"));
|
|
spacingFunctionLineEdit = new QLineEdit(layoutFunctionGroupBox);
|
|
spacingFunctionLineEdit->setObjectName(QStringLiteral("spacingFunctionLineEdit"));
|
|
|
|
gridLayout2->addWidget(spacingFunctionLineEdit, 1, 1, 1, 1);
|
|
|
|
marginFunctionLineEdit = new QLineEdit(layoutFunctionGroupBox);
|
|
marginFunctionLineEdit->setObjectName(QStringLiteral("marginFunctionLineEdit"));
|
|
|
|
gridLayout2->addWidget(marginFunctionLineEdit, 0, 1, 1, 1);
|
|
|
|
label_3 = new QLabel(layoutFunctionGroupBox);
|
|
label_3->setObjectName(QStringLiteral("label_3"));
|
|
|
|
gridLayout2->addWidget(label_3, 0, 0, 1, 1);
|
|
|
|
label_3_2 = new QLabel(layoutFunctionGroupBox);
|
|
label_3_2->setObjectName(QStringLiteral("label_3_2"));
|
|
|
|
gridLayout2->addWidget(label_3_2, 1, 0, 1, 1);
|
|
|
|
|
|
hboxLayout->addWidget(layoutFunctionGroupBox);
|
|
|
|
|
|
gridLayout->addLayout(hboxLayout, 2, 0, 1, 2);
|
|
|
|
pixmapFunctionGroupBox_2 = new QGroupBox(FormWindowSettings);
|
|
pixmapFunctionGroupBox_2->setObjectName(QStringLiteral("pixmapFunctionGroupBox_2"));
|
|
vboxLayout = new QVBoxLayout(pixmapFunctionGroupBox_2);
|
|
#ifndef Q_OS_MAC
|
|
vboxLayout->setSpacing(6);
|
|
#endif
|
|
vboxLayout->setContentsMargins(8, 8, 8, 8);
|
|
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
|
|
authorLineEdit = new QLineEdit(pixmapFunctionGroupBox_2);
|
|
authorLineEdit->setObjectName(QStringLiteral("authorLineEdit"));
|
|
|
|
vboxLayout->addWidget(authorLineEdit);
|
|
|
|
|
|
gridLayout->addWidget(pixmapFunctionGroupBox_2, 0, 0, 1, 2);
|
|
|
|
includeHintsGroupBox = new QGroupBox(FormWindowSettings);
|
|
includeHintsGroupBox->setObjectName(QStringLiteral("includeHintsGroupBox"));
|
|
vboxLayout1 = new QVBoxLayout(includeHintsGroupBox);
|
|
#ifndef Q_OS_MAC
|
|
vboxLayout1->setSpacing(6);
|
|
#endif
|
|
vboxLayout1->setContentsMargins(8, 8, 8, 8);
|
|
vboxLayout1->setObjectName(QStringLiteral("vboxLayout1"));
|
|
includeHintsTextEdit = new QTextEdit(includeHintsGroupBox);
|
|
includeHintsTextEdit->setObjectName(QStringLiteral("includeHintsTextEdit"));
|
|
|
|
vboxLayout1->addWidget(includeHintsTextEdit);
|
|
|
|
|
|
gridLayout->addWidget(includeHintsGroupBox, 3, 0, 2, 1);
|
|
|
|
hboxLayout1 = new QHBoxLayout();
|
|
#ifndef Q_OS_MAC
|
|
hboxLayout1->setSpacing(6);
|
|
#endif
|
|
hboxLayout1->setContentsMargins(0, 0, 0, 0);
|
|
hboxLayout1->setObjectName(QStringLiteral("hboxLayout1"));
|
|
pixmapFunctionGroupBox = new QGroupBox(FormWindowSettings);
|
|
pixmapFunctionGroupBox->setObjectName(QStringLiteral("pixmapFunctionGroupBox"));
|
|
pixmapFunctionGroupBox->setCheckable(true);
|
|
vboxLayout2 = new QVBoxLayout(pixmapFunctionGroupBox);
|
|
#ifndef Q_OS_MAC
|
|
vboxLayout2->setSpacing(6);
|
|
#endif
|
|
vboxLayout2->setContentsMargins(8, 8, 8, 8);
|
|
vboxLayout2->setObjectName(QStringLiteral("vboxLayout2"));
|
|
pixmapFunctionLineEdit = new QLineEdit(pixmapFunctionGroupBox);
|
|
pixmapFunctionLineEdit->setObjectName(QStringLiteral("pixmapFunctionLineEdit"));
|
|
|
|
vboxLayout2->addWidget(pixmapFunctionLineEdit);
|
|
|
|
|
|
hboxLayout1->addWidget(pixmapFunctionGroupBox);
|
|
|
|
|
|
gridLayout->addLayout(hboxLayout1, 3, 1, 1, 1);
|
|
|
|
spacerItem = new QSpacerItem(111, 115, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
|
|
|
gridLayout->addItem(spacerItem, 4, 1, 1, 1);
|
|
|
|
gridPanel = new qdesigner_internal::GridPanel(FormWindowSettings);
|
|
gridPanel->setObjectName(QStringLiteral("gridPanel"));
|
|
|
|
gridLayout->addWidget(gridPanel, 1, 0, 1, 2);
|
|
|
|
#ifndef QT_NO_SHORTCUT
|
|
label_2->setBuddy(defaultSpacingSpinBox);
|
|
label->setBuddy(defaultMarginSpinBox);
|
|
label_3->setBuddy(marginFunctionLineEdit);
|
|
label_3_2->setBuddy(spacingFunctionLineEdit);
|
|
#endif // QT_NO_SHORTCUT
|
|
QWidget::setTabOrder(authorLineEdit, defaultMarginSpinBox);
|
|
QWidget::setTabOrder(defaultMarginSpinBox, defaultSpacingSpinBox);
|
|
QWidget::setTabOrder(defaultSpacingSpinBox, marginFunctionLineEdit);
|
|
QWidget::setTabOrder(marginFunctionLineEdit, spacingFunctionLineEdit);
|
|
QWidget::setTabOrder(spacingFunctionLineEdit, pixmapFunctionLineEdit);
|
|
|
|
retranslateUi(FormWindowSettings);
|
|
QObject::connect(buttonBox, SIGNAL(accepted()), FormWindowSettings, SLOT(accept()));
|
|
QObject::connect(buttonBox, SIGNAL(rejected()), FormWindowSettings, SLOT(reject()));
|
|
|
|
QMetaObject::connectSlotsByName(FormWindowSettings);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QDialog *FormWindowSettings)
|
|
{
|
|
FormWindowSettings->setWindowTitle(QApplication::translate("FormWindowSettings", "Form Settings", 0, QApplication::UnicodeUTF8));
|
|
layoutDefaultGroupBox->setTitle(QApplication::translate("FormWindowSettings", "Layout &Default", 0, QApplication::UnicodeUTF8));
|
|
label_2->setText(QApplication::translate("FormWindowSettings", "&Spacing:", 0, QApplication::UnicodeUTF8));
|
|
label->setText(QApplication::translate("FormWindowSettings", "&Margin:", 0, QApplication::UnicodeUTF8));
|
|
layoutFunctionGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Layout Function", 0, QApplication::UnicodeUTF8));
|
|
label_3->setText(QApplication::translate("FormWindowSettings", "Ma&rgin:", 0, QApplication::UnicodeUTF8));
|
|
label_3_2->setText(QApplication::translate("FormWindowSettings", "Spa&cing:", 0, QApplication::UnicodeUTF8));
|
|
pixmapFunctionGroupBox_2->setTitle(QApplication::translate("FormWindowSettings", "&Author", 0, QApplication::UnicodeUTF8));
|
|
includeHintsGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Include Hints", 0, QApplication::UnicodeUTF8));
|
|
pixmapFunctionGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Pixmap Function", 0, QApplication::UnicodeUTF8));
|
|
gridPanel->setTitle(QApplication::translate("FormWindowSettings", "Grid", 0, QApplication::UnicodeUTF8));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class FormWindowSettings: public Ui_FormWindowSettings {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // FORMWINDOWSETTINGS_H
|