Commit 2543decb7ead117fcbea2ef0618ccaedf0f1b2f4

Made uic generate QLayout::setContentsMargin instead of setMargin.

With the exception of layout functions, which is too weird.
Task-number:  255846
src/tools/uic/cpp/cppwriteinitialization.cpp
(19 / 3)
  
391391 }
392392}
393393
394static 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
394401void WriteInitialization::LayoutDefaultHandler::writeProperty(int p, const QString &indent, const QString &objectName,
395402 const DomPropertyMap &properties, const QString &propertyName, const QString &setter,
396403 int defaultStyleValue, bool suppressDefault, QTextStream &str) const
415415 && value == defaultStyleValue);
416416 if (ifndefMac)
417417 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 }
419423 if (ifndefMac)
420424 str << "#endif\n";
421425 return;
427427 }
428428 if (suppressDefault)
429429 return;
430 // get default
430 // get default.
431431 if (m_state[p] & HasDefaultFunction) {
432 // Do not use setContentsMargins to avoid repetitive evaluations.
432433 writeSetter(indent, objectName, setter, m_functions[p], str);
433434 return;
434435 }
435436 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 }
437442 }
438443 return;
439444}
tests/auto/uic/baseline/addtorrentform.ui.h
(3 / 3)
  
6868#ifndef Q_OS_MAC
6969 vboxLayout->setSpacing(6);
7070#endif
71 vboxLayout->setMargin(8);
71 vboxLayout->setContentsMargins(8, 8, 8, 8);
7272 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
7373 groupBox = new QGroupBox(AddTorrentFile);
7474 groupBox->setObjectName(QString::fromUtf8("groupBox"));
7979#ifndef Q_OS_MAC
8080 gridLayout->setSpacing(6);
8181#endif
82 gridLayout->setMargin(8);
82 gridLayout->setContentsMargins(8, 8, 8, 8);
8383 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
8484 label_4 = new QLabel(groupBox);
8585 label_4->setObjectName(QString::fromUtf8("label_4"));
175175#ifndef Q_OS_MAC
176176 hboxLayout->setSpacing(6);
177177#endif
178 hboxLayout->setMargin(0);
178 hboxLayout->setContentsMargins(0, 0, 0, 0);
179179 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
180180 spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);
181181
tests/auto/uic/baseline/batchtranslation.ui.h
(6 / 6)
  
101101 vboxLayout->setSpacing(6);
102102#endif
103103#ifndef Q_OS_MAC
104 vboxLayout->setMargin(9);
104 vboxLayout->setContentsMargins(9, 9, 9, 9);
105105#endif
106106 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
107107 groupBox = new QGroupBox(databaseTranslationDialog);
116116 vboxLayout1->setSpacing(6);
117117#endif
118118#ifndef Q_OS_MAC
119 vboxLayout1->setMargin(9);
119 vboxLayout1->setContentsMargins(9, 9, 9, 9);
120120#endif
121121 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
122122 ckOnlyUntranslated = new QCheckBox(groupBox);
146146 vboxLayout2->setSpacing(6);
147147#endif
148148#ifndef Q_OS_MAC
149 vboxLayout2->setMargin(9);
149 vboxLayout2->setContentsMargins(9, 9, 9, 9);
150150#endif
151151 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
152152 hboxLayout = new QHBoxLayout();
154154 hboxLayout->setSpacing(6);
155155#endif
156156#ifndef Q_OS_MAC
157 hboxLayout->setMargin(0);
157 hboxLayout->setContentsMargins(0, 0, 0, 0);
158158#endif
159159 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
160160 phrasebookList = new QListView(groupBox_2);
167167#ifndef Q_OS_MAC
168168 vboxLayout3->setSpacing(6);
169169#endif
170 vboxLayout3->setMargin(0);
170 vboxLayout3->setContentsMargins(0, 0, 0, 0);
171171 vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
172172 moveUpButton = new QPushButton(groupBox_2);
173173 moveUpButton->setObjectName(QString::fromUtf8("moveUpButton"));
202202#ifndef Q_OS_MAC
203203 hboxLayout1->setSpacing(6);
204204#endif
205 hboxLayout1->setMargin(0);
205 hboxLayout1->setContentsMargins(0, 0, 0, 0);
206206 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
207207 spacerItem1 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
208208
tests/auto/uic/baseline/bookwindow.ui.h
(2 / 2)
  
6161 vboxLayout->setSpacing(6);
6262#endif
6363#ifndef Q_OS_MAC
64 vboxLayout->setMargin(9);
64 vboxLayout->setContentsMargins(9, 9, 9, 9);
6565#endif
6666 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
6767 groupBox = new QGroupBox(centralWidget);
7171 vboxLayout1->setSpacing(6);
7272#endif
7373#ifndef Q_OS_MAC
74 vboxLayout1->setMargin(9);
74 vboxLayout1->setContentsMargins(9, 9, 9, 9);
7575#endif
7676 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
7777 bookTable = new QTableView(groupBox);
tests/auto/uic/baseline/browserwidget.ui.h
(3 / 3)
  
6060#ifndef Q_OS_MAC
6161 vboxLayout->setSpacing(6);
6262#endif
63 vboxLayout->setMargin(8);
63 vboxLayout->setContentsMargins(8, 8, 8, 8);
6464 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
6565 splitter_2 = new QSplitter(Browser);
6666 splitter_2->setObjectName(QString::fromUtf8("splitter_2"));
104104 vboxLayout1->setSpacing(6);
105105#endif
106106#ifndef Q_OS_MAC
107 vboxLayout1->setMargin(9);
107 vboxLayout1->setContentsMargins(9, 9, 9, 9);
108108#endif
109109 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
110110 sqlEdit = new QTextEdit(groupBox);
123123#ifndef Q_OS_MAC
124124 hboxLayout->setSpacing(6);
125125#endif
126 hboxLayout->setMargin(1);
126 hboxLayout->setContentsMargins(1, 1, 1, 1);
127127 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
128128 spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
129129
tests/auto/uic/baseline/calculatorform.ui.h
(5 / 5)
  
5959 gridLayout->setSpacing(6);
6060#endif
6161#ifndef Q_OS_MAC
62 gridLayout->setMargin(9);
62 gridLayout->setContentsMargins(9, 9, 9, 9);
6363#endif
6464 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
6565 gridLayout->setObjectName(QString::fromUtf8(""));
6767#ifndef Q_OS_MAC
6868 hboxLayout->setSpacing(6);
6969#endif
70 hboxLayout->setMargin(1);
70 hboxLayout->setContentsMargins(1, 1, 1, 1);
7171 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
7272 hboxLayout->setObjectName(QString::fromUtf8(""));
7373 vboxLayout = new QVBoxLayout();
7474#ifndef Q_OS_MAC
7575 vboxLayout->setSpacing(6);
7676#endif
77 vboxLayout->setMargin(1);
77 vboxLayout->setContentsMargins(1, 1, 1, 1);
7878 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
7979 vboxLayout->setObjectName(QString::fromUtf8(""));
8080 label = new QLabel(CalculatorForm);
104104#ifndef Q_OS_MAC
105105 vboxLayout1->setSpacing(6);
106106#endif
107 vboxLayout1->setMargin(1);
107 vboxLayout1->setContentsMargins(1, 1, 1, 1);
108108 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
109109 vboxLayout1->setObjectName(QString::fromUtf8(""));
110110 label_2 = new QLabel(CalculatorForm);
134134#ifndef Q_OS_MAC
135135 vboxLayout2->setSpacing(6);
136136#endif
137 vboxLayout2->setMargin(1);
137 vboxLayout2->setContentsMargins(1, 1, 1, 1);
138138 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
139139 vboxLayout2->setObjectName(QString::fromUtf8(""));
140140 label_2_2_2 = new QLabel(CalculatorForm);
tests/auto/uic/baseline/chatdialog.ui.h
(3 / 3)
  
4646 vboxLayout->setSpacing(6);
4747#endif
4848#ifndef Q_OS_MAC
49 vboxLayout->setMargin(9);
49 vboxLayout->setContentsMargins(9, 9, 9, 9);
5050#endif
5151 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
5252 hboxLayout = new QHBoxLayout();
5454 hboxLayout->setSpacing(6);
5555#endif
5656#ifndef Q_OS_MAC
57 hboxLayout->setMargin(0);
57 hboxLayout->setContentsMargins(0, 0, 0, 0);
5858#endif
5959 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
6060 textEdit = new QTextEdit(ChatDialog);
7878#ifndef Q_OS_MAC
7979 hboxLayout1->setSpacing(6);
8080#endif
81 hboxLayout1->setMargin(0);
81 hboxLayout1->setContentsMargins(0, 0, 0, 0);
8282 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
8383 label = new QLabel(ChatDialog);
8484 label->setObjectName(QString::fromUtf8("label"));
tests/auto/uic/baseline/chatmainwindow.ui.h
(3 / 3)
  
