-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRoomArrangerGui_final.py
485 lines (479 loc) · 31.2 KB
/
RoomArrangerGui_final.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'Gui5.ui'
#
# Created: Wed May 9 22:40:58 2012
# by: pyside-uic 0.2.13 running on PySide 1.1.0
#
# WARNING! All changes made in this file will be lost!
from PySide import QtCore, QtGui
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(800, 748)
self.centralwidget = QtGui.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.layoutWidget = QtGui.QWidget(self.centralwidget)
self.layoutWidget.setGeometry(QtCore.QRect(0, 0, 633, 665))
self.layoutWidget.setObjectName("layoutWidget")
self.verticalLayout_9 = QtGui.QVBoxLayout(self.layoutWidget)
self.verticalLayout_9.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_9.setObjectName("verticalLayout_9")
self.verticalLayout_8 = QtGui.QVBoxLayout()
self.verticalLayout_8.setObjectName("verticalLayout_8")
self.horizontalLayout = QtGui.QHBoxLayout()
self.horizontalLayout.setObjectName("horizontalLayout")
self.verticalLayout_8.addLayout(self.horizontalLayout)
self.gridLayout = QtGui.QGridLayout()
self.gridLayout.setObjectName("gridLayout")
self.MicrowaveButton = QtGui.QPushButton(self.layoutWidget)
self.MicrowaveButton.setObjectName("MicrowaveButton")
self.gridLayout.addWidget(self.MicrowaveButton, 0, 3, 1, 1)
self.verticalLayout_10 = QtGui.QVBoxLayout()
self.verticalLayout_10.setObjectName("verticalLayout_10")
self.label_12 = QtGui.QLabel(self.layoutWidget)
self.label_12.setObjectName("label_12")
self.verticalLayout_10.addWidget(self.label_12)
self.DeskWidth = QtGui.QSpinBox(self.layoutWidget)
self.DeskWidth.setMaximum(10)
self.DeskWidth.setObjectName("DeskWidth")
self.verticalLayout_10.addWidget(self.DeskWidth)
self.label_13 = QtGui.QLabel(self.layoutWidget)
self.label_13.setObjectName("label_13")
self.verticalLayout_10.addWidget(self.label_13)
self.DeskLength = QtGui.QSpinBox(self.layoutWidget)
self.DeskLength.setMaximum(10)
self.DeskLength.setObjectName("DeskLength")
self.verticalLayout_10.addWidget(self.DeskLength)
self.label_14 = QtGui.QLabel(self.layoutWidget)
self.label_14.setObjectName("label_14")
self.verticalLayout_10.addWidget(self.label_14)
self.DeskHeight = QtGui.QSpinBox(self.layoutWidget)
self.DeskHeight.setMaximum(10)
self.DeskHeight.setObjectName("DeskHeight")
self.verticalLayout_10.addWidget(self.DeskHeight)
self.gridLayout.addLayout(self.verticalLayout_10, 1, 5, 1, 1)
self.verticalLayout_5 = QtGui.QVBoxLayout()
self.verticalLayout_5.setObjectName("verticalLayout_5")
self.label_21 = QtGui.QLabel(self.layoutWidget)
self.label_21.setObjectName("label_21")
self.verticalLayout_5.addWidget(self.label_21)
self.TableWidth = QtGui.QSpinBox(self.layoutWidget)
self.TableWidth.setMaximum(10)
self.TableWidth.setObjectName("TableWidth")
self.verticalLayout_5.addWidget(self.TableWidth)
self.label_22 = QtGui.QLabel(self.layoutWidget)
self.label_22.setObjectName("label_22")
self.verticalLayout_5.addWidget(self.label_22)
self.TableLength = QtGui.QSpinBox(self.layoutWidget)
self.TableLength.setMaximum(10)
self.TableLength.setObjectName("TableLength")
self.verticalLayout_5.addWidget(self.TableLength)
self.label_23 = QtGui.QLabel(self.layoutWidget)
self.label_23.setObjectName("label_23")
self.verticalLayout_5.addWidget(self.label_23)
self.TableHeight = QtGui.QSpinBox(self.layoutWidget)
self.TableHeight.setMaximum(10)
self.TableHeight.setObjectName("TableHeight")
self.verticalLayout_5.addWidget(self.TableHeight)
self.gridLayout.addLayout(self.verticalLayout_5, 3, 1, 1, 1)
self.verticalLayout_3 = QtGui.QVBoxLayout()
self.verticalLayout_3.setObjectName("verticalLayout_3")
self.label_18 = QtGui.QLabel(self.layoutWidget)
self.label_18.setObjectName("label_18")
self.verticalLayout_3.addWidget(self.label_18)
self.MIcrowaveWidth = QtGui.QSpinBox(self.layoutWidget)
self.MIcrowaveWidth.setMaximum(10)
self.MIcrowaveWidth.setObjectName("MIcrowaveWidth")
self.verticalLayout_3.addWidget(self.MIcrowaveWidth)
self.label_19 = QtGui.QLabel(self.layoutWidget)
self.label_19.setObjectName("label_19")
self.verticalLayout_3.addWidget(self.label_19)
self.MicrowaveLength = QtGui.QSpinBox(self.layoutWidget)
self.MicrowaveLength.setMaximum(10)
self.MicrowaveLength.setObjectName("MicrowaveLength")
self.verticalLayout_3.addWidget(self.MicrowaveLength)
self.label_20 = QtGui.QLabel(self.layoutWidget)
self.label_20.setObjectName("label_20")
self.verticalLayout_3.addWidget(self.label_20)
self.MicrowaveHeight = QtGui.QSpinBox(self.layoutWidget)
self.MicrowaveHeight.setMaximum(10)
self.MicrowaveHeight.setObjectName("MicrowaveHeight")
self.verticalLayout_3.addWidget(self.MicrowaveHeight)
self.gridLayout.addLayout(self.verticalLayout_3, 1, 3, 1, 1)
self.BookshelfButton = QtGui.QPushButton(self.layoutWidget)
self.BookshelfButton.setObjectName("BookshelfButton")
self.gridLayout.addWidget(self.BookshelfButton, 2, 0, 1, 1)
self.TableButton = QtGui.QPushButton(self.layoutWidget)
self.TableButton.setObjectName("TableButton")
self.gridLayout.addWidget(self.TableButton, 2, 1, 1, 1)
self.WallLightButton = QtGui.QPushButton(self.layoutWidget)
self.WallLightButton.setObjectName("WallLightButton")
self.gridLayout.addWidget(self.WallLightButton, 2, 3, 1, 1)
self.verticalLayout_4 = QtGui.QVBoxLayout()
self.verticalLayout_4.setObjectName("verticalLayout_4")
self.label_9 = QtGui.QLabel(self.layoutWidget)
self.label_9.setObjectName("label_9")
self.verticalLayout_4.addWidget(self.label_9)
self.BookshelfWidth = QtGui.QSpinBox(self.layoutWidget)
self.BookshelfWidth.setMaximum(10)
self.BookshelfWidth.setObjectName("BookshelfWidth")
self.verticalLayout_4.addWidget(self.BookshelfWidth)
self.label_10 = QtGui.QLabel(self.layoutWidget)
self.label_10.setObjectName("label_10")
self.verticalLayout_4.addWidget(self.label_10)
self.BookshelfLength = QtGui.QSpinBox(self.layoutWidget)
self.BookshelfLength.setMaximum(10)
self.BookshelfLength.setObjectName("BookshelfLength")
self.verticalLayout_4.addWidget(self.BookshelfLength)
self.label_11 = QtGui.QLabel(self.layoutWidget)
self.label_11.setObjectName("label_11")
self.verticalLayout_4.addWidget(self.label_11)
self.BookshelfHeight = QtGui.QSpinBox(self.layoutWidget)
self.BookshelfHeight.setMaximum(10)
self.BookshelfHeight.setObjectName("BookshelfHeight")
self.verticalLayout_4.addWidget(self.BookshelfHeight)
self.gridLayout.addLayout(self.verticalLayout_4, 3, 0, 1, 1)
self.verticalLayout_6 = QtGui.QVBoxLayout()
self.verticalLayout_6.setObjectName("verticalLayout_6")
self.label_34 = QtGui.QLabel(self.layoutWidget)
self.label_34.setObjectName("label_34")
self.verticalLayout_6.addWidget(self.label_34)
self.WallLightHeight = QtGui.QSpinBox(self.layoutWidget)
self.WallLightHeight.setMaximum(10)
self.WallLightHeight.setObjectName("WallLightHeight")
self.verticalLayout_6.addWidget(self.WallLightHeight)
self.gridLayout.addLayout(self.verticalLayout_6, 3, 3, 1, 1)
self.BedButton = QtGui.QPushButton(self.layoutWidget)
self.BedButton.setObjectName("BedButton")
self.gridLayout.addWidget(self.BedButton, 0, 0, 1, 1)
self.PosterButton = QtGui.QPushButton(self.layoutWidget)
self.PosterButton.setObjectName("PosterButton")
self.gridLayout.addWidget(self.PosterButton, 0, 1, 1, 1)
self.verticalLayout_12 = QtGui.QVBoxLayout()
self.verticalLayout_12.setObjectName("verticalLayout_12")
self.gridLayout.addLayout(self.verticalLayout_12, 3, 5, 1, 1)
self.verticalLayout_13 = QtGui.QVBoxLayout()
self.verticalLayout_13.setObjectName("verticalLayout_13")
self.label_29 = QtGui.QLabel(self.layoutWidget)
self.label_29.setObjectName("label_29")
self.verticalLayout_13.addWidget(self.label_29)
self.LampHeight = QtGui.QSpinBox(self.layoutWidget)
self.LampHeight.setMaximum(10)
self.LampHeight.setObjectName("LampHeight")
self.verticalLayout_13.addWidget(self.LampHeight)
self.gridLayout.addLayout(self.verticalLayout_13, 1, 4, 1, 1)
self.verticalLayout = QtGui.QVBoxLayout()
self.verticalLayout.setObjectName("verticalLayout")
self.label_30 = QtGui.QLabel(self.layoutWidget)
self.label_30.setObjectName("label_30")
self.verticalLayout.addWidget(self.label_30)
self.BedWidth = QtGui.QSpinBox(self.layoutWidget)
self.BedWidth.setMaximum(10)
self.BedWidth.setObjectName("BedWidth")
self.verticalLayout.addWidget(self.BedWidth)
self.label_31 = QtGui.QLabel(self.layoutWidget)
self.label_31.setObjectName("label_31")
self.verticalLayout.addWidget(self.label_31)
self.BedLength = QtGui.QSpinBox(self.layoutWidget)
self.BedLength.setMaximum(10)
self.BedLength.setObjectName("BedLength")
self.verticalLayout.addWidget(self.BedLength)
self.label_32 = QtGui.QLabel(self.layoutWidget)
self.label_32.setObjectName("label_32")
self.verticalLayout.addWidget(self.label_32)
self.BedHeight = QtGui.QSpinBox(self.layoutWidget)
self.BedHeight.setMaximum(10)
self.BedHeight.setObjectName("BedHeight")
self.verticalLayout.addWidget(self.BedHeight)
self.gridLayout.addLayout(self.verticalLayout, 1, 0, 1, 1)
self.verticalLayout_2 = QtGui.QVBoxLayout()
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.label_27 = QtGui.QLabel(self.layoutWidget)
self.label_27.setObjectName("label_27")
self.verticalLayout_2.addWidget(self.label_27)
self.PosterWidth = QtGui.QSpinBox(self.layoutWidget)
self.PosterWidth.setMaximum(10)
self.PosterWidth.setObjectName("PosterWidth")
self.verticalLayout_2.addWidget(self.PosterWidth)
self.label_28 = QtGui.QLabel(self.layoutWidget)
self.label_28.setObjectName("label_28")
self.verticalLayout_2.addWidget(self.label_28)
self.PosterLength = QtGui.QSpinBox(self.layoutWidget)
self.PosterLength.setMaximum(10)
self.PosterLength.setObjectName("PosterLength")
self.verticalLayout_2.addWidget(self.PosterLength)
self.label_6 = QtGui.QLabel(self.layoutWidget)
self.label_6.setObjectName("label_6")
self.verticalLayout_2.addWidget(self.label_6)
self.PosterBox = QtGui.QComboBox(self.layoutWidget)
self.PosterBox.setObjectName("PosterBox")
self.PosterBox.addItem("")
self.PosterBox.addItem("")
self.PosterBox.addItem("")
self.verticalLayout_2.addWidget(self.PosterBox)
self.gridLayout.addLayout(self.verticalLayout_2, 1, 1, 1, 1)
self.verticalLayout_7 = QtGui.QVBoxLayout()
self.verticalLayout_7.setObjectName("verticalLayout_7")
self.label_3 = QtGui.QLabel(self.layoutWidget)
self.label_3.setObjectName("label_3")
self.verticalLayout_7.addWidget(self.label_3)
self.ClosetWidth = QtGui.QSpinBox(self.layoutWidget)
self.ClosetWidth.setMaximum(10)
self.ClosetWidth.setObjectName("ClosetWidth")
self.verticalLayout_7.addWidget(self.ClosetWidth)
self.label_4 = QtGui.QLabel(self.layoutWidget)
self.label_4.setObjectName("label_4")
self.verticalLayout_7.addWidget(self.label_4)
self.ClosetLength = QtGui.QSpinBox(self.layoutWidget)
self.ClosetLength.setMaximum(10)
self.ClosetLength.setObjectName("ClosetLength")
self.verticalLayout_7.addWidget(self.ClosetLength)
self.label_5 = QtGui.QLabel(self.layoutWidget)
self.label_5.setObjectName("label_5")
self.verticalLayout_7.addWidget(self.label_5)
self.ClosetHeight = QtGui.QSpinBox(self.layoutWidget)
self.ClosetHeight.setMaximum(10)
self.ClosetHeight.setObjectName("ClosetHeight")
self.verticalLayout_7.addWidget(self.ClosetHeight)
self.gridLayout.addLayout(self.verticalLayout_7, 1, 2, 1, 1)
self.verticalLayout_15 = QtGui.QVBoxLayout()
self.verticalLayout_15.setObjectName("verticalLayout_15")
self.label_36 = QtGui.QLabel(self.layoutWidget)
self.label_36.setObjectName("label_36")
self.verticalLayout_15.addWidget(self.label_36)
self.RefrigeratorHeight = QtGui.QSpinBox(self.layoutWidget)
self.RefrigeratorHeight.setMaximum(10)
self.RefrigeratorHeight.setObjectName("RefrigeratorHeight")
self.verticalLayout_15.addWidget(self.RefrigeratorHeight)
self.RefrigeratorLength = QtGui.QSpinBox(self.layoutWidget)
self.RefrigeratorLength.setMaximum(10)
self.RefrigeratorLength.setObjectName("RefrigeratorLength")
self.verticalLayout_15.addWidget(self.RefrigeratorLength)
self.RefrigeratorWidth = QtGui.QSpinBox(self.layoutWidget)
self.RefrigeratorWidth.setMaximum(10)
self.RefrigeratorWidth.setObjectName("RefrigeratorWidth")
self.verticalLayout_15.addWidget(self.RefrigeratorWidth)
self.label_35 = QtGui.QLabel(self.layoutWidget)
self.label_35.setObjectName("label_35")
self.verticalLayout_15.addWidget(self.label_35)
self.label_37 = QtGui.QLabel(self.layoutWidget)
self.label_37.setObjectName("label_37")
self.verticalLayout_15.addWidget(self.label_37)
self.gridLayout.addLayout(self.verticalLayout_15, 3, 4, 1, 1)
self.ChairButton = QtGui.QPushButton(self.layoutWidget)
self.ChairButton.setObjectName("ChairButton")
self.gridLayout.addWidget(self.ChairButton, 2, 2, 1, 1)
self.ClosetButton = QtGui.QPushButton(self.layoutWidget)
self.ClosetButton.setObjectName("ClosetButton")
self.gridLayout.addWidget(self.ClosetButton, 0, 2, 1, 1)
self.DeskButton = QtGui.QPushButton(self.layoutWidget)
self.DeskButton.setObjectName("DeskButton")
self.gridLayout.addWidget(self.DeskButton, 0, 5, 1, 1)
self.verticalLayout_14 = QtGui.QVBoxLayout()
self.verticalLayout_14.setObjectName("verticalLayout_14")
self.label_24 = QtGui.QLabel(self.layoutWidget)
self.label_24.setObjectName("label_24")
self.verticalLayout_14.addWidget(self.label_24)
self.ChairWidth = QtGui.QSpinBox(self.layoutWidget)
self.ChairWidth.setMaximum(10)
self.ChairWidth.setObjectName("ChairWidth")
self.verticalLayout_14.addWidget(self.ChairWidth)
self.label_25 = QtGui.QLabel(self.layoutWidget)
self.label_25.setObjectName("label_25")
self.verticalLayout_14.addWidget(self.label_25)
self.ChairLength = QtGui.QSpinBox(self.layoutWidget)
self.ChairLength.setMaximum(10)
self.ChairLength.setObjectName("ChairLength")
self.verticalLayout_14.addWidget(self.ChairLength)
self.label_26 = QtGui.QLabel(self.layoutWidget)
self.label_26.setObjectName("label_26")
self.verticalLayout_14.addWidget(self.label_26)
self.ChairHeight = QtGui.QSpinBox(self.layoutWidget)
self.ChairHeight.setMaximum(10)
self.ChairHeight.setObjectName("ChairHeight")
self.verticalLayout_14.addWidget(self.ChairHeight)
self.gridLayout.addLayout(self.verticalLayout_14, 3, 2, 1, 1)
self.LampButton = QtGui.QPushButton(self.layoutWidget)
self.LampButton.setObjectName("LampButton")
self.gridLayout.addWidget(self.LampButton, 0, 4, 1, 1)
self.MaterialsLabel = QtGui.QLabel(self.layoutWidget)
self.MaterialsLabel.setObjectName("MaterialsLabel")
self.gridLayout.addWidget(self.MaterialsLabel, 5, 0, 1, 1)
self.RefrigeratorButton = QtGui.QPushButton(self.layoutWidget)
self.RefrigeratorButton.setObjectName("RefrigeratorButton")
self.gridLayout.addWidget(self.RefrigeratorButton, 2, 4, 1, 1)
self.MaterialBox = QtGui.QComboBox(self.layoutWidget)
self.MaterialBox.setObjectName("MaterialBox")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.MaterialBox.addItem("")
self.gridLayout.addWidget(self.MaterialBox, 5, 1, 1, 1)
self.OlinChairButton = QtGui.QPushButton(self.layoutWidget)
self.OlinChairButton.setObjectName("OlinChairButton")
self.gridLayout.addWidget(self.OlinChairButton, 2, 5, 1, 1)
self.verticalLayout_8.addLayout(self.gridLayout)
self.verticalLayout_9.addLayout(self.verticalLayout_8)
self.gridLayout_2 = QtGui.QGridLayout()
self.gridLayout_2.setObjectName("gridLayout_2")
self.label_40 = QtGui.QLabel(self.layoutWidget)
self.label_40.setObjectName("label_40")
self.gridLayout_2.addWidget(self.label_40, 6, 2, 1, 1)
self.label_43 = QtGui.QLabel(self.layoutWidget)
self.label_43.setObjectName("label_43")
self.gridLayout_2.addWidget(self.label_43, 9, 2, 1, 1)
self.label_41 = QtGui.QLabel(self.layoutWidget)
self.label_41.setObjectName("label_41")
self.gridLayout_2.addWidget(self.label_41, 7, 2, 1, 1)
self.label_2 = QtGui.QLabel(self.layoutWidget)
self.label_2.setObjectName("label_2")
self.gridLayout_2.addWidget(self.label_2, 0, 1, 1, 1)
self.label = QtGui.QLabel(self.layoutWidget)
self.label.setObjectName("label")
self.gridLayout_2.addWidget(self.label, 4, 2, 1, 1)
self.label_42 = QtGui.QLabel(self.layoutWidget)
self.label_42.setObjectName("label_42")
self.gridLayout_2.addWidget(self.label_42, 8, 2, 1, 1)
self.label_7 = QtGui.QLabel(self.layoutWidget)
self.label_7.setObjectName("label_7")
self.gridLayout_2.addWidget(self.label_7, 0, 2, 1, 1)
self.label_17 = QtGui.QLabel(self.layoutWidget)
self.label_17.setObjectName("label_17")
self.gridLayout_2.addWidget(self.label_17, 6, 1, 1, 1)
self.label_39 = QtGui.QLabel(self.layoutWidget)
self.label_39.setObjectName("label_39")
self.gridLayout_2.addWidget(self.label_39, 5, 2, 1, 1)
self.label_8 = QtGui.QLabel(self.layoutWidget)
self.label_8.setObjectName("label_8")
self.gridLayout_2.addWidget(self.label_8, 5, 1, 1, 1)
self.label_38 = QtGui.QLabel(self.layoutWidget)
self.label_38.setObjectName("label_38")
self.gridLayout_2.addWidget(self.label_38, 9, 1, 1, 1)
self.label_33 = QtGui.QLabel(self.layoutWidget)
self.label_33.setObjectName("label_33")
self.gridLayout_2.addWidget(self.label_33, 7, 1, 1, 1)
self.label_15 = QtGui.QLabel(self.layoutWidget)
self.label_15.setObjectName("label_15")
self.gridLayout_2.addWidget(self.label_15, 4, 1, 1, 1)
self.label_16 = QtGui.QLabel(self.layoutWidget)
self.label_16.setObjectName("label_16")
self.gridLayout_2.addWidget(self.label_16, 8, 1, 1, 1)
self.line = QtGui.QFrame(self.layoutWidget)
self.line.setFrameShape(QtGui.QFrame.HLine)
self.line.setFrameShadow(QtGui.QFrame.Sunken)
self.line.setObjectName("line")
self.gridLayout_2.addWidget(self.line, 1, 1, 1, 1)
self.label_44 = QtGui.QLabel(self.layoutWidget)
self.label_44.setObjectName("label_44")
self.gridLayout_2.addWidget(self.label_44, 2, 1, 1, 1)
self.label_45 = QtGui.QLabel(self.layoutWidget)
self.label_45.setObjectName("label_45")
self.gridLayout_2.addWidget(self.label_45, 2, 2, 1, 1)
self.label_46 = QtGui.QLabel(self.layoutWidget)
self.label_46.setObjectName("label_46")
self.gridLayout_2.addWidget(self.label_46, 3, 1, 1, 1)
self.label_47 = QtGui.QLabel(self.layoutWidget)
self.label_47.setObjectName("label_47")
self.gridLayout_2.addWidget(self.label_47, 3, 2, 1, 1)
self.verticalLayout_9.addLayout(self.gridLayout_2)
MainWindow.setCentralWidget(self.centralwidget)
self.menubar = QtGui.QMenuBar(MainWindow)
self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 25))
self.menubar.setObjectName("menubar")
MainWindow.setMenuBar(self.menubar)
self.statusbar = QtGui.QStatusBar(MainWindow)
self.statusbar.setObjectName("statusbar")
MainWindow.setStatusBar(self.statusbar)
self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def retranslateUi(self, MainWindow):
MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8))
self.MicrowaveButton.setText(QtGui.QApplication.translate("MainWindow", "Microwave", None, QtGui.QApplication.UnicodeUTF8))
self.label_12.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_13.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_14.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.label_21.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_22.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_23.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.label_18.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_19.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_20.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.BookshelfButton.setText(QtGui.QApplication.translate("MainWindow", "Bookshelf", None, QtGui.QApplication.UnicodeUTF8))
self.TableButton.setText(QtGui.QApplication.translate("MainWindow", "Table", None, QtGui.QApplication.UnicodeUTF8))
self.WallLightButton.setText(QtGui.QApplication.translate("MainWindow", "Wall Light", None, QtGui.QApplication.UnicodeUTF8))
self.label_9.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_10.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_11.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.label_34.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.BedButton.setText(QtGui.QApplication.translate("MainWindow", "Bed", None, QtGui.QApplication.UnicodeUTF8))
self.PosterButton.setText(QtGui.QApplication.translate("MainWindow", "Poster", None, QtGui.QApplication.UnicodeUTF8))
self.label_29.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.label_30.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_31.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_32.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.label_27.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_28.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_6.setText(QtGui.QApplication.translate("MainWindow", "Poster Type", None, QtGui.QApplication.UnicodeUTF8))
self.PosterBox.setItemText(0, QtGui.QApplication.translate("MainWindow", "Meta Cube", None, QtGui.QApplication.UnicodeUTF8))
self.PosterBox.setItemText(1, QtGui.QApplication.translate("MainWindow", "Matt Huang Consulting", None, QtGui.QApplication.UnicodeUTF8))
self.PosterBox.setItemText(2, QtGui.QApplication.translate("MainWindow", "Flower Poster", None, QtGui.QApplication.UnicodeUTF8))
self.label_3.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_4.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_5.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.label_36.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_35.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_37.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.ChairButton.setText(QtGui.QApplication.translate("MainWindow", "Chair", None, QtGui.QApplication.UnicodeUTF8))
self.ClosetButton.setText(QtGui.QApplication.translate("MainWindow", "Closet", None, QtGui.QApplication.UnicodeUTF8))
self.DeskButton.setText(QtGui.QApplication.translate("MainWindow", "Desk", None, QtGui.QApplication.UnicodeUTF8))
self.label_24.setText(QtGui.QApplication.translate("MainWindow", "Width", None, QtGui.QApplication.UnicodeUTF8))
self.label_25.setText(QtGui.QApplication.translate("MainWindow", "Length", None, QtGui.QApplication.UnicodeUTF8))
self.label_26.setText(QtGui.QApplication.translate("MainWindow", "Height", None, QtGui.QApplication.UnicodeUTF8))
self.LampButton.setText(QtGui.QApplication.translate("MainWindow", "Lamp", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialsLabel.setText(QtGui.QApplication.translate("MainWindow", "Materials", None, QtGui.QApplication.UnicodeUTF8))
self.RefrigeratorButton.setText(QtGui.QApplication.translate("MainWindow", "Refrigerator", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(0, QtGui.QApplication.translate("MainWindow", "Default", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(1, QtGui.QApplication.translate("MainWindow", "Plastic", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(2, QtGui.QApplication.translate("MainWindow", "Earth", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(3, QtGui.QApplication.translate("MainWindow", "Diffuse", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(4, QtGui.QApplication.translate("MainWindow", "Emissive", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(5, QtGui.QApplication.translate("MainWindow", "Unshaded", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(6, QtGui.QApplication.translate("MainWindow", "Shiny", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(7, QtGui.QApplication.translate("MainWindow", "Chrome", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(8, QtGui.QApplication.translate("MainWindow", "Blazed", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(9, QtGui.QApplication.translate("MainWindow", "Earth with Clouds", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(10, QtGui.QApplication.translate("MainWindow", "Brick", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(11, QtGui.QApplication.translate("MainWindow", "Silver", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(12, QtGui.QApplication.translate("MainWindow", "Wood", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(13, QtGui.QApplication.translate("MainWindow", "Rough", None, QtGui.QApplication.UnicodeUTF8))
self.MaterialBox.setItemText(14, QtGui.QApplication.translate("MainWindow", "Marble", None, QtGui.QApplication.UnicodeUTF8))
self.OlinChairButton.setText(QtGui.QApplication.translate("MainWindow", "Olin Chair", None, QtGui.QApplication.UnicodeUTF8))
self.label_40.setText(QtGui.QApplication.translate("MainWindow", "Move item horizontally/rotate view", None, QtGui.QApplication.UnicodeUTF8))
self.label_43.setText(QtGui.QApplication.translate("MainWindow", "Rotate Item", None, QtGui.QApplication.UnicodeUTF8))
self.label_41.setText(QtGui.QApplication.translate("MainWindow", "Snap to View", None, QtGui.QApplication.UnicodeUTF8))
self.label_2.setText(QtGui.QApplication.translate("MainWindow", "Key Board Shortcuts", None, QtGui.QApplication.UnicodeUTF8))
self.label.setText(QtGui.QApplication.translate("MainWindow", "Snap selected/all item(s) to grid", None, QtGui.QApplication.UnicodeUTF8))
self.label_42.setText(QtGui.QApplication.translate("MainWindow", "Move Item", None, QtGui.QApplication.UnicodeUTF8))
self.label_7.setText(QtGui.QApplication.translate("MainWindow", "Action", None, QtGui.QApplication.UnicodeUTF8))
self.label_17.setText(QtGui.QApplication.translate("MainWindow", "Arrow (Item Selected/No Item Selected)", None, QtGui.QApplication.UnicodeUTF8))
self.label_39.setText(QtGui.QApplication.translate("MainWindow", "Move selected item/all items to the floor", None, QtGui.QApplication.UnicodeUTF8))
self.label_8.setText(QtGui.QApplication.translate("MainWindow", "G (Item Selected/No Item Selected)", None, QtGui.QApplication.UnicodeUTF8))
self.label_38.setText(QtGui.QApplication.translate("MainWindow", "Alt+Click+Drag", None, QtGui.QApplication.UnicodeUTF8))
self.label_33.setText(QtGui.QApplication.translate("MainWindow", "1,2,3,4,5", None, QtGui.QApplication.UnicodeUTF8))
self.label_15.setText(QtGui.QApplication.translate("MainWindow", "S (Item Selected/No Item Selected)", None, QtGui.QApplication.UnicodeUTF8))
self.label_16.setText(QtGui.QApplication.translate("MainWindow", "Click+Drag", None, QtGui.QApplication.UnicodeUTF8))
self.label_44.setText(QtGui.QApplication.translate("MainWindow", "Right Click", None, QtGui.QApplication.UnicodeUTF8))
self.label_45.setText(QtGui.QApplication.translate("MainWindow", "Rotate Window", None, QtGui.QApplication.UnicodeUTF8))
self.label_46.setText(QtGui.QApplication.translate("MainWindow", "Middle Click", None, QtGui.QApplication.UnicodeUTF8))
self.label_47.setText(QtGui.QApplication.translate("MainWindow", "Zoom", None, QtGui.QApplication.UnicodeUTF8))