Commit 2543decb7ead117fcbea2ef0618ccaedf0f1b2f4
- Diff rendering mode:
- inline
- side by side
src/tools/uic/cpp/cppwriteinitialization.cpp
(19 / 3)
|   | |||
| 391 | 391 | } | |
| 392 | 392 | } | |
| 393 | 393 | ||
| 394 | static inline void writeContentsMargins(const QString &indent, const QString &objectName, int value, QTextStream &str) | ||
| 395 | { | ||
| 396 | QString contentsMargins; | ||
| 397 | QTextStream(&contentsMargins) << value << ", " << value << ", " << value << ", " << value; | ||
| 398 | writeSetter(indent, objectName, QLatin1String("setContentsMargins"), contentsMargins, str); | ||
| 399 | } | ||
| 400 | |||
| 394 | 401 | void WriteInitialization::LayoutDefaultHandler::writeProperty(int p, const QString &indent, const QString &objectName, | |
| 395 | 402 | const DomPropertyMap &properties, const QString &propertyName, const QString &setter, | |
| 396 | 403 | int defaultStyleValue, bool suppressDefault, QTextStream &str) const | |
| … | … | ||
| 415 | 415 | && value == defaultStyleValue); | |
| 416 | 416 | if (ifndefMac) | |
| 417 | 417 | str << "#ifndef Q_OS_MAC\n"; | |
| 418 | writeSetter(indent, objectName, setter, value, str); | ||
| 418 | if (p == Margin) { // Use setContentsMargins for numeric values | ||
| 419 | writeContentsMargins(indent, objectName, value, str); | ||
| 420 | } else { | ||
| 421 | writeSetter(indent, objectName, setter, value, str); | ||
| 422 | } | ||
| 419 | 423 | if (ifndefMac) | |
| 420 | 424 | str << "#endif\n"; | |
| 421 | 425 | return; | |
| … | … | ||
| 427 | 427 | } | |
| 428 | 428 | if (suppressDefault) | |
| 429 | 429 | return; | |
| 430 | // get default | ||
| 430 | // get default. | ||
| 431 | 431 | if (m_state[p] & HasDefaultFunction) { | |
| 432 | // Do not use setContentsMargins to avoid repetitive evaluations. | ||
| 432 | 433 | writeSetter(indent, objectName, setter, m_functions[p], str); | |
| 433 | 434 | return; | |
| 434 | 435 | } | |
| 435 | 436 | if (m_state[p] & HasDefaultValue) { | |
| 436 | writeSetter(indent, objectName, setter, m_defaultValues[p], str); | ||
| 437 | if (p == Margin) { // Use setContentsMargins for numeric values | ||
| 438 | writeContentsMargins(indent, objectName, m_defaultValues[p], str); | ||
| 439 | } else { | ||
| 440 | writeSetter(indent, objectName, setter, m_defaultValues[p], str); | ||
| 441 | } | ||
| 437 | 442 | } | |
| 438 | 443 | return; | |
| 439 | 444 | } |
tests/auto/uic/baseline/addtorrentform.ui.h
(3 / 3)
|   | |||
| 68 | 68 | #ifndef Q_OS_MAC | |
| 69 | 69 | vboxLayout->setSpacing(6); | |
| 70 | 70 | #endif | |
| 71 | vboxLayout->setMargin(8); | ||
| 71 | vboxLayout->setContentsMargins(8, 8, 8, 8); | ||
| 72 | 72 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 73 | 73 | groupBox = new QGroupBox(AddTorrentFile); | |
| 74 | 74 | groupBox->setObjectName(QString::fromUtf8("groupBox")); | |
| … | … | ||
| 79 | 79 | #ifndef Q_OS_MAC | |
| 80 | 80 | gridLayout->setSpacing(6); | |
| 81 | 81 | #endif | |
| 82 | gridLayout->setMargin(8); | ||
| 82 | gridLayout->setContentsMargins(8, 8, 8, 8); | ||
| 83 | 83 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 84 | 84 | label_4 = new QLabel(groupBox); | |
| 85 | 85 | label_4->setObjectName(QString::fromUtf8("label_4")); | |
| … | … | ||
| 175 | 175 | #ifndef Q_OS_MAC | |
| 176 | 176 | hboxLayout->setSpacing(6); | |
| 177 | 177 | #endif | |
| 178 | hboxLayout->setMargin(0); | ||
| 178 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 179 | 179 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 180 | 180 | spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 181 | 181 |
tests/auto/uic/baseline/batchtranslation.ui.h
(6 / 6)
|   | |||
| 101 | 101 | vboxLayout->setSpacing(6); | |
| 102 | 102 | #endif | |
| 103 | 103 | #ifndef Q_OS_MAC | |
| 104 | vboxLayout->setMargin(9); | ||
| 104 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 105 | 105 | #endif | |
| 106 | 106 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 107 | 107 | groupBox = new QGroupBox(databaseTranslationDialog); | |
| … | … | ||
| 116 | 116 | vboxLayout1->setSpacing(6); | |
| 117 | 117 | #endif | |
| 118 | 118 | #ifndef Q_OS_MAC | |
| 119 | vboxLayout1->setMargin(9); | ||
| 119 | vboxLayout1->setContentsMargins(9, 9, 9, 9); | ||
| 120 | 120 | #endif | |
| 121 | 121 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 122 | 122 | ckOnlyUntranslated = new QCheckBox(groupBox); | |
| … | … | ||
| 146 | 146 | vboxLayout2->setSpacing(6); | |
| 147 | 147 | #endif | |
| 148 | 148 | #ifndef Q_OS_MAC | |
| 149 | vboxLayout2->setMargin(9); | ||
| 149 | vboxLayout2->setContentsMargins(9, 9, 9, 9); | ||
| 150 | 150 | #endif | |
| 151 | 151 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 152 | 152 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 154 | 154 | hboxLayout->setSpacing(6); | |
| 155 | 155 | #endif | |
| 156 | 156 | #ifndef Q_OS_MAC | |
| 157 | hboxLayout->setMargin(0); | ||
| 157 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 158 | 158 | #endif | |
| 159 | 159 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 160 | 160 | phrasebookList = new QListView(groupBox_2); | |
| … | … | ||
| 167 | 167 | #ifndef Q_OS_MAC | |
| 168 | 168 | vboxLayout3->setSpacing(6); | |
| 169 | 169 | #endif | |
| 170 | vboxLayout3->setMargin(0); | ||
| 170 | vboxLayout3->setContentsMargins(0, 0, 0, 0); | ||
| 171 | 171 | vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3")); | |
| 172 | 172 | moveUpButton = new QPushButton(groupBox_2); | |
| 173 | 173 | moveUpButton->setObjectName(QString::fromUtf8("moveUpButton")); | |
| … | … | ||
| 202 | 202 | #ifndef Q_OS_MAC | |
| 203 | 203 | hboxLayout1->setSpacing(6); | |
| 204 | 204 | #endif | |
| 205 | hboxLayout1->setMargin(0); | ||
| 205 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 206 | 206 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 207 | 207 | spacerItem1 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 208 | 208 |
tests/auto/uic/baseline/bookwindow.ui.h
(2 / 2)
|   | |||
| 61 | 61 | vboxLayout->setSpacing(6); | |
| 62 | 62 | #endif | |
| 63 | 63 | #ifndef Q_OS_MAC | |
| 64 | vboxLayout->setMargin(9); | ||
| 64 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 65 | 65 | #endif | |
| 66 | 66 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 67 | 67 | groupBox = new QGroupBox(centralWidget); | |
| … | … | ||
| 71 | 71 | vboxLayout1->setSpacing(6); | |
| 72 | 72 | #endif | |
| 73 | 73 | #ifndef Q_OS_MAC | |
| 74 | vboxLayout1->setMargin(9); | ||
| 74 | vboxLayout1->setContentsMargins(9, 9, 9, 9); | ||
| 75 | 75 | #endif | |
| 76 | 76 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 77 | 77 | bookTable = new QTableView(groupBox); |
tests/auto/uic/baseline/browserwidget.ui.h
(3 / 3)
|   | |||
| 60 | 60 | #ifndef Q_OS_MAC | |
| 61 | 61 | vboxLayout->setSpacing(6); | |
| 62 | 62 | #endif | |
| 63 | vboxLayout->setMargin(8); | ||
| 63 | vboxLayout->setContentsMargins(8, 8, 8, 8); | ||
| 64 | 64 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 65 | 65 | splitter_2 = new QSplitter(Browser); | |
| 66 | 66 | splitter_2->setObjectName(QString::fromUtf8("splitter_2")); | |
| … | … | ||
| 104 | 104 | vboxLayout1->setSpacing(6); | |
| 105 | 105 | #endif | |
| 106 | 106 | #ifndef Q_OS_MAC | |
| 107 | vboxLayout1->setMargin(9); | ||
| 107 | vboxLayout1->setContentsMargins(9, 9, 9, 9); | ||
| 108 | 108 | #endif | |
| 109 | 109 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 110 | 110 | sqlEdit = new QTextEdit(groupBox); | |
| … | … | ||
| 123 | 123 | #ifndef Q_OS_MAC | |
| 124 | 124 | hboxLayout->setSpacing(6); | |
| 125 | 125 | #endif | |
| 126 | hboxLayout->setMargin(1); | ||
| 126 | hboxLayout->setContentsMargins(1, 1, 1, 1); | ||
| 127 | 127 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 128 | 128 | spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 129 | 129 |
tests/auto/uic/baseline/calculatorform.ui.h
(5 / 5)
|   | |||
| 59 | 59 | gridLayout->setSpacing(6); | |
| 60 | 60 | #endif | |
| 61 | 61 | #ifndef Q_OS_MAC | |
| 62 | gridLayout->setMargin(9); | ||
| 62 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 63 | 63 | #endif | |
| 64 | 64 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 65 | 65 | gridLayout->setObjectName(QString::fromUtf8("")); | |
| … | … | ||
| 67 | 67 | #ifndef Q_OS_MAC | |
| 68 | 68 | hboxLayout->setSpacing(6); | |
| 69 | 69 | #endif | |
| 70 | hboxLayout->setMargin(1); | ||
| 70 | hboxLayout->setContentsMargins(1, 1, 1, 1); | ||
| 71 | 71 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 72 | 72 | hboxLayout->setObjectName(QString::fromUtf8("")); | |
| 73 | 73 | vboxLayout = new QVBoxLayout(); | |
| 74 | 74 | #ifndef Q_OS_MAC | |
| 75 | 75 | vboxLayout->setSpacing(6); | |
| 76 | 76 | #endif | |
| 77 | vboxLayout->setMargin(1); | ||
| 77 | vboxLayout->setContentsMargins(1, 1, 1, 1); | ||
| 78 | 78 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 79 | 79 | vboxLayout->setObjectName(QString::fromUtf8("")); | |
| 80 | 80 | label = new QLabel(CalculatorForm); | |
| … | … | ||
| 104 | 104 | #ifndef Q_OS_MAC | |
| 105 | 105 | vboxLayout1->setSpacing(6); | |
| 106 | 106 | #endif | |
| 107 | vboxLayout1->setMargin(1); | ||
| 107 | vboxLayout1->setContentsMargins(1, 1, 1, 1); | ||
| 108 | 108 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 109 | 109 | vboxLayout1->setObjectName(QString::fromUtf8("")); | |
| 110 | 110 | label_2 = new QLabel(CalculatorForm); | |
| … | … | ||
| 134 | 134 | #ifndef Q_OS_MAC | |
| 135 | 135 | vboxLayout2->setSpacing(6); | |
| 136 | 136 | #endif | |
| 137 | vboxLayout2->setMargin(1); | ||
| 137 | vboxLayout2->setContentsMargins(1, 1, 1, 1); | ||
| 138 | 138 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 139 | 139 | vboxLayout2->setObjectName(QString::fromUtf8("")); | |
| 140 | 140 | label_2_2_2 = new QLabel(CalculatorForm); |
tests/auto/uic/baseline/chatdialog.ui.h
(3 / 3)
|   | |||
| 46 | 46 | vboxLayout->setSpacing(6); | |
| 47 | 47 | #endif | |
| 48 | 48 | #ifndef Q_OS_MAC | |
| 49 | vboxLayout->setMargin(9); | ||
| 49 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 50 | 50 | #endif | |
| 51 | 51 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 52 | 52 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 54 | 54 | hboxLayout->setSpacing(6); | |
| 55 | 55 | #endif | |
| 56 | 56 | #ifndef Q_OS_MAC | |
| 57 | hboxLayout->setMargin(0); | ||
| 57 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 58 | 58 | #endif | |
| 59 | 59 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 60 | 60 | textEdit = new QTextEdit(ChatDialog); | |
| … | … | ||
| 78 | 78 | #ifndef Q_OS_MAC | |
| 79 | 79 | hboxLayout1->setSpacing(6); | |
| 80 | 80 | #endif | |
| 81 | hboxLayout1->setMargin(0); | ||
| 81 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 82 | 82 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 83 | 83 | label = new QLabel(ChatDialog); | |
| 84 | 84 | label->setObjectName(QString::fromUtf8("label")); |
tests/auto/uic/baseline/chatmainwindow.ui.h
(3 / 3)
|   | |||
| 66 | 66 | hboxLayout->setSpacing(6); | |
| 67 | 67 | #endif | |
| 68 | 68 | #ifndef Q_OS_MAC | |
| 69 | hboxLayout->setMargin(9); | ||
| 69 | hboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 70 | 70 | #endif | |
| 71 | 71 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 72 | 72 | vboxLayout = new QVBoxLayout(); | |
| … | … | ||
| 74 | 74 | vboxLayout->setSpacing(6); | |
| 75 | 75 | #endif | |
| 76 | 76 | #ifndef Q_OS_MAC | |
| 77 | vboxLayout->setMargin(0); | ||
| 77 | vboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 78 | 78 | #endif | |
| 79 | 79 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 80 | 80 | chatHistory = new QTextBrowser(centralwidget); | |
| … | … | ||
| 88 | 88 | #ifndef Q_OS_MAC | |
| 89 | 89 | hboxLayout1->setSpacing(6); | |
| 90 | 90 | #endif | |
| 91 | hboxLayout1->setMargin(0); | ||
| 91 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 92 | 92 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 93 | 93 | label = new QLabel(centralwidget); | |
| 94 | 94 | label->setObjectName(QString::fromUtf8("label")); |
tests/auto/uic/baseline/chatsetnickname.ui.h
(3 / 3)
|   | |||
| 53 | 53 | vboxLayout->setSpacing(6); | |
| 54 | 54 | #endif | |
| 55 | 55 | #ifndef Q_OS_MAC | |
| 56 | vboxLayout->setMargin(9); | ||
| 56 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 57 | 57 | #endif | |
| 58 | 58 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 59 | 59 | vboxLayout1 = new QVBoxLayout(); | |
| … | … | ||
| 61 | 61 | vboxLayout1->setSpacing(6); | |
| 62 | 62 | #endif | |
| 63 | 63 | #ifndef Q_OS_MAC | |
| 64 | vboxLayout1->setMargin(0); | ||
| 64 | vboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 65 | 65 | #endif | |
| 66 | 66 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 67 | 67 | label = new QLabel(NicknameDialog); | |
| … | … | ||
| 83 | 83 | #ifndef Q_OS_MAC | |
| 84 | 84 | hboxLayout->setSpacing(6); | |
| 85 | 85 | #endif | |
| 86 | hboxLayout->setMargin(0); | ||
| 86 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 87 | 87 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 88 | 88 | spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 89 | 89 |
tests/auto/uic/baseline/config.ui.h
(4 / 4)
|   | |||
| 139 | 139 | Config->setSizeGripEnabled(true); | |
| 140 | 140 | vboxLayout = new QVBoxLayout(Config); | |
| 141 | 141 | vboxLayout->setSpacing(6); | |
| 142 | vboxLayout->setMargin(11); | ||
| 142 | vboxLayout->setContentsMargins(11, 11, 11, 11); | ||
| 143 | 143 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 144 | 144 | vboxLayout->setContentsMargins(8, 8, 8, 8); | |
| 145 | 145 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 155 | 155 | ButtonGroup1->setSizePolicy(sizePolicy); | |
| 156 | 156 | vboxLayout1 = new QVBoxLayout(ButtonGroup1); | |
| 157 | 157 | vboxLayout1->setSpacing(6); | |
| 158 | vboxLayout1->setMargin(11); | ||
| 158 | vboxLayout1->setContentsMargins(11, 11, 11, 11); | ||
| 159 | 159 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 160 | 160 | vboxLayout1->setContentsMargins(11, 11, 11, 11); | |
| 161 | 161 | size_176_220 = new QRadioButton(ButtonGroup1); | |
| … | … | ||
| 230 | 230 | ButtonGroup2->setObjectName(QString::fromUtf8("ButtonGroup2")); | |
| 231 | 231 | vboxLayout2 = new QVBoxLayout(ButtonGroup2); | |
| 232 | 232 | vboxLayout2->setSpacing(6); | |
| 233 | vboxLayout2->setMargin(11); | ||
| 233 | vboxLayout2->setContentsMargins(11, 11, 11, 11); | ||
| 234 | 234 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 235 | 235 | vboxLayout2->setContentsMargins(11, 11, 11, 11); | |
| 236 | 236 | depth_1 = new QRadioButton(ButtonGroup2); | |
| … | … | ||
| 337 | 337 | GroupBox1->setObjectName(QString::fromUtf8("GroupBox1")); | |
| 338 | 338 | gridLayout = new QGridLayout(GroupBox1); | |
| 339 | 339 | gridLayout->setSpacing(6); | |
| 340 | gridLayout->setMargin(11); | ||
| 340 | gridLayout->setContentsMargins(11, 11, 11, 11); | ||
| 341 | 341 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 342 | 342 | gridLayout->setHorizontalSpacing(6); | |
| 343 | 343 | gridLayout->setVerticalSpacing(6); |
tests/auto/uic/baseline/controller.ui.h
(1 / 1)
|   | |||
| 42 | 42 | gridLayout->setSpacing(6); | |
| 43 | 43 | #endif | |
| 44 | 44 | #ifndef Q_OS_MAC | |
| 45 | gridLayout->setMargin(9); | ||
| 45 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 46 | 46 | #endif | |
| 47 | 47 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 48 | 48 | label = new QLabel(Controller); |
tests/auto/uic/baseline/default.ui.h
(1 / 1)
|   | |||
| 83 | 83 | gridLayout->setSpacing(6); | |
| 84 | 84 | #endif | |
| 85 | 85 | #ifndef Q_OS_MAC | |
| 86 | gridLayout->setMargin(9); | ||
| 86 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 87 | 87 | #endif | |
| 88 | 88 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 89 | 89 | nameLabel = new QLabel(centralwidget); |
tests/auto/uic/baseline/downloaditem.ui.h
(1 / 1)
|   | |||
| 48 | 48 | DownloadItem->setObjectName(QString::fromUtf8("DownloadItem")); | |
| 49 | 49 | DownloadItem->resize(423, 110); | |
| 50 | 50 | horizontalLayout = new QHBoxLayout(DownloadItem); | |
| 51 | horizontalLayout->setMargin(0); | ||
| 51 | horizontalLayout->setContentsMargins(0, 0, 0, 0); | ||
| 52 | 52 | horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); | |
| 53 | 53 | fileIcon = new QLabel(DownloadItem); | |
| 54 | 54 | fileIcon->setObjectName(QString::fromUtf8("fileIcon")); |
tests/auto/uic/baseline/downloads.ui.h
(1 / 1)
|   | |||
| 43 | 43 | DownloadDialog->resize(332, 252); | |
| 44 | 44 | gridLayout = new QGridLayout(DownloadDialog); | |
| 45 | 45 | gridLayout->setSpacing(0); | |
| 46 | gridLayout->setMargin(0); | ||
| 46 | gridLayout->setContentsMargins(0, 0, 0, 0); | ||
| 47 | 47 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 48 | 48 | downloadsView = new EditTableView(DownloadDialog); | |
| 49 | 49 | downloadsView->setObjectName(QString::fromUtf8("downloadsView")); |
tests/auto/uic/baseline/filternamedialog.ui.h
(1 / 1)
|   | |||
| 42 | 42 | FilterNameDialogClass->resize(312, 95); | |
| 43 | 43 | gridLayout = new QGridLayout(FilterNameDialogClass); | |
| 44 | 44 | gridLayout->setSpacing(6); | |
| 45 | gridLayout->setMargin(9); | ||
| 45 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 46 | 46 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 47 | 47 | label = new QLabel(FilterNameDialogClass); | |
| 48 | 48 | label->setObjectName(QString::fromUtf8("label")); |
tests/auto/uic/baseline/finddialog.ui.h
(5 / 5)
|   | |||
| 102 | 102 | FindDialog->setSizePolicy(sizePolicy); | |
| 103 | 103 | hboxLayout = new QHBoxLayout(FindDialog); | |
| 104 | 104 | hboxLayout->setSpacing(6); | |
| 105 | hboxLayout->setMargin(11); | ||
| 105 | hboxLayout->setContentsMargins(11, 11, 11, 11); | ||
| 106 | 106 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 107 | 107 | vboxLayout = new QVBoxLayout(); | |
| 108 | 108 | vboxLayout->setSpacing(6); | |
| 109 | vboxLayout->setMargin(0); | ||
| 109 | vboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 110 | 110 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 111 | 111 | hboxLayout1 = new QHBoxLayout(); | |
| 112 | 112 | hboxLayout1->setSpacing(6); | |
| 113 | hboxLayout1->setMargin(0); | ||
| 113 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 114 | 114 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 115 | 115 | findWhat = new QLabel(FindDialog); | |
| 116 | 116 | findWhat->setObjectName(QString::fromUtf8("findWhat")); | |
| … | … | ||
| 129 | 129 | groupBox->setObjectName(QString::fromUtf8("groupBox")); | |
| 130 | 130 | gridLayout = new QGridLayout(groupBox); | |
| 131 | 131 | gridLayout->setSpacing(6); | |
| 132 | gridLayout->setMargin(9); | ||
| 132 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 133 | 133 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 134 | 134 | sourceText = new QCheckBox(groupBox); | |
| 135 | 135 | sourceText->setObjectName(QString::fromUtf8("sourceText")); | |
| … | … | ||
| 168 | 168 | ||
| 169 | 169 | vboxLayout1 = new QVBoxLayout(); | |
| 170 | 170 | vboxLayout1->setSpacing(6); | |
| 171 | vboxLayout1->setMargin(0); | ||
| 171 | vboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 172 | 172 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 173 | 173 | findNxt = new QPushButton(FindDialog); | |
| 174 | 174 | findNxt->setObjectName(QString::fromUtf8("findNxt")); |
tests/auto/uic/baseline/form.ui.h
(4 / 4)
|   | |||
| 51 | 51 | hboxLayout->setSpacing(6); | |
| 52 | 52 | #endif | |
| 53 | 53 | #ifndef Q_OS_MAC | |
| 54 | hboxLayout->setMargin(9); | ||
| 54 | hboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 55 | 55 | #endif | |
| 56 | 56 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 57 | 57 | worldTimeClock = new WorldTimeClock(WorldTimeForm); | |
| … | … | ||
| 63 | 63 | #ifndef Q_OS_MAC | |
| 64 | 64 | vboxLayout->setSpacing(6); | |
| 65 | 65 | #endif | |
| 66 | vboxLayout->setMargin(1); | ||
| 66 | vboxLayout->setContentsMargins(1, 1, 1, 1); | ||
| 67 | 67 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 68 | 68 | spacerItem = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); | |
| 69 | 69 | ||
| … | … | ||
| 73 | 73 | #ifndef Q_OS_MAC | |
| 74 | 74 | hboxLayout1->setSpacing(6); | |
| 75 | 75 | #endif | |
| 76 | hboxLayout1->setMargin(1); | ||
| 76 | hboxLayout1->setContentsMargins(1, 1, 1, 1); | ||
| 77 | 77 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 78 | 78 | label = new QLabel(WorldTimeForm); | |
| 79 | 79 | label->setObjectName(QString::fromUtf8("label")); | |
| … | … | ||
| 93 | 93 | #ifndef Q_OS_MAC | |
| 94 | 94 | hboxLayout2->setSpacing(6); | |
| 95 | 95 | #endif | |
| 96 | hboxLayout2->setMargin(1); | ||
| 96 | hboxLayout2->setContentsMargins(1, 1, 1, 1); | ||
| 97 | 97 | hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2")); | |
| 98 | 98 | label_2 = new QLabel(WorldTimeForm); | |
| 99 | 99 | label_2->setObjectName(QString::fromUtf8("label_2")); |
tests/auto/uic/baseline/formwindowsettings.ui.h
(7 / 7)
|   | |||
| 130 | 130 | #ifndef Q_OS_MAC | |
| 131 | 131 | hboxLayout->setSpacing(6); | |
| 132 | 132 | #endif | |
| 133 | hboxLayout->setMargin(0); | ||
| 133 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 134 | 134 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 135 | 135 | layoutDefaultGroupBox = new QGroupBox(FormWindowSettings); | |
| 136 | 136 | layoutDefaultGroupBox->setObjectName(QString::fromUtf8("layoutDefaultGroupBox")); | |
| … | … | ||
| 139 | 139 | #ifndef Q_OS_MAC | |
| 140 | 140 | gridLayout1->setSpacing(6); | |
| 141 | 141 | #endif | |
| 142 | gridLayout1->setMargin(8); | ||
| 142 | gridLayout1->setContentsMargins(8, 8, 8, 8); | ||
| 143 | 143 | gridLayout1->setObjectName(QString::fromUtf8("gridLayout1")); | |
| 144 | 144 | label_2 = new QLabel(layoutDefaultGroupBox); | |
| 145 | 145 | label_2->setObjectName(QString::fromUtf8("label_2")); | |
| … | … | ||
| 171 | 171 | #ifndef Q_OS_MAC | |
| 172 | 172 | gridLayout2->setSpacing(6); | |
| 173 | 173 | #endif | |
| 174 | gridLayout2->setMargin(8); | ||
| 174 | gridLayout2->setContentsMargins(8, 8, 8, 8); | ||
| 175 | 175 | gridLayout2->setObjectName(QString::fromUtf8("gridLayout2")); | |
| 176 | 176 | spacingFunctionLineEdit = new QLineEdit(layoutFunctionGroupBox); | |
| 177 | 177 | spacingFunctionLineEdit->setObjectName(QString::fromUtf8("spacingFunctionLineEdit")); | |
| … | … | ||
| 205 | 205 | #ifndef Q_OS_MAC | |
| 206 | 206 | vboxLayout->setSpacing(6); | |
| 207 | 207 | #endif | |
| 208 | vboxLayout->setMargin(8); | ||
| 208 | vboxLayout->setContentsMargins(8, 8, 8, 8); | ||
| 209 | 209 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 210 | 210 | authorLineEdit = new QLineEdit(pixmapFunctionGroupBox_2); | |
| 211 | 211 | authorLineEdit->setObjectName(QString::fromUtf8("authorLineEdit")); | |
| … | … | ||
| 221 | 221 | #ifndef Q_OS_MAC | |
| 222 | 222 | vboxLayout1->setSpacing(6); | |
| 223 | 223 | #endif | |
| 224 | vboxLayout1->setMargin(8); | ||
| 224 | vboxLayout1->setContentsMargins(8, 8, 8, 8); | ||
| 225 | 225 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 226 | 226 | includeHintsTextEdit = new QTextEdit(includeHintsGroupBox); | |
| 227 | 227 | includeHintsTextEdit->setObjectName(QString::fromUtf8("includeHintsTextEdit")); | |
| … | … | ||
| 235 | 235 | #ifndef Q_OS_MAC | |
| 236 | 236 | hboxLayout1->setSpacing(6); | |
| 237 | 237 | #endif | |
| 238 | hboxLayout1->setMargin(0); | ||
| 238 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 239 | 239 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 240 | 240 | pixmapFunctionGroupBox = new QGroupBox(FormWindowSettings); | |
| 241 | 241 | pixmapFunctionGroupBox->setObjectName(QString::fromUtf8("pixmapFunctionGroupBox")); | |
| … | … | ||
| 244 | 244 | #ifndef Q_OS_MAC | |
| 245 | 245 | vboxLayout2->setSpacing(6); | |
| 246 | 246 | #endif | |
| 247 | vboxLayout2->setMargin(8); | ||
| 247 | vboxLayout2->setContentsMargins(8, 8, 8, 8); | ||
| 248 | 248 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 249 | 249 | pixmapFunctionLineEdit = new QLineEdit(pixmapFunctionGroupBox); | |
| 250 | 250 | pixmapFunctionLineEdit->setObjectName(QString::fromUtf8("pixmapFunctionLineEdit")); |
tests/auto/uic/baseline/helpdialog.ui.h
(8 / 8)
|   | |||
| 119 | 119 | #ifndef Q_OS_MAC | |
| 120 | 120 | vboxLayout->setSpacing(6); | |
| 121 | 121 | #endif | |
| 122 | vboxLayout->setMargin(0); | ||
| 122 | vboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 123 | 123 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 124 | 124 | tabWidget = new QTabWidget(HelpDialog); | |
| 125 | 125 | tabWidget->setObjectName(QString::fromUtf8("tabWidget")); | |
| … | … | ||
| 129 | 129 | #ifndef Q_OS_MAC | |
| 130 | 130 | vboxLayout1->setSpacing(6); | |
| 131 | 131 | #endif | |
| 132 | vboxLayout1->setMargin(5); | ||
| 132 | vboxLayout1->setContentsMargins(5, 5, 5, 5); | ||
| 133 | 133 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 134 | 134 | listContents = new QTreeWidget(contentPage); | |
| 135 | 135 | listContents->setObjectName(QString::fromUtf8("listContents")); | |
| … | … | ||
| 146 | 146 | #ifndef Q_OS_MAC | |
| 147 | 147 | vboxLayout2->setSpacing(6); | |
| 148 | 148 | #endif | |
| 149 | vboxLayout2->setMargin(5); | ||
| 149 | vboxLayout2->setContentsMargins(5, 5, 5, 5); | ||
| 150 | 150 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 151 | 151 | TextLabel1 = new QLabel(indexPage); | |
| 152 | 152 | TextLabel1->setObjectName(QString::fromUtf8("TextLabel1")); | |
| … | … | ||
| 171 | 171 | #ifndef Q_OS_MAC | |
| 172 | 172 | vboxLayout3->setSpacing(6); | |
| 173 | 173 | #endif | |
| 174 | vboxLayout3->setMargin(5); | ||
| 174 | vboxLayout3->setContentsMargins(5, 5, 5, 5); | ||
| 175 | 175 | vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3")); | |
| 176 | 176 | listBookmarks = new QTreeWidget(bookmarkPage); | |
| 177 | 177 | listBookmarks->setObjectName(QString::fromUtf8("listBookmarks")); | |
| … | … | ||
| 184 | 184 | #ifndef Q_OS_MAC | |
| 185 | 185 | hboxLayout->setSpacing(6); | |
| 186 | 186 | #endif | |
| 187 | hboxLayout->setMargin(0); | ||
| 187 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 188 | 188 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 189 | 189 | spacerItem = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 190 | 190 | ||
| … | … | ||
| 210 | 210 | #ifndef Q_OS_MAC | |
| 211 | 211 | gridLayout->setSpacing(6); | |
| 212 | 212 | #endif | |
| 213 | gridLayout->setMargin(5); | ||
| 213 | gridLayout->setContentsMargins(5, 5, 5, 5); | ||
| 214 | 214 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 215 | 215 | spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed); | |
| 216 | 216 | ||
| … | … | ||
| 241 | 241 | #ifndef Q_OS_MAC | |
| 242 | 242 | hboxLayout1->setSpacing(6); | |
| 243 | 243 | #endif | |
| 244 | hboxLayout1->setMargin(1); | ||
| 244 | hboxLayout1->setContentsMargins(1, 1, 1, 1); | ||
| 245 | 245 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 246 | 246 | helpButton = new QPushButton(searchPage); | |
| 247 | 247 | helpButton->setObjectName(QString::fromUtf8("helpButton")); | |
| … | … | ||
| 273 | 273 | #ifndef Q_OS_MAC | |
| 274 | 274 | hboxLayout2->setSpacing(6); | |
| 275 | 275 | #endif | |
| 276 | hboxLayout2->setMargin(3); | ||
| 276 | hboxLayout2->setContentsMargins(3, 3, 3, 3); | ||
| 277 | 277 | hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2")); | |
| 278 | 278 | labelPrepare = new QLabel(framePrepare); | |
| 279 | 279 | labelPrepare->setObjectName(QString::fromUtf8("labelPrepare")); |
tests/auto/uic/baseline/imagedialog.ui.h
(3 / 3)
|   | |||
| 58 | 58 | vboxLayout->setSpacing(6); | |
| 59 | 59 | #endif | |
| 60 | 60 | #ifndef Q_OS_MAC | |
| 61 | vboxLayout->setMargin(9); | ||
| 61 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 62 | 62 | #endif | |
| 63 | 63 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 64 | 64 | vboxLayout->setObjectName(QString::fromUtf8("")); | |
| … | … | ||
| 66 | 66 | #ifndef Q_OS_MAC | |
| 67 | 67 | gridLayout->setSpacing(6); | |
| 68 | 68 | #endif | |
| 69 | gridLayout->setMargin(1); | ||
| 69 | gridLayout->setContentsMargins(1, 1, 1, 1); | ||
| 70 | 70 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 71 | 71 | gridLayout->setObjectName(QString::fromUtf8("")); | |
| 72 | 72 | widthLabel = new QLabel(dialog); | |
| … | … | ||
| 164 | 164 | #ifndef Q_OS_MAC | |
| 165 | 165 | hboxLayout->setSpacing(6); | |
| 166 | 166 | #endif | |
| 167 | hboxLayout->setMargin(1); | ||
| 167 | hboxLayout->setContentsMargins(1, 1, 1, 1); | ||
| 168 | 168 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 169 | 169 | hboxLayout->setObjectName(QString::fromUtf8("")); | |
| 170 | 170 | spacerItem1 = new QSpacerItem(QSizePolicy::Expanding, QSizePolicy::Minimum); |
tests/auto/uic/baseline/listwidgeteditor.ui.h
(1 / 1)
|   | |||
| 102 | 102 | vboxLayout->setSpacing(6); | |
| 103 | 103 | #endif | |
| 104 | 104 | #ifndef Q_OS_MAC | |
| 105 | vboxLayout->setMargin(9); | ||
| 105 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 106 | 106 | #endif | |
| 107 | 107 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 108 | 108 | groupBox = new QGroupBox(qdesigner_internal__ListWidgetEditor); |
tests/auto/uic/baseline/mainwindow.ui.h
(9 / 9)
|   | |||
| 102 | 102 | vboxLayout->setSpacing(6); | |
| 103 | 103 | #endif | |
| 104 | 104 | #ifndef Q_OS_MAC | |
| 105 | vboxLayout->setMargin(9); | ||
| 105 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 106 | 106 | #endif | |
| 107 | 107 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 108 | 108 | groupBox = new QGroupBox(centralwidget); | |
| … | … | ||
| 112 | 112 | hboxLayout->setSpacing(6); | |
| 113 | 113 | #endif | |
| 114 | 114 | #ifndef Q_OS_MAC | |
| 115 | hboxLayout->setMargin(9); | ||
| 115 | hboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 116 | 116 | #endif | |
| 117 | 117 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 118 | 118 | label = new QLabel(groupBox); | |
| … | … | ||
| 165 | 165 | vboxLayout1->setSpacing(6); | |
| 166 | 166 | #endif | |
| 167 | 167 | #ifndef Q_OS_MAC | |
| 168 | vboxLayout1->setMargin(9); | ||
| 168 | vboxLayout1->setContentsMargins(9, 9, 9, 9); | ||
| 169 | 169 | #endif | |
| 170 | 170 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 171 | 171 | chooseFromCodePoints = new QRadioButton(groupBox_2); | |
| … | … | ||
| 178 | 178 | #ifndef Q_OS_MAC | |
| 179 | 179 | vboxLayout2->setSpacing(6); | |
| 180 | 180 | #endif | |
| 181 | vboxLayout2->setMargin(0); | ||
| 181 | vboxLayout2->setContentsMargins(0, 0, 0, 0); | ||
| 182 | 182 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 183 | 183 | characterRangeView = new QListWidget(groupBox_2); | |
| 184 | 184 | characterRangeView->setObjectName(QString::fromUtf8("characterRangeView")); | |
| … | … | ||
| 189 | 189 | #ifndef Q_OS_MAC | |
| 190 | 190 | hboxLayout1->setSpacing(6); | |
| 191 | 191 | #endif | |
| 192 | hboxLayout1->setMargin(0); | ||
| 192 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 193 | 193 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 194 | 194 | selectAll = new QPushButton(groupBox_2); | |
| 195 | 195 | selectAll->setObjectName(QString::fromUtf8("selectAll")); | |
| … | … | ||
| 225 | 225 | #ifndef Q_OS_MAC | |
| 226 | 226 | hboxLayout2->setSpacing(6); | |
| 227 | 227 | #endif | |
| 228 | hboxLayout2->setMargin(0); | ||
| 228 | hboxLayout2->setContentsMargins(0, 0, 0, 0); | ||
| 229 | 229 | hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2")); | |
| 230 | 230 | label_5 = new QLabel(groupBox_2); | |
| 231 | 231 | label_5->setObjectName(QString::fromUtf8("label_5")); | |
| … | … | ||
| 264 | 264 | hboxLayout3->setSpacing(6); | |
| 265 | 265 | #endif | |
| 266 | 266 | #ifndef Q_OS_MAC | |
| 267 | hboxLayout3->setMargin(9); | ||
| 267 | hboxLayout3->setContentsMargins(9, 9, 9, 9); | ||
| 268 | 268 | #endif | |
| 269 | 269 | hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3")); | |
| 270 | 270 | preview = new QLineEdit(groupBox_3); | |
| … | … | ||
| 282 | 282 | hboxLayout4->setSpacing(6); | |
| 283 | 283 | #endif | |
| 284 | 284 | #ifndef Q_OS_MAC | |
| 285 | hboxLayout4->setMargin(9); | ||
| 285 | hboxLayout4->setContentsMargins(9, 9, 9, 9); | ||
| 286 | 286 | #endif | |
| 287 | 287 | hboxLayout4->setObjectName(QString::fromUtf8("hboxLayout4")); | |
| 288 | 288 | label_3 = new QLabel(groupBox_4); | |
| … | … | ||
| 318 | 318 | #ifndef Q_OS_MAC | |
| 319 | 319 | hboxLayout5->setSpacing(6); | |
| 320 | 320 | #endif | |
| 321 | hboxLayout5->setMargin(0); | ||
| 321 | hboxLayout5->setContentsMargins(0, 0, 0, 0); | ||
| 322 | 322 | hboxLayout5->setObjectName(QString::fromUtf8("hboxLayout5")); | |
| 323 | 323 | generate = new QPushButton(centralwidget); | |
| 324 | 324 | generate->setObjectName(QString::fromUtf8("generate")); |
tests/auto/uic/baseline/mainwindowbase.ui.h
(20 / 20)
|   | |||
| 218 | 218 | widget->setGeometry(QRect(0, 28, 724, 587)); | |
| 219 | 219 | hboxLayout = new QHBoxLayout(widget); | |
| 220 | 220 | hboxLayout->setSpacing(4); | |
| 221 | hboxLayout->setMargin(8); | ||
| 221 | hboxLayout->setContentsMargins(8, 8, 8, 8); | ||
| 222 | 222 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 223 | 223 | hboxLayout->setContentsMargins(0, 0, 0, 0); | |
| 224 | 224 | helpview = new QTextEdit(widget); | |
| … | … | ||
| 234 | 234 | tab1->setObjectName(QString::fromUtf8("tab1")); | |
| 235 | 235 | vboxLayout = new QVBoxLayout(tab1); | |
| 236 | 236 | vboxLayout->setSpacing(4); | |
| 237 | vboxLayout->setMargin(4); | ||
| 237 | vboxLayout->setContentsMargins(4, 4, 4, 4); | ||
| 238 | 238 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 239 | 239 | GroupBox40 = new QGroupBox(tab1); | |
| 240 | 240 | GroupBox40->setObjectName(QString::fromUtf8("GroupBox40")); | |
| 241 | 241 | hboxLayout1 = new QHBoxLayout(GroupBox40); | |
| 242 | 242 | hboxLayout1->setSpacing(4); | |
| 243 | hboxLayout1->setMargin(8); | ||
| 243 | hboxLayout1->setContentsMargins(8, 8, 8, 8); | ||
| 244 | 244 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 245 | 245 | gstylebuddy = new QLabel(GroupBox40); | |
| 246 | 246 | gstylebuddy->setObjectName(QString::fromUtf8("gstylebuddy")); | |
| … | … | ||
| 264 | 264 | groupAutoPalette->setSizePolicy(sizePolicy); | |
| 265 | 265 | hboxLayout2 = new QHBoxLayout(groupAutoPalette); | |
| 266 | 266 | hboxLayout2->setSpacing(4); | |
| 267 | hboxLayout2->setMargin(8); | ||
| 267 | hboxLayout2->setContentsMargins(8, 8, 8, 8); | ||
| 268 | 268 | hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2")); | |
| 269 | 269 | labelMainColor = new QLabel(groupAutoPalette); | |
| 270 | 270 | labelMainColor->setObjectName(QString::fromUtf8("labelMainColor")); | |
| … | … | ||
| 317 | 317 | GroupBox126->setSizePolicy(sizePolicy2); | |
| 318 | 318 | gridLayout = new QGridLayout(GroupBox126); | |
| 319 | 319 | gridLayout->setSpacing(4); | |
| 320 | gridLayout->setMargin(8); | ||
| 320 | gridLayout->setContentsMargins(8, 8, 8, 8); | ||
| 321 | 321 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 322 | 322 | TextLabel1 = new QLabel(GroupBox126); | |
| 323 | 323 | TextLabel1->setObjectName(QString::fromUtf8("TextLabel1")); | |
| … | … | ||
| 348 | 348 | tab2->setObjectName(QString::fromUtf8("tab2")); | |
| 349 | 349 | vboxLayout1 = new QVBoxLayout(tab2); | |
| 350 | 350 | vboxLayout1->setSpacing(4); | |
| 351 | vboxLayout1->setMargin(8); | ||
| 351 | vboxLayout1->setContentsMargins(8, 8, 8, 8); | ||
| 352 | 352 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 353 | 353 | GroupBox1 = new QGroupBox(tab2); | |
| 354 | 354 | GroupBox1->setObjectName(QString::fromUtf8("GroupBox1")); | |
| 355 | 355 | gridLayout1 = new QGridLayout(GroupBox1); | |
| 356 | 356 | gridLayout1->setSpacing(4); | |
| 357 | gridLayout1->setMargin(8); | ||
| 357 | gridLayout1->setContentsMargins(8, 8, 8, 8); | ||
| 358 | 358 | gridLayout1->setObjectName(QString::fromUtf8("gridLayout1")); | |
| 359 | 359 | stylecombo = new QComboBox(GroupBox1); | |
| 360 | 360 | stylecombo->setObjectName(QString::fromUtf8("stylecombo")); | |
| … | … | ||
| 406 | 406 | GroupBox2->setObjectName(QString::fromUtf8("GroupBox2")); | |
| 407 | 407 | vboxLayout2 = new QVBoxLayout(GroupBox2); | |
| 408 | 408 | vboxLayout2->setSpacing(4); | |
| 409 | vboxLayout2->setMargin(8); | ||
| 409 | vboxLayout2->setContentsMargins(8, 8, 8, 8); | ||
| 410 | 410 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 411 | 411 | hboxLayout3 = new QHBoxLayout(); | |
| 412 | 412 | hboxLayout3->setSpacing(4); | |
| 413 | 413 | #ifndef Q_OS_MAC | |
| 414 | hboxLayout3->setMargin(0); | ||
| 414 | hboxLayout3->setContentsMargins(0, 0, 0, 0); | ||
| 415 | 415 | #endif | |
| 416 | 416 | hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3")); | |
| 417 | 417 | famsubbuddy = new QLabel(GroupBox2); | |
| … | … | ||
| 450 | 450 | ||
| 451 | 451 | hboxLayout4 = new QHBoxLayout(); | |
| 452 | 452 | hboxLayout4->setSpacing(4); | |
| 453 | hboxLayout4->setMargin(0); | ||
| 453 | hboxLayout4->setContentsMargins(0, 0, 0, 0); | ||
| 454 | 454 | hboxLayout4->setObjectName(QString::fromUtf8("hboxLayout4")); | |
| 455 | 455 | PushButton2 = new QPushButton(GroupBox2); | |
| 456 | 456 | PushButton2->setObjectName(QString::fromUtf8("PushButton2")); | |
| … | … | ||
| 480 | 480 | ||
| 481 | 481 | hboxLayout5 = new QHBoxLayout(); | |
| 482 | 482 | hboxLayout5->setSpacing(4); | |
| 483 | hboxLayout5->setMargin(0); | ||
| 483 | hboxLayout5->setContentsMargins(0, 0, 0, 0); | ||
| 484 | 484 | hboxLayout5->setObjectName(QString::fromUtf8("hboxLayout5")); | |
| 485 | 485 | choosebuddy = new QLabel(GroupBox2); | |
| 486 | 486 | choosebuddy->setObjectName(QString::fromUtf8("choosebuddy")); | |
| … | … | ||
| 510 | 510 | tab->setObjectName(QString::fromUtf8("tab")); | |
| 511 | 511 | vboxLayout3 = new QVBoxLayout(tab); | |
| 512 | 512 | vboxLayout3->setSpacing(4); | |
| 513 | vboxLayout3->setMargin(7); | ||
| 513 | vboxLayout3->setContentsMargins(7, 7, 7, 7); | ||
| 514 | 514 | vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3")); | |
| 515 | 515 | GroupBox4 = new QGroupBox(tab); | |
| 516 | 516 | GroupBox4->setObjectName(QString::fromUtf8("GroupBox4")); | |
| 517 | 517 | gridLayout2 = new QGridLayout(GroupBox4); | |
| 518 | 518 | gridLayout2->setSpacing(4); | |
| 519 | gridLayout2->setMargin(8); | ||
| 519 | gridLayout2->setContentsMargins(8, 8, 8, 8); | ||
| 520 | 520 | gridLayout2->setObjectName(QString::fromUtf8("gridLayout2")); | |
| 521 | 521 | dcispin = new QSpinBox(GroupBox4); | |
| 522 | 522 | dcispin->setObjectName(QString::fromUtf8("dcispin")); | |
| … | … | ||
| 566 | 566 | GroupBox3->setObjectName(QString::fromUtf8("GroupBox3")); | |
| 567 | 567 | vboxLayout4 = new QVBoxLayout(GroupBox3); | |
| 568 | 568 | vboxLayout4->setSpacing(4); | |
| 569 | vboxLayout4->setMargin(8); | ||
| 569 | vboxLayout4->setContentsMargins(8, 8, 8, 8); | ||
| 570 | 570 | vboxLayout4->setObjectName(QString::fromUtf8("vboxLayout4")); | |
| 571 | 571 | effectcheckbox = new QCheckBox(GroupBox3); | |
| 572 | 572 | effectcheckbox->setObjectName(QString::fromUtf8("effectcheckbox")); | |
| … | … | ||
| 579 | 579 | effectbase->setFrameShadow(QFrame::Plain); | |
| 580 | 580 | gridLayout3 = new QGridLayout(effectbase); | |
| 581 | 581 | gridLayout3->setSpacing(4); | |
| 582 | gridLayout3->setMargin(0); | ||
| 582 | gridLayout3->setContentsMargins(0, 0, 0, 0); | ||
| 583 | 583 | gridLayout3->setObjectName(QString::fromUtf8("gridLayout3")); | |
| 584 | 584 | meffectbuddy = new QLabel(effectbase); | |
| 585 | 585 | meffectbuddy->setObjectName(QString::fromUtf8("meffectbuddy")); | |
| … | … | ||
| 632 | 632 | GroupBox5->setObjectName(QString::fromUtf8("GroupBox5")); | |
| 633 | 633 | gridLayout4 = new QGridLayout(GroupBox5); | |
| 634 | 634 | gridLayout4->setSpacing(4); | |
| 635 | gridLayout4->setMargin(8); | ||
| 635 | gridLayout4->setContentsMargins(8, 8, 8, 8); | ||
| 636 | 636 | gridLayout4->setObjectName(QString::fromUtf8("gridLayout4")); | |
| 637 | 637 | swbuddy = new QLabel(GroupBox5); | |
| 638 | 638 | swbuddy->setObjectName(QString::fromUtf8("swbuddy")); | |
| … | … | ||
| 683 | 683 | tab3->setObjectName(QString::fromUtf8("tab3")); | |
| 684 | 684 | vboxLayout5 = new QVBoxLayout(tab3); | |
| 685 | 685 | vboxLayout5->setSpacing(4); | |
| 686 | vboxLayout5->setMargin(8); | ||
| 686 | vboxLayout5->setContentsMargins(8, 8, 8, 8); | ||
| 687 | 687 | vboxLayout5->setObjectName(QString::fromUtf8("vboxLayout5")); | |
| 688 | 688 | fontembeddingcheckbox = new QCheckBox(tab3); | |
| 689 | 689 | fontembeddingcheckbox->setObjectName(QString::fromUtf8("fontembeddingcheckbox")); | |
| … | … | ||
| 697 | 697 | GroupBox10->setSizePolicy(sizePolicy2); | |
| 698 | 698 | vboxLayout6 = new QVBoxLayout(GroupBox10); | |
| 699 | 699 | vboxLayout6->setSpacing(4); | |
| 700 | vboxLayout6->setMargin(8); | ||
| 700 | vboxLayout6->setContentsMargins(8, 8, 8, 8); | ||
| 701 | 701 | vboxLayout6->setObjectName(QString::fromUtf8("vboxLayout6")); | |
| 702 | 702 | gridLayout5 = new QGridLayout(); | |
| 703 | 703 | gridLayout5->setSpacing(4); | |
| 704 | 704 | #ifndef Q_OS_MAC | |
| 705 | gridLayout5->setMargin(0); | ||
| 705 | gridLayout5->setContentsMargins(0, 0, 0, 0); | ||
| 706 | 706 | #endif | |
| 707 | 707 | gridLayout5->setObjectName(QString::fromUtf8("gridLayout5")); | |
| 708 | 708 | PushButton11 = new QPushButton(GroupBox10); | |
| … | … | ||
| 730 | 730 | ||
| 731 | 731 | gridLayout6 = new QGridLayout(); | |
| 732 | 732 | gridLayout6->setSpacing(4); | |
| 733 | gridLayout6->setMargin(0); | ||
| 733 | gridLayout6->setContentsMargins(0, 0, 0, 0); | ||
| 734 | 734 | gridLayout6->setObjectName(QString::fromUtf8("gridLayout6")); | |
| 735 | 735 | spacerItem2 = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Minimum); | |
| 736 | 736 |
tests/auto/uic/baseline/mydialog.ui.h
(1 / 1)
|   | |||
| 40 | 40 | vboxLayout->setSpacing(6); | |
| 41 | 41 | #endif | |
| 42 | 42 | #ifndef Q_OS_MAC | |
| 43 | vboxLayout->setMargin(9); | ||
| 43 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 44 | 44 | #endif | |
| 45 | 45 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 46 | 46 | aLabel = new QLabel(MyDialog); |
tests/auto/uic/baseline/myform.ui.h
(2 / 2)
|   | |||
| 51 | 51 | #ifndef Q_OS_MAC | |
| 52 | 52 | vboxLayout->setSpacing(6); | |
| 53 | 53 | #endif | |
| 54 | vboxLayout->setMargin(8); | ||
| 54 | vboxLayout->setContentsMargins(8, 8, 8, 8); | ||
| 55 | 55 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 56 | 56 | groupBox = new QGroupBox(Form); | |
| 57 | 57 | groupBox->setObjectName(QString::fromUtf8("groupBox")); | |
| … | … | ||
| 59 | 59 | #ifndef Q_OS_MAC | |
| 60 | 60 | gridLayout->setSpacing(6); | |
| 61 | 61 | #endif | |
| 62 | gridLayout->setMargin(8); | ||
| 62 | gridLayout->setContentsMargins(8, 8, 8, 8); | ||
| 63 | 63 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 64 | 64 | radioButton_2 = new QRadioButton(groupBox); | |
| 65 | 65 | radioButton_2->setObjectName(QString::fromUtf8("radioButton_2")); |
tests/auto/uic/baseline/newform.ui.h
(2 / 2)
|   | |||
| 89 | 89 | vboxLayout->setSpacing(6); | |
| 90 | 90 | #endif | |
| 91 | 91 | #ifndef Q_OS_MAC | |
| 92 | vboxLayout->setMargin(9); | ||
| 92 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 93 | 93 | #endif | |
| 94 | 94 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 95 | 95 | hboxLayout = new QHBoxLayout(); | |
| 96 | 96 | #ifndef Q_OS_MAC | |
| 97 | 97 | hboxLayout->setSpacing(6); | |
| 98 | 98 | #endif | |
| 99 | hboxLayout->setMargin(1); | ||
| 99 | hboxLayout->setContentsMargins(1, 1, 1, 1); | ||
| 100 | 100 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 101 | 101 | treeWidget = new QTreeWidget(NewForm); | |
| 102 | 102 | treeWidget->setObjectName(QString::fromUtf8("treeWidget")); |
tests/auto/uic/baseline/pagefold.ui.h
(2 / 2)
|   | |||
| 87 | 87 | vboxLayout->setSpacing(6); | |
| 88 | 88 | #endif | |
| 89 | 89 | #ifndef Q_OS_MAC | |
| 90 | vboxLayout->setMargin(9); | ||
| 90 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 91 | 91 | #endif | |
| 92 | 92 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 93 | 93 | mainFrame = new QFrame(centralwidget); | |
| … | … | ||
| 99 | 99 | gridLayout->setSpacing(6); | |
| 100 | 100 | #endif | |
| 101 | 101 | #ifndef Q_OS_MAC | |
| 102 | gridLayout->setMargin(9); | ||
| 102 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 103 | 103 | #endif | |
| 104 | 104 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 105 | 105 | nameCombo = new QComboBox(mainFrame); |
tests/auto/uic/baseline/paletteeditor.ui.h
(3 / 3)
|   | |||
| 106 | 106 | vboxLayout->setSpacing(6); | |
| 107 | 107 | #endif | |
| 108 | 108 | #ifndef Q_OS_MAC | |
| 109 | vboxLayout->setMargin(9); | ||
| 109 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 110 | 110 | #endif | |
| 111 | 111 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 112 | 112 | advancedBox = new QGroupBox(qdesigner_internal__PaletteEditor); | |
| … | … | ||
| 118 | 118 | gridLayout->setSpacing(6); | |
| 119 | 119 | #endif | |
| 120 | 120 | #ifndef Q_OS_MAC | |
| 121 | gridLayout->setMargin(9); | ||
| 121 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 122 | 122 | #endif | |
| 123 | 123 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 124 | 124 | buildButton = new QtColorButton(advancedBox); | |
| … | … | ||
| 167 | 167 | #ifndef Q_OS_MAC | |
| 168 | 168 | gridLayout1->setSpacing(6); | |
| 169 | 169 | #endif | |
| 170 | gridLayout1->setMargin(8); | ||
| 170 | gridLayout1->setContentsMargins(8, 8, 8, 8); | ||
| 171 | 171 | gridLayout1->setObjectName(QString::fromUtf8("gridLayout1")); | |
| 172 | 172 | disabledRadio = new QRadioButton(GroupBox126); | |
| 173 | 173 | disabledRadio->setObjectName(QString::fromUtf8("disabledRadio")); |
tests/auto/uic/baseline/paletteeditoradvancedbase.ui.h
(9 / 9)
|   | |||
| 114 | 114 | #ifndef Q_OS_MAC | |
| 115 | 115 | vboxLayout->setSpacing(6); | |
| 116 | 116 | #endif | |
| 117 | vboxLayout->setMargin(11); | ||
| 117 | vboxLayout->setContentsMargins(11, 11, 11, 11); | ||
| 118 | 118 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 119 | 119 | vboxLayout->setObjectName(QString::fromUtf8("unnamed")); | |
| 120 | 120 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 122 | 122 | hboxLayout->setSpacing(6); | |
| 123 | 123 | #endif | |
| 124 | 124 | #ifndef Q_OS_MAC | |
| 125 | hboxLayout->setMargin(0); | ||
| 125 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 126 | 126 | #endif | |
| 127 | 127 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 128 | 128 | hboxLayout->setObjectName(QString::fromUtf8("unnamed")); | |
| … | … | ||
| 150 | 150 | #ifndef Q_OS_MAC | |
| 151 | 151 | ButtonGroup1->layout()->setSpacing(6); | |
| 152 | 152 | #endif | |
| 153 | ButtonGroup1->layout()->setMargin(11); | ||
| 153 | ButtonGroup1->layout()->setContentsMargins(11, 11, 11, 11); | ||
| 154 | 154 | vboxLayout1 = new QVBoxLayout(); | |
| 155 | 155 | QBoxLayout *boxlayout = qobject_cast<QBoxLayout *>(ButtonGroup1->layout()); | |
| 156 | 156 | if (boxlayout) | |
| … | … | ||
| 179 | 179 | #ifndef Q_OS_MAC | |
| 180 | 180 | groupCentral->layout()->setSpacing(6); | |
| 181 | 181 | #endif | |
| 182 | groupCentral->layout()->setMargin(11); | ||
| 182 | groupCentral->layout()->setContentsMargins(11, 11, 11, 11); | ||
| 183 | 183 | vboxLayout2 = new QVBoxLayout(); | |
| 184 | 184 | QBoxLayout *boxlayout1 = qobject_cast<QBoxLayout *>(groupCentral->layout()); | |
| 185 | 185 | if (boxlayout1) | |
| … | … | ||
| 196 | 196 | #ifndef Q_OS_MAC | |
| 197 | 197 | hboxLayout1->setSpacing(6); | |
| 198 | 198 | #endif | |
| 199 | hboxLayout1->setMargin(0); | ||
| 199 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 200 | 200 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 201 | 201 | hboxLayout1->setObjectName(QString::fromUtf8("unnamed")); | |
| 202 | 202 | Horizontal_Spacing1 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| … | … | ||
| 237 | 237 | #ifndef Q_OS_MAC | |
| 238 | 238 | groupEffect->layout()->setSpacing(6); | |
| 239 | 239 | #endif | |
| 240 | groupEffect->layout()->setMargin(11); | ||
| 240 | groupEffect->layout()->setContentsMargins(11, 11, 11, 11); | ||
| 241 | 241 | vboxLayout3 = new QVBoxLayout(); | |
| 242 | 242 | QBoxLayout *boxlayout2 = qobject_cast<QBoxLayout *>(groupEffect->layout()); | |
| 243 | 243 | if (boxlayout2) | |
| … | … | ||
| 250 | 250 | hboxLayout2->setSpacing(6); | |
| 251 | 251 | #endif | |
| 252 | 252 | #ifndef Q_OS_MAC | |
| 253 | hboxLayout2->setMargin(0); | ||
| 253 | hboxLayout2->setContentsMargins(0, 0, 0, 0); | ||
| 254 | 254 | #endif | |
| 255 | 255 | hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2")); | |
| 256 | 256 | hboxLayout2->setObjectName(QString::fromUtf8("unnamed")); | |
| … | … | ||
| 272 | 272 | #ifndef Q_OS_MAC | |
| 273 | 273 | hboxLayout3->setSpacing(6); | |
| 274 | 274 | #endif | |
| 275 | hboxLayout3->setMargin(0); | ||
| 275 | hboxLayout3->setContentsMargins(0, 0, 0, 0); | ||
| 276 | 276 | hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3")); | |
| 277 | 277 | hboxLayout3->setObjectName(QString::fromUtf8("unnamed")); | |
| 278 | 278 | Horizontal_Spacing3 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| … | … | ||
| 305 | 305 | #ifndef Q_OS_MAC | |
| 306 | 306 | hboxLayout4->setSpacing(6); | |
| 307 | 307 | #endif | |
| 308 | hboxLayout4->setMargin(0); | ||
| 308 | hboxLayout4->setContentsMargins(0, 0, 0, 0); | ||
| 309 | 309 | hboxLayout4->setObjectName(QString::fromUtf8("hboxLayout4")); | |
| 310 | 310 | hboxLayout4->setObjectName(QString::fromUtf8("unnamed")); | |
| 311 | 311 | Horizontal_Spacing2 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); |
tests/auto/uic/baseline/phrasebookbox.ui.h
(1 / 1)
|   | |||
| 96 | 96 | PhraseBookBox->resize(596, 454); | |
| 97 | 97 | unnamed = new QHBoxLayout(PhraseBookBox); | |
| 98 | 98 | unnamed->setSpacing(6); | |
| 99 | unnamed->setMargin(11); | ||
| 99 | unnamed->setContentsMargins(11, 11, 11, 11); | ||
| 100 | 100 | unnamed->setObjectName(QString::fromUtf8("unnamed")); | |
| 101 | 101 | inputsLayout = new QVBoxLayout(); | |
| 102 | 102 | inputsLayout->setSpacing(6); |
tests/auto/uic/baseline/previewdialogbase.ui.h
(4 / 4)
|   | |||
| 55 | 55 | vboxLayout->setSpacing(6); | |
| 56 | 56 | #endif | |
| 57 | 57 | #ifndef Q_OS_MAC | |
| 58 | vboxLayout->setMargin(9); | ||
| 58 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 59 | 59 | #endif | |
| 60 | 60 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 61 | 61 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 63 | 63 | hboxLayout->setSpacing(6); | |
| 64 | 64 | #endif | |
| 65 | 65 | #ifndef Q_OS_MAC | |
| 66 | hboxLayout->setMargin(0); | ||
| 66 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 67 | 67 | #endif | |
| 68 | 68 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 69 | 69 | label = new QLabel(PreviewDialogBase); | |
| … | … | ||
| 104 | 104 | #ifndef Q_OS_MAC | |
| 105 | 105 | hboxLayout1->setSpacing(6); | |
| 106 | 106 | #endif | |
| 107 | hboxLayout1->setMargin(0); | ||
| 107 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 108 | 108 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 109 | 109 | pageList = new QTreeWidget(PreviewDialogBase); | |
| 110 | 110 | pageList->setObjectName(QString::fromUtf8("pageList")); | |
| … | … | ||
| 133 | 133 | #ifndef Q_OS_MAC | |
| 134 | 134 | hboxLayout2->setSpacing(6); | |
| 135 | 135 | #endif | |
| 136 | hboxLayout2->setMargin(0); | ||
| 136 | hboxLayout2->setContentsMargins(0, 0, 0, 0); | ||
| 137 | 137 | hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2")); | |
| 138 | 138 | progressBar = new QProgressBar(PreviewDialogBase); | |
| 139 | 139 | progressBar->setObjectName(QString::fromUtf8("progressBar")); |
tests/auto/uic/baseline/previewwidget.ui.h
(5 / 5)
|   | |||
| 118 | 118 | gridLayout->setSpacing(6); | |
| 119 | 119 | #endif | |
| 120 | 120 | #ifndef Q_OS_MAC | |
| 121 | gridLayout->setMargin(9); | ||
| 121 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 122 | 122 | #endif | |
| 123 | 123 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 124 | 124 | vboxLayout = new QVBoxLayout(); | |
| … | … | ||
| 126 | 126 | vboxLayout->setSpacing(6); | |
| 127 | 127 | #endif | |
| 128 | 128 | #ifndef Q_OS_MAC | |
| 129 | vboxLayout->setMargin(0); | ||
| 129 | vboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 130 | 130 | #endif | |
| 131 | 131 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 132 | 132 | LineEdit1 = new QLineEdit(qdesigner_internal__PreviewWidget); | |
| … | … | ||
| 143 | 143 | #ifndef Q_OS_MAC | |
| 144 | 144 | hboxLayout->setSpacing(6); | |
| 145 | 145 | #endif | |
| 146 | hboxLayout->setMargin(0); | ||
| 146 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 147 | 147 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 148 | 148 | SpinBox1 = new QSpinBox(qdesigner_internal__PreviewWidget); | |
| 149 | 149 | SpinBox1->setObjectName(QString::fromUtf8("SpinBox1")); | |
| … | … | ||
| 196 | 196 | vboxLayout1->setSpacing(6); | |
| 197 | 197 | #endif | |
| 198 | 198 | #ifndef Q_OS_MAC | |
| 199 | vboxLayout1->setMargin(9); | ||
| 199 | vboxLayout1->setContentsMargins(9, 9, 9, 9); | ||
| 200 | 200 | #endif | |
| 201 | 201 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 202 | 202 | CheckBox1 = new QCheckBox(ButtonGroup2); | |
| … | … | ||
| 220 | 220 | vboxLayout2->setSpacing(6); | |
| 221 | 221 | #endif | |
| 222 | 222 | #ifndef Q_OS_MAC | |
| 223 | vboxLayout2->setMargin(9); | ||
| 223 | vboxLayout2->setContentsMargins(9, 9, 9, 9); | ||
| 224 | 224 | #endif | |
| 225 | 225 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 226 | 226 | RadioButton1 = new QRadioButton(ButtonGroup1); |
tests/auto/uic/baseline/previewwidgetbase.ui.h
(7 / 7)
|   | |||
| 117 | 117 | #ifndef Q_OS_MAC | |
| 118 | 118 | vboxLayout->setSpacing(6); | |
| 119 | 119 | #endif | |
| 120 | vboxLayout->setMargin(11); | ||
| 120 | vboxLayout->setContentsMargins(11, 11, 11, 11); | ||
| 121 | 121 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 122 | 122 | vboxLayout->setObjectName(QString::fromUtf8("unnamed")); | |
| 123 | 123 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 125 | 125 | hboxLayout->setSpacing(6); | |
| 126 | 126 | #endif | |
| 127 | 127 | #ifndef Q_OS_MAC | |
| 128 | hboxLayout->setMargin(0); | ||
| 128 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 129 | 129 | #endif | |
| 130 | 130 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 131 | 131 | hboxLayout->setObjectName(QString::fromUtf8("unnamed")); | |
| … | … | ||
| 134 | 134 | vboxLayout1->setSpacing(6); | |
| 135 | 135 | #endif | |
| 136 | 136 | #ifndef Q_OS_MAC | |
| 137 | vboxLayout1->setMargin(0); | ||
| 137 | vboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 138 | 138 | #endif | |
| 139 | 139 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 140 | 140 | vboxLayout1->setObjectName(QString::fromUtf8("unnamed")); | |
| … | … | ||
| 144 | 144 | #ifndef Q_OS_MAC | |
| 145 | 145 | ButtonGroup1->layout()->setSpacing(6); | |
| 146 | 146 | #endif | |
| 147 | ButtonGroup1->layout()->setMargin(11); | ||
| 147 | ButtonGroup1->layout()->setContentsMargins(11, 11, 11, 11); | ||
| 148 | 148 | vboxLayout2 = new QVBoxLayout(); | |
| 149 | 149 | QBoxLayout *boxlayout = qobject_cast<QBoxLayout *>(ButtonGroup1->layout()); | |
| 150 | 150 | if (boxlayout) | |
| … | … | ||
| 177 | 177 | #ifndef Q_OS_MAC | |
| 178 | 178 | ButtonGroup2->layout()->setSpacing(6); | |
| 179 | 179 | #endif | |
| 180 | ButtonGroup2->layout()->setMargin(11); | ||
| 180 | ButtonGroup2->layout()->setContentsMargins(11, 11, 11, 11); | ||
| 181 | 181 | vboxLayout3 = new QVBoxLayout(); | |
| 182 | 182 | QBoxLayout *boxlayout1 = qobject_cast<QBoxLayout *>(ButtonGroup2->layout()); | |
| 183 | 183 | if (boxlayout1) | |
| … | … | ||
| 212 | 212 | #ifndef Q_OS_MAC | |
| 213 | 213 | vboxLayout4->setSpacing(6); | |
| 214 | 214 | #endif | |
| 215 | vboxLayout4->setMargin(0); | ||
| 215 | vboxLayout4->setContentsMargins(0, 0, 0, 0); | ||
| 216 | 216 | vboxLayout4->setObjectName(QString::fromUtf8("vboxLayout4")); | |
| 217 | 217 | vboxLayout4->setObjectName(QString::fromUtf8("unnamed")); | |
| 218 | 218 | LineEdit1 = new QLineEdit(PreviewWidgetBase); | |
| … | … | ||
| 229 | 229 | #ifndef Q_OS_MAC | |
| 230 | 230 | hboxLayout1->setSpacing(6); | |
| 231 | 231 | #endif | |
| 232 | hboxLayout1->setMargin(0); | ||
| 232 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 233 | 233 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 234 | 234 | hboxLayout1->setObjectName(QString::fromUtf8("unnamed")); | |
| 235 | 235 | SpinBox1 = new QSpinBox(PreviewWidgetBase); |
tests/auto/uic/baseline/qpagesetupwidget.ui.h
(1 / 1)
|   | |||
| 76 | 76 | QPageSetupWidget->setObjectName(QString::fromUtf8("QPageSetupWidget")); | |
| 77 | 77 | QPageSetupWidget->resize(416, 488); | |
| 78 | 78 | gridLayout_3 = new QGridLayout(QPageSetupWidget); | |
| 79 | gridLayout_3->setMargin(0); | ||
| 79 | gridLayout_3->setContentsMargins(0, 0, 0, 0); | ||
| 80 | 80 | gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3")); | |
| 81 | 81 | horizontalLayout_4 = new QHBoxLayout(); | |
| 82 | 82 | horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4")); |
tests/auto/uic/baseline/qprintpropertieswidget.ui.h
(1 / 1)
|   | |||
| 42 | 42 | QPrintPropertiesWidget->setObjectName(QString::fromUtf8("QPrintPropertiesWidget")); | |
| 43 | 43 | QPrintPropertiesWidget->resize(396, 288); | |
| 44 | 44 | verticalLayout_4 = new QVBoxLayout(QPrintPropertiesWidget); | |
| 45 | verticalLayout_4->setMargin(0); | ||
| 45 | verticalLayout_4->setContentsMargins(0, 0, 0, 0); | ||
| 46 | 46 | verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4")); | |
| 47 | 47 | tabs = new QTabWidget(QPrintPropertiesWidget); | |
| 48 | 48 | tabs->setObjectName(QString::fromUtf8("tabs")); |
tests/auto/uic/baseline/qprintsettingsoutput.ui.h
(3 / 3)
|   | |||
| 77 | 77 | QPrintSettingsOutput->setObjectName(QString::fromUtf8("QPrintSettingsOutput")); | |
| 78 | 78 | QPrintSettingsOutput->resize(416, 166); | |
| 79 | 79 | horizontalLayout_2 = new QHBoxLayout(QPrintSettingsOutput); | |
| 80 | horizontalLayout_2->setMargin(0); | ||
| 80 | horizontalLayout_2->setContentsMargins(0, 0, 0, 0); | ||
| 81 | 81 | horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); | |
| 82 | 82 | tabs = new QTabWidget(QPrintSettingsOutput); | |
| 83 | 83 | tabs->setObjectName(QString::fromUtf8("tabs")); | |
| … | … | ||
| 95 | 95 | gbPrintRange->setSizePolicy(sizePolicy); | |
| 96 | 96 | _3 = new QVBoxLayout(gbPrintRange); | |
| 97 | 97 | _3->setSpacing(4); | |
| 98 | _3->setMargin(6); | ||
| 98 | _3->setContentsMargins(6, 6, 6, 6); | ||
| 99 | 99 | _3->setObjectName(QString::fromUtf8("_3")); | |
| 100 | 100 | printAll = new QRadioButton(gbPrintRange); | |
| 101 | 101 | printAll->setObjectName(QString::fromUtf8("printAll")); | |
| … | … | ||
| 107 | 107 | #ifndef Q_OS_MAC | |
| 108 | 108 | _4->setSpacing(6); | |
| 109 | 109 | #endif | |
| 110 | _4->setMargin(0); | ||
| 110 | _4->setContentsMargins(0, 0, 0, 0); | ||
| 111 | 111 | _4->setObjectName(QString::fromUtf8("_4")); | |
| 112 | 112 | printRange = new QRadioButton(gbPrintRange); | |
| 113 | 113 | printRange->setObjectName(QString::fromUtf8("printRange")); |
tests/auto/uic/baseline/qprintwidget.ui.h
(1 / 1)
|   | |||
| 53 | 53 | QPrintWidget->setObjectName(QString::fromUtf8("QPrintWidget")); | |
| 54 | 54 | QPrintWidget->resize(443, 175); | |
| 55 | 55 | horizontalLayout_2 = new QHBoxLayout(QPrintWidget); | |
| 56 | horizontalLayout_2->setMargin(0); | ||
| 56 | horizontalLayout_2->setContentsMargins(0, 0, 0, 0); | ||
| 57 | 57 | horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); | |
| 58 | 58 | printerGroup = new QGroupBox(QPrintWidget); | |
| 59 | 59 | printerGroup->setObjectName(QString::fromUtf8("printerGroup")); |
tests/auto/uic/baseline/qsqlconnectiondialog.ui.h
(4 / 4)
|   | |||
| 65 | 65 | #ifndef Q_OS_MAC | |
| 66 | 66 | vboxLayout->setSpacing(6); | |
| 67 | 67 | #endif | |
| 68 | vboxLayout->setMargin(8); | ||
| 68 | vboxLayout->setContentsMargins(8, 8, 8, 8); | ||
| 69 | 69 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 70 | 70 | connGroupBox = new QGroupBox(QSqlConnectionDialogUi); | |
| 71 | 71 | connGroupBox->setObjectName(QString::fromUtf8("connGroupBox")); | |
| … | … | ||
| 73 | 73 | #ifndef Q_OS_MAC | |
| 74 | 74 | gridLayout->setSpacing(6); | |
| 75 | 75 | #endif | |
| 76 | gridLayout->setMargin(8); | ||
| 76 | gridLayout->setContentsMargins(8, 8, 8, 8); | ||
| 77 | 77 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 78 | 78 | comboDriver = new QComboBox(connGroupBox); | |
| 79 | 79 | comboDriver->setObjectName(QString::fromUtf8("comboDriver")); | |
| … | … | ||
| 146 | 146 | #ifndef Q_OS_MAC | |
| 147 | 147 | hboxLayout->setSpacing(6); | |
| 148 | 148 | #endif | |
| 149 | hboxLayout->setMargin(0); | ||
| 149 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 150 | 150 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 151 | 151 | spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 152 | 152 | ||
| … | … | ||
| 164 | 164 | #ifndef Q_OS_MAC | |
| 165 | 165 | hboxLayout1->setSpacing(6); | |
| 166 | 166 | #endif | |
| 167 | hboxLayout1->setMargin(0); | ||
| 167 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 168 | 168 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 169 | 169 | spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 170 | 170 |
tests/auto/uic/baseline/qttoolbardialog.ui.h
(3 / 3)
|   | |||
| 59 | 59 | #ifndef Q_OS_MAC | |
| 60 | 60 | gridLayout->setSpacing(6); | |
| 61 | 61 | #endif | |
| 62 | gridLayout->setMargin(8); | ||
| 62 | gridLayout->setContentsMargins(8, 8, 8, 8); | ||
| 63 | 63 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 64 | 64 | actionTree = new QTreeWidget(QtToolBarDialog); | |
| 65 | 65 | actionTree->setObjectName(QString::fromUtf8("actionTree")); | |
| … | … | ||
| 75 | 75 | #ifndef Q_OS_MAC | |
| 76 | 76 | hboxLayout->setSpacing(6); | |
| 77 | 77 | #endif | |
| 78 | hboxLayout->setMargin(0); | ||
| 78 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 79 | 79 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 80 | 80 | label_2 = new QLabel(QtToolBarDialog); | |
| 81 | 81 | label_2->setObjectName(QString::fromUtf8("label_2")); | |
| … | … | ||
| 104 | 104 | #ifndef Q_OS_MAC | |
| 105 | 105 | vboxLayout->setSpacing(6); | |
| 106 | 106 | #endif | |
| 107 | vboxLayout->setMargin(0); | ||
| 107 | vboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 108 | 108 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 109 | 109 | upButton = new QToolButton(QtToolBarDialog); | |
| 110 | 110 | upButton->setObjectName(QString::fromUtf8("upButton")); |
tests/auto/uic/baseline/querywidget.ui.h
(3 / 3)
|   | |||
| 62 | 62 | vboxLayout->setSpacing(6); | |
| 63 | 63 | #endif | |
| 64 | 64 | #ifndef Q_OS_MAC | |
| 65 | vboxLayout->setMargin(0); | ||
| 65 | vboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 66 | 66 | #endif | |
| 67 | 67 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 68 | 68 | inputGroupBox = new QGroupBox(centralwidget); | |
| … | … | ||
| 75 | 75 | _2->setSpacing(6); | |
| 76 | 76 | #endif | |
| 77 | 77 | #ifndef Q_OS_MAC | |
| 78 | _2->setMargin(0); | ||
| 78 | _2->setContentsMargins(0, 0, 0, 0); | ||
| 79 | 79 | #endif | |
| 80 | 80 | _2->setObjectName(QString::fromUtf8("_2")); | |
| 81 | 81 | inputTextEdit = new QTextEdit(inputGroupBox); | |
| … | … | ||
| 120 | 120 | _3->setSpacing(6); | |
| 121 | 121 | #endif | |
| 122 | 122 | #ifndef Q_OS_MAC | |
| 123 | _3->setMargin(0); | ||
| 123 | _3->setContentsMargins(0, 0, 0, 0); | ||
| 124 | 124 | #endif | |
| 125 | 125 | _3->setObjectName(QString::fromUtf8("_3")); | |
| 126 | 126 | outputTextEdit = new QTextEdit(outputGroupBox); |
tests/auto/uic/baseline/remotecontrol.ui.h
(2 / 2)
|   | |||
| 77 | 77 | centralWidget->setObjectName(QString::fromUtf8("centralWidget")); | |
| 78 | 78 | gridLayout = new QGridLayout(centralWidget); | |
| 79 | 79 | gridLayout->setSpacing(6); | |
| 80 | gridLayout->setMargin(11); | ||
| 80 | gridLayout->setContentsMargins(11, 11, 11, 11); | ||
| 81 | 81 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 82 | 82 | label = new QLabel(centralWidget); | |
| 83 | 83 | label->setObjectName(QString::fromUtf8("label")); | |
| … | … | ||
| 107 | 107 | actionGroupBox->setEnabled(false); | |
| 108 | 108 | gridLayout1 = new QGridLayout(actionGroupBox); | |
| 109 | 109 | gridLayout1->setSpacing(6); | |
| 110 | gridLayout1->setMargin(11); | ||
| 110 | gridLayout1->setContentsMargins(11, 11, 11, 11); | ||
| 111 | 111 | gridLayout1->setObjectName(QString::fromUtf8("gridLayout1")); | |
| 112 | 112 | label_2 = new QLabel(actionGroupBox); | |
| 113 | 113 | label_2->setObjectName(QString::fromUtf8("label_2")); |
tests/auto/uic/baseline/signalslotdialog.ui.h
(3 / 3)
|   | |||
| 53 | 53 | SignalSlotDialogClass->resize(617, 535); | |
| 54 | 54 | vboxLayout = new QVBoxLayout(SignalSlotDialogClass); | |
| 55 | 55 | vboxLayout->setSpacing(6); | |
| 56 | vboxLayout->setMargin(11); | ||
| 56 | vboxLayout->setContentsMargins(11, 11, 11, 11); | ||
| 57 | 57 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 58 | 58 | slotGroupBox = new QGroupBox(SignalSlotDialogClass); | |
| 59 | 59 | slotGroupBox->setObjectName(QString::fromUtf8("slotGroupBox")); | |
| 60 | 60 | vboxLayout1 = new QVBoxLayout(slotGroupBox); | |
| 61 | 61 | vboxLayout1->setSpacing(6); | |
| 62 | vboxLayout1->setMargin(11); | ||
| 62 | vboxLayout1->setContentsMargins(11, 11, 11, 11); | ||
| 63 | 63 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 64 | 64 | slotListView = new QListView(slotGroupBox); | |
| 65 | 65 | slotListView->setObjectName(QString::fromUtf8("slotListView")); | |
| … | … | ||
| 93 | 93 | signalGroupBox->setObjectName(QString::fromUtf8("signalGroupBox")); | |
| 94 | 94 | vboxLayout2 = new QVBoxLayout(signalGroupBox); | |
| 95 | 95 | vboxLayout2->setSpacing(6); | |
| 96 | vboxLayout2->setMargin(11); | ||
| 96 | vboxLayout2->setContentsMargins(11, 11, 11, 11); | ||
| 97 | 97 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 98 | 98 | signalListView = new QListView(signalGroupBox); | |
| 99 | 99 | signalListView->setObjectName(QString::fromUtf8("signalListView")); |
tests/auto/uic/baseline/statistics.ui.h
(2 / 2)
|   | |||
| 97 | 97 | Statistics->resize(336, 164); | |
| 98 | 98 | gridLayout = new QGridLayout(Statistics); | |
| 99 | 99 | gridLayout->setSpacing(6); | |
| 100 | gridLayout->setMargin(11); | ||
| 100 | gridLayout->setContentsMargins(11, 11, 11, 11); | ||
| 101 | 101 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 102 | 102 | gridLayout->setObjectName(QString::fromUtf8("unnamed")); | |
| 103 | 103 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 126 | 126 | frame4->setFrameShadow(QFrame::Raised); | |
| 127 | 127 | gridLayout1 = new QGridLayout(frame4); | |
| 128 | 128 | gridLayout1->setSpacing(6); | |
| 129 | gridLayout1->setMargin(11); | ||
| 129 | gridLayout1->setContentsMargins(11, 11, 11, 11); | ||
| 130 | 130 | gridLayout1->setObjectName(QString::fromUtf8("gridLayout1")); | |
| 131 | 131 | gridLayout1->setObjectName(QString::fromUtf8("unnamed")); | |
| 132 | 132 | textLabel4 = new QLabel(frame4); |
tests/auto/uic/baseline/stringlisteditor.ui.h
(6 / 6)
|   | |||
| 105 | 105 | vboxLayout->setSpacing(6); | |
| 106 | 106 | #endif | |
| 107 | 107 | #ifndef Q_OS_MAC | |
| 108 | vboxLayout->setMargin(9); | ||
| 108 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 109 | 109 | #endif | |
| 110 | 110 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 111 | 111 | groupBox = new QGroupBox(qdesigner_internal__Dialog); | |
| … | … | ||
| 115 | 115 | gridLayout->setSpacing(6); | |
| 116 | 116 | #endif | |
| 117 | 117 | #ifndef Q_OS_MAC | |
| 118 | gridLayout->setMargin(9); | ||
| 118 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 119 | 119 | #endif | |
| 120 | 120 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 121 | 121 | vboxLayout1 = new QVBoxLayout(); | |
| … | … | ||
| 123 | 123 | vboxLayout1->setSpacing(6); | |
| 124 | 124 | #endif | |
| 125 | 125 | #ifndef Q_OS_MAC | |
| 126 | vboxLayout1->setMargin(0); | ||
| 126 | vboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 127 | 127 | #endif | |
| 128 | 128 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 129 | 129 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 131 | 131 | hboxLayout->setSpacing(6); | |
| 132 | 132 | #endif | |
| 133 | 133 | #ifndef Q_OS_MAC | |
| 134 | hboxLayout->setMargin(0); | ||
| 134 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 135 | 135 | #endif | |
| 136 | 136 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 137 | 137 | newButton = new QToolButton(groupBox); | |
| … | … | ||
| 157 | 157 | #ifndef Q_OS_MAC | |
| 158 | 158 | hboxLayout1->setSpacing(6); | |
| 159 | 159 | #endif | |
| 160 | hboxLayout1->setMargin(0); | ||
| 160 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 161 | 161 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 162 | 162 | label = new QLabel(groupBox); | |
| 163 | 163 | label->setObjectName(QString::fromUtf8("label")); | |
| … | … | ||
| 179 | 179 | #ifndef Q_OS_MAC | |
| 180 | 180 | vboxLayout2->setSpacing(6); | |
| 181 | 181 | #endif | |
| 182 | vboxLayout2->setMargin(0); | ||
| 182 | vboxLayout2->setContentsMargins(0, 0, 0, 0); | ||
| 183 | 183 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 184 | 184 | spacerItem1 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); | |
| 185 | 185 |
tests/auto/uic/baseline/stylesheeteditor.ui.h
(2 / 2)
|   | |||
| 52 | 52 | gridLayout->setSpacing(6); | |
| 53 | 53 | #endif | |
| 54 | 54 | #ifndef Q_OS_MAC | |
| 55 | gridLayout->setMargin(9); | ||
| 55 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 56 | 56 | #endif | |
| 57 | 57 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 58 | 58 | spacerItem = new QSpacerItem(32, 20, QSizePolicy::MinimumExpanding, QSizePolicy::Minimum); | |
| … | … | ||
| 96 | 96 | #ifndef Q_OS_MAC | |
| 97 | 97 | hboxLayout->setSpacing(6); | |
| 98 | 98 | #endif | |
| 99 | hboxLayout->setMargin(0); | ||
| 99 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 100 | 100 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 101 | 101 | spacerItem3 = new QSpacerItem(321, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 102 | 102 |
tests/auto/uic/baseline/tabbedbrowser.ui.h
(3 / 3)
|   | |||
| 96 | 96 | TabbedBrowser->resize(710, 664); | |
| 97 | 97 | vboxLayout = new QVBoxLayout(TabbedBrowser); | |
| 98 | 98 | vboxLayout->setSpacing(0); | |
| 99 | vboxLayout->setMargin(0); | ||
| 99 | vboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 100 | 100 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 101 | 101 | tab = new QTabWidget(TabbedBrowser); | |
| 102 | 102 | tab->setObjectName(QString::fromUtf8("tab")); | |
| … | … | ||
| 106 | 106 | #ifndef Q_OS_MAC | |
| 107 | 107 | gridLayout->setSpacing(6); | |
| 108 | 108 | #endif | |
| 109 | gridLayout->setMargin(8); | ||
| 109 | gridLayout->setContentsMargins(8, 8, 8, 8); | ||
| 110 | 110 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 111 | 111 | tab->addTab(frontpage, QString()); | |
| 112 | 112 | ||
| … | … | ||
| 120 | 120 | #ifndef Q_OS_MAC | |
| 121 | 121 | hboxLayout->setSpacing(6); | |
| 122 | 122 | #endif | |
| 123 | hboxLayout->setMargin(0); | ||
| 123 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 124 | 124 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 125 | 125 | toolClose = new QToolButton(frameFind); | |
| 126 | 126 | toolClose->setObjectName(QString::fromUtf8("toolClose")); |
tests/auto/uic/baseline/tablewidgeteditor.ui.h
(1 / 1)
|   | |||
| 169 | 169 | sizePolicy.setHeightForWidth(widget->sizePolicy().hasHeightForWidth()); | |
| 170 | 170 | widget->setSizePolicy(sizePolicy); | |
| 171 | 171 | verticalLayout = new QVBoxLayout(widget); | |
| 172 | verticalLayout->setMargin(0); | ||
| 172 | verticalLayout->setContentsMargins(0, 0, 0, 0); | ||
| 173 | 173 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); | |
| 174 | 174 | columnsBox = new QGroupBox(widget); | |
| 175 | 175 | columnsBox->setObjectName(QString::fromUtf8("columnsBox")); |
tests/auto/uic/baseline/tetrixwindow.ui.h
(2 / 2)
|   | |||
| 53 | 53 | vboxLayout->setSpacing(6); | |
| 54 | 54 | #endif | |
| 55 | 55 | #ifndef Q_OS_MAC | |
| 56 | vboxLayout->setMargin(9); | ||
| 56 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 57 | 57 | #endif | |
| 58 | 58 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 59 | 59 | gridLayout = new QGridLayout(); | |
| … | … | ||
| 61 | 61 | gridLayout->setSpacing(6); | |
| 62 | 62 | #endif | |
| 63 | 63 | #ifndef Q_OS_MAC | |
| 64 | gridLayout->setMargin(0); | ||
| 64 | gridLayout->setContentsMargins(0, 0, 0, 0); | ||
| 65 | 65 | #endif | |
| 66 | 66 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 67 | 67 | startButton = new QPushButton(TetrixWindow); |
tests/auto/uic/baseline/textfinder.ui.h
(2 / 2)
|   | |||
| 47 | 47 | vboxLayout->setSpacing(6); | |
| 48 | 48 | #endif | |
| 49 | 49 | #ifndef Q_OS_MAC | |
| 50 | vboxLayout->setMargin(9); | ||
| 50 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 51 | 51 | #endif | |
| 52 | 52 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 53 | 53 | gridLayout = new QGridLayout(); | |
| … | … | ||
| 55 | 55 | gridLayout->setSpacing(6); | |
| 56 | 56 | #endif | |
| 57 | 57 | #ifndef Q_OS_MAC | |
| 58 | gridLayout->setMargin(0); | ||
| 58 | gridLayout->setContentsMargins(0, 0, 0, 0); | ||
| 59 | 59 | #endif | |
| 60 | 60 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 61 | 61 | lineEdit = new QLineEdit(Form); |
tests/auto/uic/baseline/topicchooser.ui.h
(2 / 2)
|   | |||
| 48 | 48 | #ifndef Q_OS_MAC | |
| 49 | 49 | vboxLayout->setSpacing(6); | |
| 50 | 50 | #endif | |
| 51 | vboxLayout->setMargin(11); | ||
| 51 | vboxLayout->setContentsMargins(11, 11, 11, 11); | ||
| 52 | 52 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 53 | 53 | vboxLayout->setObjectName(QString::fromUtf8("unnamed")); | |
| 54 | 54 | label = new QLabel(TopicChooser); | |
| … | … | ||
| 67 | 67 | #ifndef Q_OS_MAC | |
| 68 | 68 | hboxLayout->setSpacing(6); | |
| 69 | 69 | #endif | |
| 70 | hboxLayout->setMargin(0); | ||
| 70 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 71 | 71 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 72 | 72 | hboxLayout->setObjectName(QString::fromUtf8("unnamed")); | |
| 73 | 73 | hboxLayout->setContentsMargins(0, 0, 0, 0); |
tests/auto/uic/baseline/translatedialog.ui.h
(2 / 2)
|   | |||
| 104 | 104 | TranslateDialog->setSizePolicy(sizePolicy); | |
| 105 | 105 | hboxLayout = new QHBoxLayout(TranslateDialog); | |
| 106 | 106 | hboxLayout->setSpacing(6); | |
| 107 | hboxLayout->setMargin(11); | ||
| 107 | hboxLayout->setContentsMargins(11, 11, 11, 11); | ||
| 108 | 108 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 109 | 109 | hboxLayout->setContentsMargins(9, 9, 9, 9); | |
| 110 | 110 | vboxLayout = new QVBoxLayout(); | |
| … | … | ||
| 144 | 144 | groupBox->setObjectName(QString::fromUtf8("groupBox")); | |
| 145 | 145 | vboxLayout1 = new QVBoxLayout(groupBox); | |
| 146 | 146 | vboxLayout1->setSpacing(6); | |
| 147 | vboxLayout1->setMargin(11); | ||
| 147 | vboxLayout1->setContentsMargins(11, 11, 11, 11); | ||
| 148 | 148 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 149 | 149 | ckMatchCase = new QCheckBox(groupBox); | |
| 150 | 150 | ckMatchCase->setObjectName(QString::fromUtf8("ckMatchCase")); |
tests/auto/uic/baseline/translationsettings.ui.h
(2 / 2)
|   | |||
| 47 | 47 | vboxLayout->setSpacing(6); | |
| 48 | 48 | #endif | |
| 49 | 49 | #ifndef Q_OS_MAC | |
| 50 | vboxLayout->setMargin(9); | ||
| 50 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 51 | 51 | #endif | |
| 52 | 52 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 53 | 53 | groupBox = new QGroupBox(TranslationSettings); | |
| … | … | ||
| 57 | 57 | gridLayout->setSpacing(6); | |
| 58 | 58 | #endif | |
| 59 | 59 | #ifndef Q_OS_MAC | |
| 60 | gridLayout->setMargin(9); | ||
| 60 | gridLayout->setContentsMargins(9, 9, 9, 9); | ||
| 61 | 61 | #endif | |
| 62 | 62 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 63 | 63 | cbLanguageList = new QComboBox(groupBox); |
tests/auto/uic/baseline/trpreviewtool.ui.h
(1 / 1)
|   | |||
| 142 | 142 | dockWidgetContents->setObjectName(QString::fromUtf8("dockWidgetContents")); | |
| 143 | 143 | vboxLayout = new QVBoxLayout(dockWidgetContents); | |
| 144 | 144 | vboxLayout->setSpacing(0); | |
| 145 | vboxLayout->setMargin(0); | ||
| 145 | vboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 146 | 146 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 147 | 147 | viewForms = new QListView(dockWidgetContents); | |
| 148 | 148 | viewForms->setObjectName(QString::fromUtf8("viewForms")); |
tests/auto/uic/baseline/validators.ui.h
(11 / 11)
|   | |||
| 87 | 87 | vboxLayout->setSpacing(6); | |
| 88 | 88 | #endif | |
| 89 | 89 | #ifndef Q_OS_MAC | |
| 90 | vboxLayout->setMargin(9); | ||
| 90 | vboxLayout->setContentsMargins(9, 9, 9, 9); | ||
| 91 | 91 | #endif | |
| 92 | 92 | vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); | |
| 93 | 93 | hboxLayout = new QHBoxLayout(); | |
| … | … | ||
| 95 | 95 | hboxLayout->setSpacing(6); | |
| 96 | 96 | #endif | |
| 97 | 97 | #ifndef Q_OS_MAC | |
| 98 | hboxLayout->setMargin(0); | ||
| 98 | hboxLayout->setContentsMargins(0, 0, 0, 0); | ||
| 99 | 99 | #endif | |
| 100 | 100 | hboxLayout->setObjectName(QString::fromUtf8("hboxLayout")); | |
| 101 | 101 | localeSelector = new LocaleSelector(ValidatorsForm); | |
| … | … | ||
| 117 | 117 | vboxLayout1->setSpacing(6); | |
| 118 | 118 | #endif | |
| 119 | 119 | #ifndef Q_OS_MAC | |
| 120 | vboxLayout1->setMargin(9); | ||
| 120 | vboxLayout1->setContentsMargins(9, 9, 9, 9); | ||
| 121 | 121 | #endif | |
| 122 | 122 | vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1")); | |
| 123 | 123 | hboxLayout1 = new QHBoxLayout(); | |
| … | … | ||
| 125 | 125 | hboxLayout1->setSpacing(6); | |
| 126 | 126 | #endif | |
| 127 | 127 | #ifndef Q_OS_MAC | |
| 128 | hboxLayout1->setMargin(0); | ||
| 128 | hboxLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 129 | 129 | #endif | |
| 130 | 130 | hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1")); | |
| 131 | 131 | gridLayout = new QGridLayout(); | |
| … | … | ||
| 133 | 133 | gridLayout->setSpacing(6); | |
| 134 | 134 | #endif | |
| 135 | 135 | #ifndef Q_OS_MAC | |
| 136 | gridLayout->setMargin(0); | ||
| 136 | gridLayout->setContentsMargins(0, 0, 0, 0); | ||
| 137 | 137 | #endif | |
| 138 | 138 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | |
| 139 | 139 | label = new QLabel(groupBox); | |
| … | … | ||
| 182 | 182 | vboxLayout2->setSpacing(6); | |
| 183 | 183 | #endif | |
| 184 | 184 | #ifndef Q_OS_MAC | |
| 185 | vboxLayout2->setMargin(9); | ||
| 185 | vboxLayout2->setContentsMargins(9, 9, 9, 9); | ||
| 186 | 186 | #endif | |
| 187 | 187 | vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2")); | |
| 188 | 188 | ledWidget = new LEDWidget(frame); | |
| … | … | ||
| 227 | 227 | vboxLayout3->setSpacing(6); | |
| 228 | 228 | #endif | |
| 229 | 229 | #ifndef Q_OS_MAC | |
| 230 | vboxLayout3->setMargin(9); | ||
| 230 | vboxLayout3->setContentsMargins(9, 9, 9, 9); | ||
| 231 | 231 | #endif | |
| 232 | 232 | vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3")); | |
| 233 | 233 | hboxLayout2 = new QHBoxLayout(); | |
| … | … | ||
| 235 | 235 | hboxLayout2->setSpacing(6); | |
| 236 | 236 | #endif | |
| 237 | 237 | #ifndef Q_OS_MAC | |
| 238 | hboxLayout2->setMargin(0); | ||
| 238 | hboxLayout2->setContentsMargins(0, 0, 0, 0); | ||
| 239 | 239 | #endif | |
| 240 | 240 | hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2")); | |
| 241 | 241 | gridLayout1 = new QGridLayout(); | |
| … | … | ||
| 243 | 243 | gridLayout1->setSpacing(6); | |
| 244 | 244 | #endif | |
| 245 | 245 | #ifndef Q_OS_MAC | |
| 246 | gridLayout1->setMargin(0); | ||
| 246 | gridLayout1->setContentsMargins(0, 0, 0, 0); | ||
| 247 | 247 | #endif | |
| 248 | 248 | gridLayout1->setObjectName(QString::fromUtf8("gridLayout1")); | |
| 249 | 249 | label_3 = new QLabel(groupBox_2); | |
| … | … | ||
| 313 | 313 | vboxLayout4->setSpacing(6); | |
| 314 | 314 | #endif | |
| 315 | 315 | #ifndef Q_OS_MAC | |
| 316 | vboxLayout4->setMargin(9); | ||
| 316 | vboxLayout4->setContentsMargins(9, 9, 9, 9); | ||
| 317 | 317 | #endif | |
| 318 | 318 | vboxLayout4->setObjectName(QString::fromUtf8("vboxLayout4")); | |
| 319 | 319 | doubleLedWidget = new LEDWidget(frame_2); | |
| … | … | ||
| 354 | 354 | #ifndef Q_OS_MAC | |
| 355 | 355 | hboxLayout3->setSpacing(6); | |
| 356 | 356 | #endif | |
| 357 | hboxLayout3->setMargin(0); | ||
| 357 | hboxLayout3->setContentsMargins(0, 0, 0, 0); | ||
| 358 | 358 | hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3")); | |
| 359 | 359 | spacerItem4 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | |
| 360 | 360 |
Comments
Add a new comment:
Login or create an account to post a comment
Add your comment
Please log in to comment