6666 hboxLayout->setSpacing(6);
6767#endif
6868#ifndef Q_OS_MAC
69 hboxLayout->setMargin(9);
69 hboxLayout->setContentsMargins(9, 9, 9, 9);
7070#endif
7171 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
7272 vboxLayout = new QVBoxLayout();
7474 vboxLayout->setSpacing(6);
7575#endif
7676#ifndef Q_OS_MAC
77 vboxLayout->setMargin(0);
77 vboxLayout->setContentsMargins(0, 0, 0, 0);
7878#endif
7979 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
8080 chatHistory = new QTextBrowser(centralwidget);
8888#ifndef Q_OS_MAC
8989 hboxLayout1->setSpacing(6);
9090#endif
91 hboxLayout1->setMargin(0);
91 hboxLayout1->setContentsMargins(0, 0, 0, 0);
9292 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
9393 label = new QLabel(centralwidget);
9494 label->setObjectName(QString::fromUtf8("label"));
tests/auto/uic/baseline/chatsetnickname.ui.h
(3 / 3)
  
5353 vboxLayout->setSpacing(6);
5454#endif
5555#ifndef Q_OS_MAC
56 vboxLayout->setMargin(9);
56 vboxLayout->setContentsMargins(9, 9, 9, 9);
5757#endif
5858 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
5959 vboxLayout1 = new QVBoxLayout();
6161 vboxLayout1->setSpacing(6);
6262#endif
6363#ifndef Q_OS_MAC
64 vboxLayout1->setMargin(0);
64 vboxLayout1->setContentsMargins(0, 0, 0, 0);
6565#endif
6666 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
6767 label = new QLabel(NicknameDialog);
8383#ifndef Q_OS_MAC
8484 hboxLayout->setSpacing(6);
8585#endif
86 hboxLayout->setMargin(0);
86 hboxLayout->setContentsMargins(0, 0, 0, 0);
8787 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
8888 spacerItem = new QSpacerItem(131, 31, QSizePolicy::Expanding, QSizePolicy::Minimum);
8989
tests/auto/uic/baseline/config.ui.h
(4 / 4)
  
139139 Config->setSizeGripEnabled(true);
140140 vboxLayout = new QVBoxLayout(Config);
141141 vboxLayout->setSpacing(6);
142 vboxLayout->setMargin(11);
142 vboxLayout->setContentsMargins(11, 11, 11, 11);
143143 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
144144 vboxLayout->setContentsMargins(8, 8, 8, 8);
145145 hboxLayout = new QHBoxLayout();
155155 ButtonGroup1->setSizePolicy(sizePolicy);
156156 vboxLayout1 = new QVBoxLayout(ButtonGroup1);
157157 vboxLayout1->setSpacing(6);
158 vboxLayout1->setMargin(11);
158 vboxLayout1->setContentsMargins(11, 11, 11, 11);
159159 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
160160 vboxLayout1->setContentsMargins(11, 11, 11, 11);
161161 size_176_220 = new QRadioButton(ButtonGroup1);
230230 ButtonGroup2->setObjectName(QString::fromUtf8("ButtonGroup2"));
231231 vboxLayout2 = new QVBoxLayout(ButtonGroup2);
232232 vboxLayout2->setSpacing(6);
233 vboxLayout2->setMargin(11);
233 vboxLayout2->setContentsMargins(11, 11, 11, 11);
234234 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
235235 vboxLayout2->setContentsMargins(11, 11, 11, 11);
236236 depth_1 = new QRadioButton(ButtonGroup2);
337337 GroupBox1->setObjectName(QString::fromUtf8("GroupBox1"));
338338 gridLayout = new QGridLayout(GroupBox1);
339339 gridLayout->setSpacing(6);
340 gridLayout->setMargin(11);
340 gridLayout->setContentsMargins(11, 11, 11, 11);
341341 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
342342 gridLayout->setHorizontalSpacing(6);
343343 gridLayout->setVerticalSpacing(6);
tests/auto/uic/baseline/controller.ui.h
(1 / 1)
  
4242 gridLayout->setSpacing(6);
4343#endif
4444#ifndef Q_OS_MAC
45 gridLayout->setMargin(9);
45 gridLayout->setContentsMargins(9, 9, 9, 9);
4646#endif
4747 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
4848 label = new QLabel(Controller);
tests/auto/uic/baseline/default.ui.h
(1 / 1)
  
8383 gridLayout->setSpacing(6);
8484#endif
8585#ifndef Q_OS_MAC
86 gridLayout->setMargin(9);
86 gridLayout->setContentsMargins(9, 9, 9, 9);
8787#endif
8888 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
8989 nameLabel = new QLabel(centralwidget);
tests/auto/uic/baseline/downloaditem.ui.h
(1 / 1)
  
4848 DownloadItem->setObjectName(QString::fromUtf8("DownloadItem"));
4949 DownloadItem->resize(423, 110);
5050 horizontalLayout = new QHBoxLayout(DownloadItem);
51 horizontalLayout->setMargin(0);
51 horizontalLayout->setContentsMargins(0, 0, 0, 0);
5252 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
5353 fileIcon = new QLabel(DownloadItem);
5454 fileIcon->setObjectName(QString::fromUtf8("fileIcon"));
tests/auto/uic/baseline/downloads.ui.h
(1 / 1)
  
4343 DownloadDialog->resize(332, 252);
4444 gridLayout = new QGridLayout(DownloadDialog);
4545 gridLayout->setSpacing(0);
46 gridLayout->setMargin(0);
46 gridLayout->setContentsMargins(0, 0, 0, 0);
4747 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
4848 downloadsView = new EditTableView(DownloadDialog);
4949 downloadsView->setObjectName(QString::fromUtf8("downloadsView"));
tests/auto/uic/baseline/filternamedialog.ui.h
(1 / 1)
  
4242 FilterNameDialogClass->resize(312, 95);
4343 gridLayout = new QGridLayout(FilterNameDialogClass);
4444 gridLayout->setSpacing(6);
45 gridLayout->setMargin(9);
45 gridLayout->setContentsMargins(9, 9, 9, 9);
4646 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
4747 label = new QLabel(FilterNameDialogClass);
4848 label->setObjectName(QString::fromUtf8("label"));
tests/auto/uic/baseline/finddialog.ui.h
(5 / 5)
  
102102 FindDialog->setSizePolicy(sizePolicy);
103103 hboxLayout = new QHBoxLayout(FindDialog);
104104 hboxLayout->setSpacing(6);
105 hboxLayout->setMargin(11);
105 hboxLayout->setContentsMargins(11, 11, 11, 11);
106106 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
107107 vboxLayout = new QVBoxLayout();
108108 vboxLayout->setSpacing(6);
109 vboxLayout->setMargin(0);
109 vboxLayout->setContentsMargins(0, 0, 0, 0);
110110 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
111111 hboxLayout1 = new QHBoxLayout();
112112 hboxLayout1->setSpacing(6);
113 hboxLayout1->setMargin(0);
113 hboxLayout1->setContentsMargins(0, 0, 0, 0);
114114 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
115115 findWhat = new QLabel(FindDialog);
116116 findWhat->setObjectName(QString::fromUtf8("findWhat"));
129129 groupBox->setObjectName(QString::fromUtf8("groupBox"));
130130 gridLayout = new QGridLayout(groupBox);
131131 gridLayout->setSpacing(6);
132 gridLayout->setMargin(9);
132 gridLayout->setContentsMargins(9, 9, 9, 9);
133133 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
134134 sourceText = new QCheckBox(groupBox);
135135 sourceText->setObjectName(QString::fromUtf8("sourceText"));
168168
169169 vboxLayout1 = new QVBoxLayout();
170170 vboxLayout1->setSpacing(6);
171 vboxLayout1->setMargin(0);
171 vboxLayout1->setContentsMargins(0, 0, 0, 0);
172172 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
173173 findNxt = new QPushButton(FindDialog);
174174 findNxt->setObjectName(QString::fromUtf8("findNxt"));
tests/auto/uic/baseline/form.ui.h
(4 / 4)
  
5151 hboxLayout->setSpacing(6);
5252#endif
5353#ifndef Q_OS_MAC
54 hboxLayout->setMargin(9);
54 hboxLayout->setContentsMargins(9, 9, 9, 9);
5555#endif
5656 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
5757 worldTimeClock = new WorldTimeClock(WorldTimeForm);
6363#ifndef Q_OS_MAC
6464 vboxLayout->setSpacing(6);
6565#endif
66 vboxLayout->setMargin(1);
66 vboxLayout->setContentsMargins(1, 1, 1, 1);
6767 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
6868 spacerItem = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
6969
7373#ifndef Q_OS_MAC
7474 hboxLayout1->setSpacing(6);
7575#endif
76 hboxLayout1->setMargin(1);
76 hboxLayout1->setContentsMargins(1, 1, 1, 1);
7777 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
7878 label = new QLabel(WorldTimeForm);
7979 label->setObjectName(QString::fromUtf8("label"));
9393#ifndef Q_OS_MAC
9494 hboxLayout2->setSpacing(6);
9595#endif
96 hboxLayout2->setMargin(1);
96 hboxLayout2->setContentsMargins(1, 1, 1, 1);
9797 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
9898 label_2 = new QLabel(WorldTimeForm);
9999 label_2->setObjectName(QString::fromUtf8("label_2"));
tests/auto/uic/baseline/formwindowsettings.ui.h
(7 / 7)
  
