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>
120 lines
3.9 KiB
C++
120 lines
3.9 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'topicchooser.ui'
|
|
**
|
|
** Created: Fri Sep 4 10:17:15 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 TOPICCHOOSER_H
|
|
#define TOPICCHOOSER_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QAction>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QButtonGroup>
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtWidgets/QHBoxLayout>
|
|
#include <QtWidgets/QHeaderView>
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QListWidget>
|
|
#include <QtWidgets/QPushButton>
|
|
#include <QtWidgets/QSpacerItem>
|
|
#include <QtWidgets/QVBoxLayout>
|
|
#include <QtWidgets/QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_TopicChooser
|
|
{
|
|
public:
|
|
QVBoxLayout *vboxLayout;
|
|
QLabel *label;
|
|
QListWidget *listWidget;
|
|
QWidget *Layout16;
|
|
QHBoxLayout *hboxLayout;
|
|
QSpacerItem *Horizontal_Spacing2;
|
|
QPushButton *buttonDisplay;
|
|
QPushButton *buttonCancel;
|
|
|
|
void setupUi(QDialog *TopicChooser)
|
|
{
|
|
if (TopicChooser->objectName().isEmpty())
|
|
TopicChooser->setObjectName(QStringLiteral("TopicChooser"));
|
|
TopicChooser->resize(391, 223);
|
|
TopicChooser->setSizeGripEnabled(true);
|
|
vboxLayout = new QVBoxLayout(TopicChooser);
|
|
#ifndef Q_OS_MAC
|
|
vboxLayout->setSpacing(6);
|
|
#endif
|
|
vboxLayout->setContentsMargins(11, 11, 11, 11);
|
|
vboxLayout->setObjectName(QStringLiteral("vboxLayout"));
|
|
vboxLayout->setObjectName(QStringLiteral("unnamed"));
|
|
label = new QLabel(TopicChooser);
|
|
label->setObjectName(QStringLiteral("label"));
|
|
|
|
vboxLayout->addWidget(label);
|
|
|
|
listWidget = new QListWidget(TopicChooser);
|
|
listWidget->setObjectName(QStringLiteral("listWidget"));
|
|
|
|
vboxLayout->addWidget(listWidget);
|
|
|
|
Layout16 = new QWidget(TopicChooser);
|
|
Layout16->setObjectName(QStringLiteral("Layout16"));
|
|
hboxLayout = new QHBoxLayout(Layout16);
|
|
#ifndef Q_OS_MAC
|
|
hboxLayout->setSpacing(6);
|
|
#endif
|
|
hboxLayout->setContentsMargins(0, 0, 0, 0);
|
|
hboxLayout->setObjectName(QStringLiteral("hboxLayout"));
|
|
hboxLayout->setObjectName(QStringLiteral("unnamed"));
|
|
hboxLayout->setContentsMargins(0, 0, 0, 0);
|
|
Horizontal_Spacing2 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
|
|
hboxLayout->addItem(Horizontal_Spacing2);
|
|
|
|
buttonDisplay = new QPushButton(Layout16);
|
|
buttonDisplay->setObjectName(QStringLiteral("buttonDisplay"));
|
|
buttonDisplay->setAutoDefault(true);
|
|
buttonDisplay->setDefault(true);
|
|
|
|
hboxLayout->addWidget(buttonDisplay);
|
|
|
|
buttonCancel = new QPushButton(Layout16);
|
|
buttonCancel->setObjectName(QStringLiteral("buttonCancel"));
|
|
buttonCancel->setAutoDefault(true);
|
|
|
|
hboxLayout->addWidget(buttonCancel);
|
|
|
|
|
|
vboxLayout->addWidget(Layout16);
|
|
|
|
#ifndef QT_NO_SHORTCUT
|
|
label->setBuddy(listWidget);
|
|
#endif // QT_NO_SHORTCUT
|
|
|
|
retranslateUi(TopicChooser);
|
|
|
|
QMetaObject::connectSlotsByName(TopicChooser);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QDialog *TopicChooser)
|
|
{
|
|
TopicChooser->setWindowTitle(QApplication::translate("TopicChooser", "Choose Topic", 0, QApplication::UnicodeUTF8));
|
|
label->setText(QApplication::translate("TopicChooser", "&Topics", 0, QApplication::UnicodeUTF8));
|
|
buttonDisplay->setText(QApplication::translate("TopicChooser", "&Display", 0, QApplication::UnicodeUTF8));
|
|
buttonCancel->setText(QApplication::translate("TopicChooser", "&Close", 0, QApplication::UnicodeUTF8));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class TopicChooser: public Ui_TopicChooser {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // TOPICCHOOSER_H
|