1/********************************************************************************
2** Form generated from reading UI file 'qprintwidget.ui'
3**
4** Created by: Qt User Interface Compiler version 5.15.9
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_QPRINTWIDGET_H
10#define UI_QPRINTWIDGET_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QCheckBox>
15#include <QtWidgets/QComboBox>
16#include <QtWidgets/QGridLayout>
17#include <QtWidgets/QGroupBox>
18#include <QtWidgets/QHBoxLayout>
19#include <QtWidgets/QLabel>
20#include <QtWidgets/QLineEdit>
21#include <QtWidgets/QPushButton>
22#include <QtWidgets/QToolButton>
23#include <QtWidgets/QWidget>
24
25QT_BEGIN_NAMESPACE
26
27class Ui_QPrintWidget
28{
29public:
30 QHBoxLayout *horizontalLayout_2;
31 QGroupBox *printerGroup;
32 QGridLayout *gridLayout;
33 QLabel *label;
34 QComboBox *printers;
35 QPushButton *properties;
36 QLabel *label_2;
37 QLabel *location;
38 QCheckBox *preview;
39 QLabel *label_3;
40 QLabel *type;
41 QLabel *lOutput;
42 QHBoxLayout *horizontalLayout;
43 QLineEdit *filename;
44 QToolButton *fileBrowser;
45
46 void setupUi(QWidget *QPrintWidget)
47 {
48 if (QPrintWidget->objectName().isEmpty())
49 QPrintWidget->setObjectName(QString::fromUtf8(str: "QPrintWidget"));
50 QPrintWidget->resize(w: 443, h: 175);
51 horizontalLayout_2 = new QHBoxLayout(QPrintWidget);
52 horizontalLayout_2->setContentsMargins(left: 0, top: 0, right: 0, bottom: 0);
53 horizontalLayout_2->setObjectName(QString::fromUtf8(str: "horizontalLayout_2"));
54 printerGroup = new QGroupBox(QPrintWidget);
55 printerGroup->setObjectName(QString::fromUtf8(str: "printerGroup"));
56 gridLayout = new QGridLayout(printerGroup);
57 gridLayout->setObjectName(QString::fromUtf8(str: "gridLayout"));
58 label = new QLabel(printerGroup);
59 label->setObjectName(QString::fromUtf8(str: "label"));
60
61 gridLayout->addWidget(label, row: 0, column: 0, rowSpan: 1, columnSpan: 1);
62
63 printers = new QComboBox(printerGroup);
64 printers->setObjectName(QString::fromUtf8(str: "printers"));
65 QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
66 sizePolicy.setHorizontalStretch(3);
67 sizePolicy.setVerticalStretch(0);
68 sizePolicy.setHeightForWidth(printers->sizePolicy().hasHeightForWidth());
69 printers->setSizePolicy(sizePolicy);
70
71 gridLayout->addWidget(printers, row: 0, column: 1, rowSpan: 1, columnSpan: 1);
72
73 properties = new QPushButton(printerGroup);
74 properties->setObjectName(QString::fromUtf8(str: "properties"));
75 QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Fixed);
76 sizePolicy1.setHorizontalStretch(1);
77 sizePolicy1.setVerticalStretch(0);
78 sizePolicy1.setHeightForWidth(properties->sizePolicy().hasHeightForWidth());
79 properties->setSizePolicy(sizePolicy1);
80
81 gridLayout->addWidget(properties, row: 0, column: 2, rowSpan: 1, columnSpan: 1);
82
83 label_2 = new QLabel(printerGroup);
84 label_2->setObjectName(QString::fromUtf8(str: "label_2"));
85
86 gridLayout->addWidget(label_2, row: 1, column: 0, rowSpan: 1, columnSpan: 1);
87
88 location = new QLabel(printerGroup);
89 location->setObjectName(QString::fromUtf8(str: "location"));
90
91 gridLayout->addWidget(location, row: 1, column: 1, rowSpan: 1, columnSpan: 1);
92
93 preview = new QCheckBox(printerGroup);
94 preview->setObjectName(QString::fromUtf8(str: "preview"));
95
96 gridLayout->addWidget(preview, row: 1, column: 2, rowSpan: 1, columnSpan: 1);
97
98 label_3 = new QLabel(printerGroup);
99 label_3->setObjectName(QString::fromUtf8(str: "label_3"));
100
101 gridLayout->addWidget(label_3, row: 2, column: 0, rowSpan: 1, columnSpan: 1);
102
103 type = new QLabel(printerGroup);
104 type->setObjectName(QString::fromUtf8(str: "type"));
105
106 gridLayout->addWidget(type, row: 2, column: 1, rowSpan: 1, columnSpan: 1);
107
108 lOutput = new QLabel(printerGroup);
109 lOutput->setObjectName(QString::fromUtf8(str: "lOutput"));
110
111 gridLayout->addWidget(lOutput, row: 3, column: 0, rowSpan: 1, columnSpan: 1);
112
113 horizontalLayout = new QHBoxLayout();
114 horizontalLayout->setObjectName(QString::fromUtf8(str: "horizontalLayout"));
115 filename = new QLineEdit(printerGroup);
116 filename->setObjectName(QString::fromUtf8(str: "filename"));
117
118 horizontalLayout->addWidget(filename);
119
120 fileBrowser = new QToolButton(printerGroup);
121 fileBrowser->setObjectName(QString::fromUtf8(str: "fileBrowser"));
122
123 horizontalLayout->addWidget(fileBrowser);
124
125
126 gridLayout->addLayout(horizontalLayout, row: 3, column: 1, rowSpan: 1, columnSpan: 2);
127
128
129 horizontalLayout_2->addWidget(printerGroup);
130
131#if QT_CONFIG(shortcut)
132 label->setBuddy(printers);
133 lOutput->setBuddy(filename);
134#endif // QT_CONFIG(shortcut)
135
136 retranslateUi(QPrintWidget);
137
138 QMetaObject::connectSlotsByName(o: QPrintWidget);
139 } // setupUi
140
141 void retranslateUi(QWidget *QPrintWidget)
142 {
143 QPrintWidget->setWindowTitle(QCoreApplication::translate(context: "QPrintWidget", key: "Form", disambiguation: nullptr));
144 printerGroup->setTitle(QCoreApplication::translate(context: "QPrintWidget", key: "Printer", disambiguation: nullptr));
145 label->setText(QCoreApplication::translate(context: "QPrintWidget", key: "&Name:", disambiguation: nullptr));
146 properties->setText(QCoreApplication::translate(context: "QPrintWidget", key: "P&roperties", disambiguation: nullptr));
147 label_2->setText(QCoreApplication::translate(context: "QPrintWidget", key: "Location:", disambiguation: nullptr));
148 preview->setText(QCoreApplication::translate(context: "QPrintWidget", key: "Preview", disambiguation: nullptr));
149 label_3->setText(QCoreApplication::translate(context: "QPrintWidget", key: "Type:", disambiguation: nullptr));
150 lOutput->setText(QCoreApplication::translate(context: "QPrintWidget", key: "Output &file:", disambiguation: nullptr));
151 fileBrowser->setText(QCoreApplication::translate(context: "QPrintWidget", key: "...", disambiguation: nullptr));
152 } // retranslateUi
153
154};
155
156namespace Ui {
157 class QPrintWidget: public Ui_QPrintWidget {};
158} // namespace Ui
159
160QT_END_NAMESPACE
161
162#endif // UI_QPRINTWIDGET_H
163

source code of qtbase/src/printsupport/.uic/ui_qprintwidget.h