130130#ifndef Q_OS_MAC
131131 hboxLayout->setSpacing(6);
132132#endif
133 hboxLayout->setMargin(0);
133 hboxLayout->setContentsMargins(0, 0, 0, 0);
134134 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
135135 layoutDefaultGroupBox = new QGroupBox(FormWindowSettings);
136136 layoutDefaultGroupBox->setObjectName(QString::fromUtf8("layoutDefaultGroupBox"));
139139#ifndef Q_OS_MAC
140140 gridLayout1->setSpacing(6);
141141#endif
142 gridLayout1->setMargin(8);
142 gridLayout1->setContentsMargins(8, 8, 8, 8);
143143 gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
144144 label_2 = new QLabel(layoutDefaultGroupBox);
145145 label_2->setObjectName(QString::fromUtf8("label_2"));
171171#ifndef Q_OS_MAC
172172 gridLayout2->setSpacing(6);
173173#endif
174 gridLayout2->setMargin(8);
174 gridLayout2->setContentsMargins(8, 8, 8, 8);
175175 gridLayout2->setObjectName(QString::fromUtf8("gridLayout2"));
176176 spacingFunctionLineEdit = new QLineEdit(layoutFunctionGroupBox);
177177 spacingFunctionLineEdit->setObjectName(QString::fromUtf8("spacingFunctionLineEdit"));
205205#ifndef Q_OS_MAC
206206 vboxLayout->setSpacing(6);
207207#endif
208 vboxLayout->setMargin(8);
208 vboxLayout->setContentsMargins(8, 8, 8, 8);
209209 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
210210 authorLineEdit = new QLineEdit(pixmapFunctionGroupBox_2);
211211 authorLineEdit->setObjectName(QString::fromUtf8("authorLineEdit"));
221221#ifndef Q_OS_MAC
222222 vboxLayout1->setSpacing(6);
223223#endif
224 vboxLayout1->setMargin(8);
224 vboxLayout1->setContentsMargins(8, 8, 8, 8);
225225 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
226226 includeHintsTextEdit = new QTextEdit(includeHintsGroupBox);
227227 includeHintsTextEdit->setObjectName(QString::fromUtf8("includeHintsTextEdit"));
235235#ifndef Q_OS_MAC
236236 hboxLayout1->setSpacing(6);
237237#endif
238 hboxLayout1->setMargin(0);
238 hboxLayout1->setContentsMargins(0, 0, 0, 0);
239239 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
240240 pixmapFunctionGroupBox = new QGroupBox(FormWindowSettings);
241241 pixmapFunctionGroupBox->setObjectName(QString::fromUtf8("pixmapFunctionGroupBox"));
244244#ifndef Q_OS_MAC
245245 vboxLayout2->setSpacing(6);
246246#endif
247 vboxLayout2->setMargin(8);
247 vboxLayout2->setContentsMargins(8, 8, 8, 8);
248248 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
249249 pixmapFunctionLineEdit = new QLineEdit(pixmapFunctionGroupBox);
250250 pixmapFunctionLineEdit->setObjectName(QString::fromUtf8("pixmapFunctionLineEdit"));
tests/auto/uic/baseline/helpdialog.ui.h
(8 / 8)
  
119119#ifndef Q_OS_MAC
120120 vboxLayout->setSpacing(6);
121121#endif
122 vboxLayout->setMargin(0);
122 vboxLayout->setContentsMargins(0, 0, 0, 0);
123123 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
124124 tabWidget = new QTabWidget(HelpDialog);
125125 tabWidget->setObjectName(QString::fromUtf8("tabWidget"));
129129#ifndef Q_OS_MAC
130130 vboxLayout1->setSpacing(6);
131131#endif
132 vboxLayout1->setMargin(5);
132 vboxLayout1->setContentsMargins(5, 5, 5, 5);
133133 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
134134 listContents = new QTreeWidget(contentPage);
135135 listContents->setObjectName(QString::fromUtf8("listContents"));
146146#ifndef Q_OS_MAC
147147 vboxLayout2->setSpacing(6);
148148#endif
149 vboxLayout2->setMargin(5);
149 vboxLayout2->setContentsMargins(5, 5, 5, 5);
150150 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
151151 TextLabel1 = new QLabel(indexPage);
152152 TextLabel1->setObjectName(QString::fromUtf8("TextLabel1"));
171171#ifndef Q_OS_MAC
172172 vboxLayout3->setSpacing(6);
173173#endif
174 vboxLayout3->setMargin(5);
174 vboxLayout3->setContentsMargins(5, 5, 5, 5);
175175 vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
176176 listBookmarks = new QTreeWidget(bookmarkPage);
177177 listBookmarks->setObjectName(QString::fromUtf8("listBookmarks"));
184184#ifndef Q_OS_MAC
185185 hboxLayout->setSpacing(6);
186186#endif
187 hboxLayout->setMargin(0);
187 hboxLayout->setContentsMargins(0, 0, 0, 0);
188188 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
189189 spacerItem = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
190190
210210#ifndef Q_OS_MAC
211211 gridLayout->setSpacing(6);
212212#endif
213 gridLayout->setMargin(5);
213 gridLayout->setContentsMargins(5, 5, 5, 5);
214214 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
215215 spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Fixed);
216216
241241#ifndef Q_OS_MAC
242242 hboxLayout1->setSpacing(6);
243243#endif
244 hboxLayout1->setMargin(1);
244 hboxLayout1->setContentsMargins(1, 1, 1, 1);
245245 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
246246 helpButton = new QPushButton(searchPage);
247247 helpButton->setObjectName(QString::fromUtf8("helpButton"));
273273#ifndef Q_OS_MAC
274274 hboxLayout2->setSpacing(6);
275275#endif
276 hboxLayout2->setMargin(3);
276 hboxLayout2->setContentsMargins(3, 3, 3, 3);
277277 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
278278 labelPrepare = new QLabel(framePrepare);
279279 labelPrepare->setObjectName(QString::fromUtf8("labelPrepare"));
tests/auto/uic/baseline/imagedialog.ui.h
(3 / 3)
  
5858 vboxLayout->setSpacing(6);
5959#endif
6060#ifndef Q_OS_MAC
61 vboxLayout->setMargin(9);
61 vboxLayout->setContentsMargins(9, 9, 9, 9);
6262#endif
6363 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
6464 vboxLayout->setObjectName(QString::fromUtf8(""));
6666#ifndef Q_OS_MAC
6767 gridLayout->setSpacing(6);
6868#endif
69 gridLayout->setMargin(1);
69 gridLayout->setContentsMargins(1, 1, 1, 1);
7070 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
7171 gridLayout->setObjectName(QString::fromUtf8(""));
7272 widthLabel = new QLabel(dialog);
164164#ifndef Q_OS_MAC
165165 hboxLayout->setSpacing(6);
166166#endif
167 hboxLayout->setMargin(1);
167 hboxLayout->setContentsMargins(1, 1, 1, 1);
168168 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
169169 hboxLayout->setObjectName(QString::fromUtf8(""));
170170 spacerItem1 = new QSpacerItem(QSizePolicy::Expanding, QSizePolicy::Minimum);
tests/auto/uic/baseline/listwidgeteditor.ui.h
(1 / 1)
  
102102 vboxLayout->setSpacing(6);
103103#endif
104104#ifndef Q_OS_MAC
105 vboxLayout->setMargin(9);
105 vboxLayout->setContentsMargins(9, 9, 9, 9);
106106#endif
107107 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
108108 groupBox = new QGroupBox(qdesigner_internal__ListWidgetEditor);
tests/auto/uic/baseline/mainwindow.ui.h
(9 / 9)
  
102102 vboxLayout->setSpacing(6);
103103#endif
104104#ifndef Q_OS_MAC
105 vboxLayout->setMargin(9);
105 vboxLayout->setContentsMargins(9, 9, 9, 9);
106106#endif
107107 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
108108 groupBox = new QGroupBox(centralwidget);
112112 hboxLayout->setSpacing(6);
113113#endif
114114#ifndef Q_OS_MAC
115 hboxLayout->setMargin(9);
115 hboxLayout->setContentsMargins(9, 9, 9, 9);
116116#endif
117117 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
118118 label = new QLabel(groupBox);
165165 vboxLayout1->setSpacing(6);
166166#endif
167167#ifndef Q_OS_MAC
168 vboxLayout1->setMargin(9);
168 vboxLayout1->setContentsMargins(9, 9, 9, 9);
169169#endif
170170 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
171171 chooseFromCodePoints = new QRadioButton(groupBox_2);
178178#ifndef Q_OS_MAC
179179 vboxLayout2->setSpacing(6);
180180#endif
181 vboxLayout2->setMargin(0);
181 vboxLayout2->setContentsMargins(0, 0, 0, 0);
182182 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
183183 characterRangeView = new QListWidget(groupBox_2);
184184 characterRangeView->setObjectName(QString::fromUtf8("characterRangeView"));
189189#ifndef Q_OS_MAC
190190 hboxLayout1->setSpacing(6);
191191#endif
192 hboxLayout1->setMargin(0);
192 hboxLayout1->setContentsMargins(0, 0, 0, 0);
193193 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
194194 selectAll = new QPushButton(groupBox_2);
195195 selectAll->setObjectName(QString::fromUtf8("selectAll"));
225225#ifndef Q_OS_MAC
226226 hboxLayout2->setSpacing(6);
227227#endif
228 hboxLayout2->setMargin(0);
228 hboxLayout2->setContentsMargins(0, 0, 0, 0);
229229 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
230230 label_5 = new QLabel(groupBox_2);
231231 label_5->setObjectName(QString::fromUtf8("label_5"));
264264 hboxLayout3->setSpacing(6);
265265#endif
266266#ifndef Q_OS_MAC
267 hboxLayout3->setMargin(9);
267 hboxLayout3->setContentsMargins(9, 9, 9, 9);
268268#endif
269269 hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
270270 preview = new QLineEdit(groupBox_3);
282282 hboxLayout4->setSpacing(6);
283283#endif
284284#ifndef Q_OS_MAC
285 hboxLayout4->setMargin(9);
285 hboxLayout4->setContentsMargins(9, 9, 9, 9);
286286#endif
287287 hboxLayout4->setObjectName(QString::fromUtf8("hboxLayout4"));
288288 label_3 = new QLabel(groupBox_4);
318318#ifndef Q_OS_MAC
319319 hboxLayout5->setSpacing(6);
320320#endif
321 hboxLayout5->setMargin(0);
321 hboxLayout5->setContentsMargins(0, 0, 0, 0);
322322 hboxLayout5->setObjectName(QString::fromUtf8("hboxLayout5"));
323323 generate = new QPushButton(centralwidget);
324324 generate->setObjectName(QString::fromUtf8("generate"));
tests/auto/uic/baseline/mainwindowbase.ui.h
(20 / 20)
  
