ff18b02f21
This reverts the following commits:d12d2949d1
26c3bec09b
49b08f96e8
We can't easily predict all code paths for QDesigner with such a microoptimization. We also don't want to generate three different string constructions depending on some sophisticated heuristics. [ChangeLog][uic] The -no-stringliteral option is now deprecated and UIC will not generate QStringLiteral anymore. Task-number: QTBUG-65251 Task-number: QTBUG-51602 Change-Id: I34a5a1934a8df19c5c84ac2ba8e5168ce5665037 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
96 lines
3.4 KiB
C++
96 lines
3.4 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'qprintpropertieswidget.ui'
|
|
**
|
|
** Created by: Qt User Interface Compiler version 5.0.0
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef QPRINTPROPERTIESWIDGET_H
|
|
#define QPRINTPROPERTIESWIDGET_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QHBoxLayout>
|
|
#include <QtWidgets/QHeaderView>
|
|
#include <QtWidgets/QTabWidget>
|
|
#include <QtWidgets/QTreeView>
|
|
#include <QtWidgets/QVBoxLayout>
|
|
#include <QtWidgets/QWidget>
|
|
#include "qpagesetupdialog_unix_p.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_QPrintPropertiesWidget
|
|
{
|
|
public:
|
|
QVBoxLayout *verticalLayout_4;
|
|
QTabWidget *tabs;
|
|
QWidget *tabPage;
|
|
QHBoxLayout *horizontalLayout;
|
|
QPageSetupWidget *pageSetup;
|
|
QWidget *cupsPropertiesPage;
|
|
QHBoxLayout *horizontalLayout_2;
|
|
QTreeView *treeView;
|
|
|
|
void setupUi(QWidget *QPrintPropertiesWidget)
|
|
{
|
|
if (QPrintPropertiesWidget->objectName().isEmpty())
|
|
QPrintPropertiesWidget->setObjectName(QString::fromUtf8("QPrintPropertiesWidget"));
|
|
QPrintPropertiesWidget->resize(396, 288);
|
|
verticalLayout_4 = new QVBoxLayout(QPrintPropertiesWidget);
|
|
verticalLayout_4->setContentsMargins(0, 0, 0, 0);
|
|
verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
|
|
tabs = new QTabWidget(QPrintPropertiesWidget);
|
|
tabs->setObjectName(QString::fromUtf8("tabs"));
|
|
tabPage = new QWidget();
|
|
tabPage->setObjectName(QString::fromUtf8("tabPage"));
|
|
tabPage->setGeometry(QRect(0, 0, 392, 261));
|
|
horizontalLayout = new QHBoxLayout(tabPage);
|
|
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
|
|
pageSetup = new QPageSetupWidget(tabPage);
|
|
pageSetup->setObjectName(QString::fromUtf8("pageSetup"));
|
|
|
|
horizontalLayout->addWidget(pageSetup);
|
|
|
|
tabs->addTab(tabPage, QString());
|
|
cupsPropertiesPage = new QWidget();
|
|
cupsPropertiesPage->setObjectName(QString::fromUtf8("cupsPropertiesPage"));
|
|
horizontalLayout_2 = new QHBoxLayout(cupsPropertiesPage);
|
|
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
|
|
treeView = new QTreeView(cupsPropertiesPage);
|
|
treeView->setObjectName(QString::fromUtf8("treeView"));
|
|
treeView->setAlternatingRowColors(true);
|
|
|
|
horizontalLayout_2->addWidget(treeView);
|
|
|
|
tabs->addTab(cupsPropertiesPage, QString());
|
|
|
|
verticalLayout_4->addWidget(tabs);
|
|
|
|
|
|
retranslateUi(QPrintPropertiesWidget);
|
|
|
|
tabs->setCurrentIndex(0);
|
|
|
|
|
|
QMetaObject::connectSlotsByName(QPrintPropertiesWidget);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QWidget *QPrintPropertiesWidget)
|
|
{
|
|
QPrintPropertiesWidget->setWindowTitle(QApplication::translate("QPrintPropertiesWidget", "Form", nullptr));
|
|
tabs->setTabText(tabs->indexOf(tabPage), QApplication::translate("QPrintPropertiesWidget", "Page", nullptr));
|
|
tabs->setTabText(tabs->indexOf(cupsPropertiesPage), QApplication::translate("QPrintPropertiesWidget", "Advanced", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class QPrintPropertiesWidget: public Ui_QPrintPropertiesWidget {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // QPRINTPROPERTIESWIDGET_H
|