218218 widget->setGeometry(QRect(0, 28, 724, 587));
219219 hboxLayout = new QHBoxLayout(widget);
220220 hboxLayout->setSpacing(4);
221 hboxLayout->setMargin(8);
221 hboxLayout->setContentsMargins(8, 8, 8, 8);
222222 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
223223 hboxLayout->setContentsMargins(0, 0, 0, 0);
224224 helpview = new QTextEdit(widget);
234234 tab1->setObjectName(QString::fromUtf8("tab1"));
235235 vboxLayout = new QVBoxLayout(tab1);
236236 vboxLayout->setSpacing(4);
237 vboxLayout->setMargin(4);
237 vboxLayout->setContentsMargins(4, 4, 4, 4);
238238 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
239239 GroupBox40 = new QGroupBox(tab1);
240240 GroupBox40->setObjectName(QString::fromUtf8("GroupBox40"));
241241 hboxLayout1 = new QHBoxLayout(GroupBox40);
242242 hboxLayout1->setSpacing(4);
243 hboxLayout1->setMargin(8);
243 hboxLayout1->setContentsMargins(8, 8, 8, 8);
244244 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
245245 gstylebuddy = new QLabel(GroupBox40);
246246 gstylebuddy->setObjectName(QString::fromUtf8("gstylebuddy"));
264264 groupAutoPalette->setSizePolicy(sizePolicy);
265265 hboxLayout2 = new QHBoxLayout(groupAutoPalette);
266266 hboxLayout2->setSpacing(4);
267 hboxLayout2->setMargin(8);
267 hboxLayout2->setContentsMargins(8, 8, 8, 8);
268268 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
269269 labelMainColor = new QLabel(groupAutoPalette);
270270 labelMainColor->setObjectName(QString::fromUtf8("labelMainColor"));
317317 GroupBox126->setSizePolicy(sizePolicy2);
318318 gridLayout = new QGridLayout(GroupBox126);
319319 gridLayout->setSpacing(4);
320 gridLayout->setMargin(8);
320 gridLayout->setContentsMargins(8, 8, 8, 8);
321321 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
322322 TextLabel1 = new QLabel(GroupBox126);
323323 TextLabel1->setObjectName(QString::fromUtf8("TextLabel1"));
348348 tab2->setObjectName(QString::fromUtf8("tab2"));
349349 vboxLayout1 = new QVBoxLayout(tab2);
350350 vboxLayout1->setSpacing(4);
351 vboxLayout1->setMargin(8);
351 vboxLayout1->setContentsMargins(8, 8, 8, 8);
352352 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
353353 GroupBox1 = new QGroupBox(tab2);
354354 GroupBox1->setObjectName(QString::fromUtf8("GroupBox1"));
355355 gridLayout1 = new QGridLayout(GroupBox1);
356356 gridLayout1->setSpacing(4);
357 gridLayout1->setMargin(8);
357 gridLayout1->setContentsMargins(8, 8, 8, 8);
358358 gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
359359 stylecombo = new QComboBox(GroupBox1);
360360 stylecombo->setObjectName(QString::fromUtf8("stylecombo"));
406406 GroupBox2->setObjectName(QString::fromUtf8("GroupBox2"));
407407 vboxLayout2 = new QVBoxLayout(GroupBox2);
408408 vboxLayout2->setSpacing(4);
409 vboxLayout2->setMargin(8);
409 vboxLayout2->setContentsMargins(8, 8, 8, 8);
410410 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
411411 hboxLayout3 = new QHBoxLayout();
412412 hboxLayout3->setSpacing(4);
413413#ifndef Q_OS_MAC
414 hboxLayout3->setMargin(0);
414 hboxLayout3->setContentsMargins(0, 0, 0, 0);
415415#endif
416416 hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
417417 famsubbuddy = new QLabel(GroupBox2);
450450
451451 hboxLayout4 = new QHBoxLayout();
452452 hboxLayout4->setSpacing(4);
453 hboxLayout4->setMargin(0);
453 hboxLayout4->setContentsMargins(0, 0, 0, 0);
454454 hboxLayout4->setObjectName(QString::fromUtf8("hboxLayout4"));
455455 PushButton2 = new QPushButton(GroupBox2);
456456 PushButton2->setObjectName(QString::fromUtf8("PushButton2"));
480480
481481 hboxLayout5 = new QHBoxLayout();
482482 hboxLayout5->setSpacing(4);
483 hboxLayout5->setMargin(0);
483 hboxLayout5->setContentsMargins(0, 0, 0, 0);
484484 hboxLayout5->setObjectName(QString::fromUtf8("hboxLayout5"));
485485 choosebuddy = new QLabel(GroupBox2);
486486 choosebuddy->setObjectName(QString::fromUtf8("choosebuddy"));
510510 tab->setObjectName(QString::fromUtf8("tab"));
511511 vboxLayout3 = new QVBoxLayout(tab);
512512 vboxLayout3->setSpacing(4);
513 vboxLayout3->setMargin(7);
513 vboxLayout3->setContentsMargins(7, 7, 7, 7);
514514 vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
515515 GroupBox4 = new QGroupBox(tab);
516516 GroupBox4->setObjectName(QString::fromUtf8("GroupBox4"));
517517 gridLayout2 = new QGridLayout(GroupBox4);
518518 gridLayout2->setSpacing(4);
519 gridLayout2->setMargin(8);
519 gridLayout2->setContentsMargins(8, 8, 8, 8);
520520 gridLayout2->setObjectName(QString::fromUtf8("gridLayout2"));
521521 dcispin = new QSpinBox(GroupBox4);
522522 dcispin->setObjectName(QString::fromUtf8("dcispin"));
566566 GroupBox3->setObjectName(QString::fromUtf8("GroupBox3"));
567567 vboxLayout4 = new QVBoxLayout(GroupBox3);
568568 vboxLayout4->setSpacing(4);
569 vboxLayout4->setMargin(8);
569 vboxLayout4->setContentsMargins(8, 8, 8, 8);
570570 vboxLayout4->setObjectName(QString::fromUtf8("vboxLayout4"));
571571 effectcheckbox = new QCheckBox(GroupBox3);
572572 effectcheckbox->setObjectName(QString::fromUtf8("effectcheckbox"));
579579 effectbase->setFrameShadow(QFrame::Plain);
580580 gridLayout3 = new QGridLayout(effectbase);
581581 gridLayout3->setSpacing(4);
582 gridLayout3->setMargin(0);
582 gridLayout3->setContentsMargins(0, 0, 0, 0);
583583 gridLayout3->setObjectName(QString::fromUtf8("gridLayout3"));
584584 meffectbuddy = new QLabel(effectbase);
585585 meffectbuddy->setObjectName(QString::fromUtf8("meffectbuddy"));
632632 GroupBox5->setObjectName(QString::fromUtf8("GroupBox5"));
633633 gridLayout4 = new QGridLayout(GroupBox5);
634634 gridLayout4->setSpacing(4);
635 gridLayout4->setMargin(8);
635 gridLayout4->setContentsMargins(8, 8, 8, 8);
636636 gridLayout4->setObjectName(QString::fromUtf8("gridLayout4"));
637637 swbuddy = new QLabel(GroupBox5);
638638 swbuddy->setObjectName(QString::fromUtf8("swbuddy"));
683683 tab3->setObjectName(QString::fromUtf8("tab3"));
684684 vboxLayout5 = new QVBoxLayout(tab3);
685685 vboxLayout5->setSpacing(4);
686 vboxLayout5->setMargin(8);
686 vboxLayout5->setContentsMargins(8, 8, 8, 8);
687687 vboxLayout5->setObjectName(QString::fromUtf8("vboxLayout5"));
688688 fontembeddingcheckbox = new QCheckBox(tab3);
689689 fontembeddingcheckbox->setObjectName(QString::fromUtf8("fontembeddingcheckbox"));
697697 GroupBox10->setSizePolicy(sizePolicy2);
698698 vboxLayout6 = new QVBoxLayout(GroupBox10);
699699 vboxLayout6->setSpacing(4);
700 vboxLayout6->setMargin(8);
700 vboxLayout6->setContentsMargins(8, 8, 8, 8);
701701 vboxLayout6->setObjectName(QString::fromUtf8("vboxLayout6"));
702702 gridLayout5 = new QGridLayout();
703703 gridLayout5->setSpacing(4);
704704#ifndef Q_OS_MAC
705 gridLayout5->setMargin(0);
705 gridLayout5->setContentsMargins(0, 0, 0, 0);
706706#endif
707707 gridLayout5->setObjectName(QString::fromUtf8("gridLayout5"));
708708 PushButton11 = new QPushButton(GroupBox10);
730730
731731 gridLayout6 = new QGridLayout();
732732 gridLayout6->setSpacing(4);
733 gridLayout6->setMargin(0);
733 gridLayout6->setContentsMargins(0, 0, 0, 0);
734734 gridLayout6->setObjectName(QString::fromUtf8("gridLayout6"));
735735 spacerItem2 = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Minimum);
736736
tests/auto/uic/baseline/mydialog.ui.h
(1 / 1)
  
4040 vboxLayout->setSpacing(6);
4141#endif
4242#ifndef Q_OS_MAC
43 vboxLayout->setMargin(9);
43 vboxLayout->setContentsMargins(9, 9, 9, 9);
4444#endif
4545 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
4646 aLabel = new QLabel(MyDialog);
tests/auto/uic/baseline/myform.ui.h
(2 / 2)
  
5151#ifndef Q_OS_MAC
5252 vboxLayout->setSpacing(6);
5353#endif
54 vboxLayout->setMargin(8);
54 vboxLayout->setContentsMargins(8, 8, 8, 8);
5555 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
5656 groupBox = new QGroupBox(Form);
5757 groupBox->setObjectName(QString::fromUtf8("groupBox"));
5959#ifndef Q_OS_MAC
6060 gridLayout->setSpacing(6);
6161#endif
62 gridLayout->setMargin(8);
62 gridLayout->setContentsMargins(8, 8, 8, 8);
6363 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
6464 radioButton_2 = new QRadioButton(groupBox);
6565 radioButton_2->setObjectName(QString::fromUtf8("radioButton_2"));
tests/auto/uic/baseline/newform.ui.h
(2 / 2)
  
8989 vboxLayout->setSpacing(6);
9090#endif
9191#ifndef Q_OS_MAC
92 vboxLayout->setMargin(9);
92 vboxLayout->setContentsMargins(9, 9, 9, 9);
9393#endif
9494 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
9595 hboxLayout = new QHBoxLayout();
9696#ifndef Q_OS_MAC
9797 hboxLayout->setSpacing(6);
9898#endif
99 hboxLayout->setMargin(1);
99 hboxLayout->setContentsMargins(1, 1, 1, 1);
100100 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
101101 treeWidget = new QTreeWidget(NewForm);
102102 treeWidget->setObjectName(QString::fromUtf8("treeWidget"));
tests/auto/uic/baseline/pagefold.ui.h
(2 / 2)
  
8787 vboxLayout->setSpacing(6);
8888#endif
8989#ifndef Q_OS_MAC
90 vboxLayout->setMargin(9);
90 vboxLayout->setContentsMargins(9, 9, 9, 9);
9191#endif
9292 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
9393 mainFrame = new QFrame(centralwidget);
9999 gridLayout->setSpacing(6);
100100#endif
101101#ifndef Q_OS_MAC
102 gridLayout->setMargin(9);
102 gridLayout->setContentsMargins(9, 9, 9, 9);
103103#endif
104104 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
105105 nameCombo = new QComboBox(mainFrame);
tests/auto/uic/baseline/paletteeditor.ui.h
(3 / 3)
  
106106 vboxLayout->setSpacing(6);
107107#endif
108108#ifndef Q_OS_MAC
109 vboxLayout->setMargin(9);
109 vboxLayout->setContentsMargins(9, 9, 9, 9);
110110#endif
111111 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
112112 advancedBox = new QGroupBox(qdesigner_internal__PaletteEditor);
118118 gridLayout->setSpacing(6);
119119#endif
120120#ifndef Q_OS_MAC
121 gridLayout->setMargin(9);
121 gridLayout->setContentsMargins(9, 9, 9, 9);
122122#endif
123123 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
124124 buildButton = new QtColorButton(advancedBox);
167167#ifndef Q_OS_MAC
168168 gridLayout1->setSpacing(6);
169169#endif
170 gridLayout1->setMargin(8);
170 gridLayout1->setContentsMargins(8, 8, 8, 8);
171171 gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
172172 disabledRadio = new QRadioButton(GroupBox126);
173173 disabledRadio->setObjectName(QString::fromUtf8("disabledRadio"));
tests/auto/uic/baseline/paletteeditoradvancedbase.ui.h
(9 / 9)
  
114114#ifndef Q_OS_MAC
115115 vboxLayout->setSpacing(6);
116116#endif
117 vboxLayout->setMargin(11);
117 vboxLayout->setContentsMargins(11, 11, 11, 11);
118118 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
119119 vboxLayout->setObjectName(QString::fromUtf8("unnamed"));
120120 hboxLayout = new QHBoxLayout();
122122 hboxLayout->setSpacing(6);
123123#endif
124124#ifndef Q_OS_MAC
125 hboxLayout->setMargin(0);
125 hboxLayout->setContentsMargins(0, 0, 0, 0);
126126#endif
127127 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
128128 hboxLayout->setObjectName(QString::fromUtf8("unnamed"));
150150#ifndef Q_OS_MAC
151151 ButtonGroup1->layout()->setSpacing(6);
152152#endif
153 ButtonGroup1->layout()->setMargin(11);
153 ButtonGroup1->layout()->setContentsMargins(11, 11, 11, 11);
154154 vboxLayout1 = new QVBoxLayout();
155155 QBoxLayout *boxlayout = qobject_cast<QBoxLayout *>(ButtonGroup1->layout());
156156 if (boxlayout)
179179#ifndef Q_OS_MAC
180180 groupCentral->layout()->setSpacing(6);
181181#endif
182 groupCentral->layout()->setMargin(11);
182 groupCentral->layout()->setContentsMargins(11, 11, 11, 11);
183183 vboxLayout2 = new QVBoxLayout();
184184 QBoxLayout *boxlayout1 = qobject_cast<QBoxLayout *>(groupCentral->layout());
185185 if (boxlayout1)
196196#ifndef Q_OS_MAC
197197 hboxLayout1->setSpacing(6);
198198#endif
199 hboxLayout1->setMargin(0);
199 hboxLayout1->setContentsMargins(0, 0, 0, 0);
200200 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
201201 hboxLayout1->setObjectName(QString::fromUtf8("unnamed"));
202202 Horizontal_Spacing1 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
237237#ifndef Q_OS_MAC
238238 groupEffect->layout()->setSpacing(6);
239239#endif
240 groupEffect->layout()->setMargin(11);
240 groupEffect->layout()->setContentsMargins(11, 11, 11, 11);
241241 vboxLayout3 = new QVBoxLayout();
242242 QBoxLayout *boxlayout2 = qobject_cast<QBoxLayout *>(groupEffect->layout());
243243 if (boxlayout2)
250250 hboxLayout2->setSpacing(6);
251251#endif
252252#ifndef Q_OS_MAC
253 hboxLayout2->setMargin(0);
253 hboxLayout2->setContentsMargins(0, 0, 0, 0);
254254#endif
255255 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
256256 hboxLayout2->setObjectName(QString::fromUtf8("unnamed"));
272272#ifndef Q_OS_MAC
273273 hboxLayout3->setSpacing(6);
274274#endif
275 hboxLayout3->setMargin(0);
275 hboxLayout3->setContentsMargins(0, 0, 0, 0);
276276 hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
277277 hboxLayout3->setObjectName(QString::fromUtf8("unnamed"));
278278 Horizontal_Spacing3 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
305305#ifndef Q_OS_MAC
306306 hboxLayout4->setSpacing(6);
307307#endif
308 hboxLayout4->setMargin(0);
308 hboxLayout4->setContentsMargins(0, 0, 0, 0);
309309 hboxLayout4->setObjectName(QString::fromUtf8("hboxLayout4"));
310310 hboxLayout4->setObjectName(QString::fromUtf8("unnamed"));
311311 Horizontal_Spacing2 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
tests/auto/uic/baseline/phrasebookbox.ui.h
(1 / 1)
  
9696 PhraseBookBox->resize(596, 454);
9797 unnamed = new QHBoxLayout(PhraseBookBox);
9898 unnamed->setSpacing(6);
99 unnamed->setMargin(11);
99 unnamed->setContentsMargins(11, 11, 11, 11);
100100 unnamed->setObjectName(QString::fromUtf8("unnamed"));
101101 inputsLayout = new QVBoxLayout();
102102 inputsLayout->setSpacing(6);
tests/auto/uic/baseline/previewdialogbase.ui.h
(4 / 4)
  
5555 vboxLayout->setSpacing(6);
5656#endif
5757#ifndef Q_OS_MAC
58 vboxLayout->setMargin(9);
58 vboxLayout->setContentsMargins(9, 9, 9, 9);
5959#endif
6060 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
6161 hboxLayout = new QHBoxLayout();
6363 hboxLayout->setSpacing(6);
6464#endif
6565#ifndef Q_OS_MAC
66 hboxLayout->setMargin(0);
66 hboxLayout->setContentsMargins(0, 0, 0, 0);
6767#endif
6868 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
6969 label = new QLabel(PreviewDialogBase);
104104#ifndef Q_OS_MAC
105105 hboxLayout1->setSpacing(6);
106106#endif
107 hboxLayout1->setMargin(0);
107 hboxLayout1->setContentsMargins(0, 0, 0, 0);
108108 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
109109 pageList = new QTreeWidget(PreviewDialogBase);
110110 pageList->setObjectName(QString::fromUtf8("pageList"));
133133#ifndef Q_OS_MAC
134134 hboxLayout2->setSpacing(6);
135135#endif
136 hboxLayout2->setMargin(0);
136 hboxLayout2->setContentsMargins(0, 0, 0, 0);
137137 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
138138 progressBar = new QProgressBar(PreviewDialogBase);
139139 progressBar->setObjectName(QString::fromUtf8("progressBar"));
tests/auto/uic/baseline/previewwidget.ui.h
(5 / 5)
  
118118 gridLayout->setSpacing(6);
119119#endif
120120#ifndef Q_OS_MAC
121 gridLayout->setMargin(9);
121 gridLayout->setContentsMargins(9, 9, 9, 9);
122122#endif
123123 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
124124 vboxLayout = new QVBoxLayout();
126126 vboxLayout->setSpacing(6);
127127#endif
128128#ifndef Q_OS_MAC
129 vboxLayout->setMargin(0);
129 vboxLayout->setContentsMargins(0, 0, 0, 0);
130130#endif
131131 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
132132 LineEdit1 = new QLineEdit(qdesigner_internal__PreviewWidget);
143143#ifndef Q_OS_MAC
144144 hboxLayout->setSpacing(6);
145145#endif
146 hboxLayout->setMargin(0);
146 hboxLayout->setContentsMargins(0, 0, 0, 0);
147147 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
148148 SpinBox1 = new QSpinBox(qdesigner_internal__PreviewWidget);
149149 SpinBox1->setObjectName(QString::fromUtf8("SpinBox1"));
196196 vboxLayout1->setSpacing(6);
197197#endif
198198#ifndef Q_OS_MAC
199 vboxLayout1->setMargin(9);
199 vboxLayout1->setContentsMargins(9, 9, 9, 9);
200200#endif
201201 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
202202 CheckBox1 = new QCheckBox(ButtonGroup2);
220220 vboxLayout2->setSpacing(6);
221221#endif
222222#ifndef Q_OS_MAC
223 vboxLayout2->setMargin(9);
223 vboxLayout2->setContentsMargins(9, 9, 9, 9);
224224#endif
225225 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
226226 RadioButton1 = new QRadioButton(ButtonGroup1);
tests/auto/uic/baseline/previewwidgetbase.ui.h
(7 / 7)
  
117117#ifndef Q_OS_MAC
118118 vboxLayout->setSpacing(6);
119119#endif
120 vboxLayout->setMargin(11);
120 vboxLayout->setContentsMargins(11, 11, 11, 11);
121121 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
122122 vboxLayout->setObjectName(QString::fromUtf8("unnamed"));
123123 hboxLayout = new QHBoxLayout();
125125 hboxLayout->setSpacing(6);
126126#endif
127127#ifndef Q_OS_MAC
128 hboxLayout->setMargin(0);
128 hboxLayout->setContentsMargins(0, 0, 0, 0);
129129#endif
130130 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
131131 hboxLayout->setObjectName(QString::fromUtf8("unnamed"));
134134 vboxLayout1->setSpacing(6);
135135#endif
136136#ifndef Q_OS_MAC
137 vboxLayout1->setMargin(0);
137 vboxLayout1->setContentsMargins(0, 0, 0, 0);
138138#endif
139139 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
140140 vboxLayout1->setObjectName(QString::fromUtf8("unnamed"));
144144#ifndef Q_OS_MAC
145145 ButtonGroup1->layout()->setSpacing(6);
146146#endif
147 ButtonGroup1->layout()->setMargin(11);
147 ButtonGroup1->layout()->setContentsMargins(11, 11, 11, 11);
148148 vboxLayout2 = new QVBoxLayout();
149149 QBoxLayout *boxlayout = qobject_cast<QBoxLayout *>(ButtonGroup1->layout());
150150 if (boxlayout)
177177#ifndef Q_OS_MAC
178178 ButtonGroup2->layout()->setSpacing(6);
179179#endif
180 ButtonGroup2->layout()->setMargin(11);
180 ButtonGroup2->layout()->setContentsMargins(11, 11, 11, 11);
181181 vboxLayout3 = new QVBoxLayout();
182182 QBoxLayout *boxlayout1 = qobject_cast<QBoxLayout *>(ButtonGroup2->layout());
183183 if (boxlayout1)
212212#ifndef Q_OS_MAC
213213 vboxLayout4->setSpacing(6);
214214#endif
215 vboxLayout4->setMargin(0);
215 vboxLayout4->setContentsMargins(0, 0, 0, 0);
216216 vboxLayout4->setObjectName(QString::fromUtf8("vboxLayout4"));
217217 vboxLayout4->setObjectName(QString::fromUtf8("unnamed"));
218218 LineEdit1 = new QLineEdit(PreviewWidgetBase);
229229#ifndef Q_OS_MAC
230230 hboxLayout1->setSpacing(6);
231231#endif
232 hboxLayout1->setMargin(0);
232 hboxLayout1->setContentsMargins(0, 0, 0, 0);
233233 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
234234 hboxLayout1->setObjectName(QString::fromUtf8("unnamed"));
235235 SpinBox1 = new QSpinBox(PreviewWidgetBase);
tests/auto/uic/baseline/qpagesetupwidget.ui.h
(1 / 1)
  
7676 QPageSetupWidget->setObjectName(QString::fromUtf8("QPageSetupWidget"));
7777 QPageSetupWidget->resize(416, 488);
7878 gridLayout_3 = new QGridLayout(QPageSetupWidget);
79 gridLayout_3->setMargin(0);
79 gridLayout_3->setContentsMargins(0, 0, 0, 0);
8080 gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3"));
8181 horizontalLayout_4 = new QHBoxLayout();
8282 horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));
tests/auto/uic/baseline/qprintpropertieswidget.ui.h
(1 / 1)
  
4242 QPrintPropertiesWidget->setObjectName(QString::fromUtf8("QPrintPropertiesWidget"));
4343 QPrintPropertiesWidget->resize(396, 288);
4444 verticalLayout_4 = new QVBoxLayout(QPrintPropertiesWidget);
45 verticalLayout_4->setMargin(0);
45 verticalLayout_4->setContentsMargins(0, 0, 0, 0);
4646 verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
4747 tabs = new QTabWidget(QPrintPropertiesWidget);
4848 tabs->setObjectName(QString::fromUtf8("tabs"));
tests/auto/uic/baseline/qprintsettingsoutput.ui.h
(3 / 3)
  
7777 QPrintSettingsOutput->setObjectName(QString::fromUtf8("QPrintSettingsOutput"));
7878 QPrintSettingsOutput->resize(416, 166);
7979 horizontalLayout_2 = new QHBoxLayout(QPrintSettingsOutput);
80 horizontalLayout_2->setMargin(0);
80 horizontalLayout_2->setContentsMargins(0, 0, 0, 0);
8181 horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
8282 tabs = new QTabWidget(QPrintSettingsOutput);
8383 tabs->setObjectName(QString::fromUtf8("tabs"));
9595 gbPrintRange->setSizePolicy(sizePolicy);
9696 _3 = new QVBoxLayout(gbPrintRange);
9797 _3->setSpacing(4);
98 _3->setMargin(6);
98 _3->setContentsMargins(6, 6, 6, 6);
9999 _3->setObjectName(QString::fromUtf8("_3"));
100100 printAll = new QRadioButton(gbPrintRange);
101101 printAll->setObjectName(QString::fromUtf8("printAll"));
107107#ifndef Q_OS_MAC
108108 _4->setSpacing(6);
109109#endif
110 _4->setMargin(0);
110 _4->setContentsMargins(0, 0, 0, 0);
111111 _4->setObjectName(QString::fromUtf8("_4"));
112112 printRange = new QRadioButton(gbPrintRange);
113113 printRange->setObjectName(QString::fromUtf8("printRange"));
tests/auto/uic/baseline/qprintwidget.ui.h
(1 / 1)
  
5353 QPrintWidget->setObjectName(QString::fromUtf8("QPrintWidget"));
5454 QPrintWidget->resize(443, 175);
5555 horizontalLayout_2 = new QHBoxLayout(QPrintWidget);
56 horizontalLayout_2->setMargin(0);
56 horizontalLayout_2->setContentsMargins(0, 0, 0, 0);
5757 horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
5858 printerGroup = new QGroupBox(QPrintWidget);
5959 printerGroup->setObjectName(QString::fromUtf8("printerGroup"));
tests/auto/uic/baseline/qsqlconnectiondialog.ui.h
(4 / 4)
  
6565#ifndef Q_OS_MAC
6666 vboxLayout->setSpacing(6);
6767#endif
68 vboxLayout->setMargin(8);
68 vboxLayout->setContentsMargins(8, 8, 8, 8);
6969 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
7070 connGroupBox = new QGroupBox(QSqlConnectionDialogUi);
7171 connGroupBox->setObjectName(QString::fromUtf8("connGroupBox"));
7373#ifndef Q_OS_MAC
7474 gridLayout->setSpacing(6);
7575#endif
76 gridLayout->setMargin(8);
76 gridLayout->setContentsMargins(8, 8, 8, 8);
7777 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
7878 comboDriver = new QComboBox(connGroupBox);
7979 comboDriver->setObjectName(QString::fromUtf8("comboDriver"));
146146#ifndef Q_OS_MAC
147147 hboxLayout->setSpacing(6);
148148#endif
149 hboxLayout->setMargin(0);
149 hboxLayout->setContentsMargins(0, 0, 0, 0);
150150 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
151151 spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
152152
164164#ifndef Q_OS_MAC
165165 hboxLayout1->setSpacing(6);
166166#endif
167 hboxLayout1->setMargin(0);
167 hboxLayout1->setContentsMargins(0, 0, 0, 0);
168168 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
169169 spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
170170
tests/auto/uic/baseline/qttoolbardialog.ui.h
(3 / 3)
  
5959#ifndef Q_OS_MAC
6060 gridLayout->setSpacing(6);
6161#endif
62 gridLayout->setMargin(8);
62 gridLayout->setContentsMargins(8, 8, 8, 8);
6363 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
6464 actionTree = new QTreeWidget(QtToolBarDialog);
6565 actionTree->setObjectName(QString::fromUtf8("actionTree"));
7575#ifndef Q_OS_MAC
7676 hboxLayout->setSpacing(6);
7777#endif
78 hboxLayout->setMargin(0);
78 hboxLayout->setContentsMargins(0, 0, 0, 0);
7979 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
8080 label_2 = new QLabel(QtToolBarDialog);
8181 label_2->setObjectName(QString::fromUtf8("label_2"));
104104#ifndef Q_OS_MAC
105105 vboxLayout->setSpacing(6);
106106#endif
107 vboxLayout->setMargin(0);
107 vboxLayout->setContentsMargins(0, 0, 0, 0);
108108 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
109109 upButton = new QToolButton(QtToolBarDialog);
110110 upButton->setObjectName(QString::fromUtf8("upButton"));
tests/auto/uic/baseline/querywidget.ui.h
(3 / 3)
  
6262 vboxLayout->setSpacing(6);
6363#endif
6464#ifndef Q_OS_MAC
65 vboxLayout->setMargin(0);
65 vboxLayout->setContentsMargins(0, 0, 0, 0);
6666#endif
6767 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
6868 inputGroupBox = new QGroupBox(centralwidget);
7575 _2->setSpacing(6);
7676#endif
7777#ifndef Q_OS_MAC
78 _2->setMargin(0);
78 _2->setContentsMargins(0, 0, 0, 0);
7979#endif
8080 _2->setObjectName(QString::fromUtf8("_2"));
8181 inputTextEdit = new QTextEdit(inputGroupBox);
120120 _3->setSpacing(6);
121121#endif
122122#ifndef Q_OS_MAC
123 _3->setMargin(0);
123 _3->setContentsMargins(0, 0, 0, 0);
124124#endif
125125 _3->setObjectName(QString::fromUtf8("_3"));
126126 outputTextEdit = new QTextEdit(outputGroupBox);
tests/auto/uic/baseline/remotecontrol.ui.h
(2 / 2)
  
7777 centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
7878 gridLayout = new QGridLayout(centralWidget);
7979 gridLayout->setSpacing(6);
80 gridLayout->setMargin(11);
80 gridLayout->setContentsMargins(11, 11, 11, 11);
8181 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
8282 label = new QLabel(centralWidget);
8383 label->setObjectName(QString::fromUtf8("label"));
107107 actionGroupBox->setEnabled(false);
108108 gridLayout1 = new QGridLayout(actionGroupBox);
109109 gridLayout1->setSpacing(6);
110 gridLayout1->setMargin(11);
110 gridLayout1->setContentsMargins(11, 11, 11, 11);
111111 gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
112112 label_2 = new QLabel(actionGroupBox);
113113 label_2->setObjectName(QString::fromUtf8("label_2"));
tests/auto/uic/baseline/signalslotdialog.ui.h
(3 / 3)
  
5353 SignalSlotDialogClass->resize(617, 535);
5454 vboxLayout = new QVBoxLayout(SignalSlotDialogClass);
5555 vboxLayout->setSpacing(6);
56 vboxLayout->setMargin(11);
56 vboxLayout->setContentsMargins(11, 11, 11, 11);
5757 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
5858 slotGroupBox = new QGroupBox(SignalSlotDialogClass);
5959 slotGroupBox->setObjectName(QString::fromUtf8("slotGroupBox"));
6060 vboxLayout1 = new QVBoxLayout(slotGroupBox);
6161 vboxLayout1->setSpacing(6);
62 vboxLayout1->setMargin(11);
62 vboxLayout1->setContentsMargins(11, 11, 11, 11);
6363 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
6464 slotListView = new QListView(slotGroupBox);
6565 slotListView->setObjectName(QString::fromUtf8("slotListView"));
9393 signalGroupBox->setObjectName(QString::fromUtf8("signalGroupBox"));
9494 vboxLayout2 = new QVBoxLayout(signalGroupBox);
9595 vboxLayout2->setSpacing(6);
96 vboxLayout2->setMargin(11);
96 vboxLayout2->setContentsMargins(11, 11, 11, 11);
9797 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
9898 signalListView = new QListView(signalGroupBox);
9999 signalListView->setObjectName(QString::fromUtf8("signalListView"));
tests/auto/uic/baseline/statistics.ui.h
(2 / 2)
  
9797 Statistics->resize(336, 164);
9898 gridLayout = new QGridLayout(Statistics);
9999 gridLayout->setSpacing(6);
100 gridLayout->setMargin(11);
100 gridLayout->setContentsMargins(11, 11, 11, 11);
101101 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
102102 gridLayout->setObjectName(QString::fromUtf8("unnamed"));
103103 hboxLayout = new QHBoxLayout();
126126 frame4->setFrameShadow(QFrame::Raised);
127127 gridLayout1 = new QGridLayout(frame4);
128128 gridLayout1->setSpacing(6);
129 gridLayout1->setMargin(11);
129 gridLayout1->setContentsMargins(11, 11, 11, 11);
130130 gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
131131 gridLayout1->setObjectName(QString::fromUtf8("unnamed"));
132132 textLabel4 = new QLabel(frame4);
tests/auto/uic/baseline/stringlisteditor.ui.h
(6 / 6)
  
105105 vboxLayout->setSpacing(6);
106106#endif
107107#ifndef Q_OS_MAC
108 vboxLayout->setMargin(9);
108 vboxLayout->setContentsMargins(9, 9, 9, 9);
109109#endif
110110 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
111111 groupBox = new QGroupBox(qdesigner_internal__Dialog);
115115 gridLayout->setSpacing(6);
116116#endif
117117#ifndef Q_OS_MAC
118 gridLayout->setMargin(9);
118 gridLayout->setContentsMargins(9, 9, 9, 9);
119119#endif
120120 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
121121 vboxLayout1 = new QVBoxLayout();
123123 vboxLayout1->setSpacing(6);
124124#endif
125125#ifndef Q_OS_MAC
126 vboxLayout1->setMargin(0);
126 vboxLayout1->setContentsMargins(0, 0, 0, 0);
127127#endif
128128 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
129129 hboxLayout = new QHBoxLayout();
131131 hboxLayout->setSpacing(6);
132132#endif
133133#ifndef Q_OS_MAC
134 hboxLayout->setMargin(0);
134 hboxLayout->setContentsMargins(0, 0, 0, 0);
135135#endif
136136 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
137137 newButton = new QToolButton(groupBox);
157157#ifndef Q_OS_MAC
158158 hboxLayout1->setSpacing(6);
159159#endif
160 hboxLayout1->setMargin(0);
160 hboxLayout1->setContentsMargins(0, 0, 0, 0);
161161 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
162162 label = new QLabel(groupBox);
163163 label->setObjectName(QString::fromUtf8("label"));
179179#ifndef Q_OS_MAC
180180 vboxLayout2->setSpacing(6);
181181#endif
182 vboxLayout2->setMargin(0);
182 vboxLayout2->setContentsMargins(0, 0, 0, 0);
183183 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
184184 spacerItem1 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
185185
tests/auto/uic/baseline/stylesheeteditor.ui.h
(2 / 2)
  
5252 gridLayout->setSpacing(6);
5353#endif
5454#ifndef Q_OS_MAC
55 gridLayout->setMargin(9);
55 gridLayout->setContentsMargins(9, 9, 9, 9);
5656#endif
5757 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
5858 spacerItem = new QSpacerItem(32, 20, QSizePolicy::MinimumExpanding, QSizePolicy::Minimum);
9696#ifndef Q_OS_MAC
9797 hboxLayout->setSpacing(6);
9898#endif
99 hboxLayout->setMargin(0);
99 hboxLayout->setContentsMargins(0, 0, 0, 0);
100100 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
101101 spacerItem3 = new QSpacerItem(321, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
102102
tests/auto/uic/baseline/tabbedbrowser.ui.h
(3 / 3)
  
9696 TabbedBrowser->resize(710, 664);
9797 vboxLayout = new QVBoxLayout(TabbedBrowser);
9898 vboxLayout->setSpacing(0);
99 vboxLayout->setMargin(0);
99 vboxLayout->setContentsMargins(0, 0, 0, 0);
100100 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
101101 tab = new QTabWidget(TabbedBrowser);
102102 tab->setObjectName(QString::fromUtf8("tab"));
106106#ifndef Q_OS_MAC
107107 gridLayout->setSpacing(6);
108108#endif
109 gridLayout->setMargin(8);
109 gridLayout->setContentsMargins(8, 8, 8, 8);
110110 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
111111 tab->addTab(frontpage, QString());
112112
120120#ifndef Q_OS_MAC
121121 hboxLayout->setSpacing(6);
122122#endif
123 hboxLayout->setMargin(0);
123 hboxLayout->setContentsMargins(0, 0, 0, 0);
124124 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
125125 toolClose = new QToolButton(frameFind);
126126 toolClose->setObjectName(QString::fromUtf8("toolClose"));
tests/auto/uic/baseline/tablewidgeteditor.ui.h
(1 / 1)
  
169169 sizePolicy.setHeightForWidth(widget->sizePolicy().hasHeightForWidth());
170170 widget->setSizePolicy(sizePolicy);
171171 verticalLayout = new QVBoxLayout(widget);
172 verticalLayout->setMargin(0);
172 verticalLayout->setContentsMargins(0, 0, 0, 0);
173173 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
174174 columnsBox = new QGroupBox(widget);
175175 columnsBox->setObjectName(QString::fromUtf8("columnsBox"));
tests/auto/uic/baseline/tetrixwindow.ui.h
(2 / 2)
  
5353 vboxLayout->setSpacing(6);
5454#endif
5555#ifndef Q_OS_MAC
56 vboxLayout->setMargin(9);
56 vboxLayout->setContentsMargins(9, 9, 9, 9);
5757#endif
5858 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
5959 gridLayout = new QGridLayout();
6161 gridLayout->setSpacing(6);
6262#endif
6363#ifndef Q_OS_MAC
64 gridLayout->setMargin(0);
64 gridLayout->setContentsMargins(0, 0, 0, 0);
6565#endif
6666 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
6767 startButton = new QPushButton(TetrixWindow);
tests/auto/uic/baseline/textfinder.ui.h
(2 / 2)
  
4747 vboxLayout->setSpacing(6);
4848#endif
4949#ifndef Q_OS_MAC
50 vboxLayout->setMargin(9);
50 vboxLayout->setContentsMargins(9, 9, 9, 9);
5151#endif
5252 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
5353 gridLayout = new QGridLayout();
5555 gridLayout->setSpacing(6);
5656#endif
5757#ifndef Q_OS_MAC
58 gridLayout->setMargin(0);
58 gridLayout->setContentsMargins(0, 0, 0, 0);
5959#endif
6060 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
6161 lineEdit = new QLineEdit(Form);
tests/auto/uic/baseline/topicchooser.ui.h
(2 / 2)
  
4848#ifndef Q_OS_MAC
4949 vboxLayout->setSpacing(6);
5050#endif
51 vboxLayout->setMargin(11);
51 vboxLayout->setContentsMargins(11, 11, 11, 11);
5252 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
5353 vboxLayout->setObjectName(QString::fromUtf8("unnamed"));
5454 label = new QLabel(TopicChooser);
6767#ifndef Q_OS_MAC
6868 hboxLayout->setSpacing(6);
6969#endif
70 hboxLayout->setMargin(0);
70 hboxLayout->setContentsMargins(0, 0, 0, 0);
7171 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
7272 hboxLayout->setObjectName(QString::fromUtf8("unnamed"));
7373 hboxLayout->setContentsMargins(0, 0, 0, 0);
tests/auto/uic/baseline/translatedialog.ui.h
(2 / 2)
  
104104 TranslateDialog->setSizePolicy(sizePolicy);
105105 hboxLayout = new QHBoxLayout(TranslateDialog);
106106 hboxLayout->setSpacing(6);
107 hboxLayout->setMargin(11);
107 hboxLayout->setContentsMargins(11, 11, 11, 11);
108108 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
109109 hboxLayout->setContentsMargins(9, 9, 9, 9);
110110 vboxLayout = new QVBoxLayout();
144144 groupBox->setObjectName(QString::fromUtf8("groupBox"));
145145 vboxLayout1 = new QVBoxLayout(groupBox);
146146 vboxLayout1->setSpacing(6);
147 vboxLayout1->setMargin(11);
147 vboxLayout1->setContentsMargins(11, 11, 11, 11);
148148 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
149149 ckMatchCase = new QCheckBox(groupBox);
150150 ckMatchCase->setObjectName(QString::fromUtf8("ckMatchCase"));
tests/auto/uic/baseline/translationsettings.ui.h
(2 / 2)
  
4747 vboxLayout->setSpacing(6);
4848#endif
4949#ifndef Q_OS_MAC
50 vboxLayout->setMargin(9);
50 vboxLayout->setContentsMargins(9, 9, 9, 9);
5151#endif
5252 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
5353 groupBox = new QGroupBox(TranslationSettings);
5757 gridLayout->setSpacing(6);
5858#endif
5959#ifndef Q_OS_MAC
60 gridLayout->setMargin(9);
60 gridLayout->setContentsMargins(9, 9, 9, 9);
6161#endif
6262 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
6363 cbLanguageList = new QComboBox(groupBox);
tests/auto/uic/baseline/trpreviewtool.ui.h
(1 / 1)
  
142142 dockWidgetContents->setObjectName(QString::fromUtf8("dockWidgetContents"));
143143 vboxLayout = new QVBoxLayout(dockWidgetContents);
144144 vboxLayout->setSpacing(0);
145 vboxLayout->setMargin(0);
145 vboxLayout->setContentsMargins(0, 0, 0, 0);
146146 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
147147 viewForms = new QListView(dockWidgetContents);
148148 viewForms->setObjectName(QString::fromUtf8("viewForms"));
tests/auto/uic/baseline/validators.ui.h
(11 / 11)
  
8787 vboxLayout->setSpacing(6);
8888#endif
8989#ifndef Q_OS_MAC
90 vboxLayout->setMargin(9);
90 vboxLayout->setContentsMargins(9, 9, 9, 9);
9191#endif
9292 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
9393 hboxLayout = new QHBoxLayout();
9595 hboxLayout->setSpacing(6);
9696#endif
9797#ifndef Q_OS_MAC
98 hboxLayout->setMargin(0);
98 hboxLayout->setContentsMargins(0, 0, 0, 0);
9999#endif
100100 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
101101 localeSelector = new LocaleSelector(ValidatorsForm);
117117 vboxLayout1->setSpacing(6);
118118#endif
119119#ifndef Q_OS_MAC
120 vboxLayout1->setMargin(9);
120 vboxLayout1->setContentsMargins(9, 9, 9, 9);
121121#endif
122122 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
123123 hboxLayout1 = new QHBoxLayout();
125125 hboxLayout1->setSpacing(6);
126126#endif
127127#ifndef Q_OS_MAC
128 hboxLayout1->setMargin(0);
128 hboxLayout1->setContentsMargins(0, 0, 0, 0);
129129#endif
130130 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
131131 gridLayout = new QGridLayout();
133133 gridLayout->setSpacing(6);
134134#endif
135135#ifndef Q_OS_MAC
136 gridLayout->setMargin(0);
136 gridLayout->setContentsMargins(0, 0, 0, 0);
137137#endif
138138 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
139139 label = new QLabel(groupBox);
182182 vboxLayout2->setSpacing(6);
183183#endif
184184#ifndef Q_OS_MAC
185 vboxLayout2->setMargin(9);
185 vboxLayout2->setContentsMargins(9, 9, 9, 9);
186186#endif
187187 vboxLayout2->setObjectName(QString::fromUtf8("vboxLayout2"));
188188 ledWidget = new LEDWidget(frame);
227227 vboxLayout3->setSpacing(6);
228228#endif
229229#ifndef Q_OS_MAC
230 vboxLayout3->setMargin(9);
230 vboxLayout3->setContentsMargins(9, 9, 9, 9);
231231#endif
232232 vboxLayout3->setObjectName(QString::fromUtf8("vboxLayout3"));
233233 hboxLayout2 = new QHBoxLayout();
235235 hboxLayout2->setSpacing(6);
236236#endif
237237#ifndef Q_OS_MAC
238 hboxLayout2->setMargin(0);
238 hboxLayout2->setContentsMargins(0, 0, 0, 0);
239239#endif
240240 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
241241 gridLayout1 = new QGridLayout();
243243 gridLayout1->setSpacing(6);
244244#endif
245245#ifndef Q_OS_MAC
246 gridLayout1->setMargin(0);
246 gridLayout1->setContentsMargins(0, 0, 0, 0);
247247#endif
248248 gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
249249 label_3 = new QLabel(groupBox_2);
313313 vboxLayout4->setSpacing(6);
314314#endif
315315#ifndef Q_OS_MAC
316 vboxLayout4->setMargin(9);
316 vboxLayout4->setContentsMargins(9, 9, 9, 9);
317317#endif
318318 vboxLayout4->setObjectName(QString::fromUtf8("vboxLayout4"));
319319 doubleLedWidget = new LEDWidget(frame_2);
354354#ifndef Q_OS_MAC
355355 hboxLayout3->setSpacing(6);
356356#endif
357 hboxLayout3->setMargin(0);
357 hboxLayout3->setContentsMargins(0, 0, 0, 0);
358358 hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
359359 spacerItem4 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
360360

Comments

Add a new comment:

Login or create an account to post a comment

Add your comment