molde 0.1.0__py3-none-any.whl → 0.1.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. molde/__init__.py +6 -5
  2. molde/__main__.py +74 -63
  3. molde/actors/__init__.py +5 -4
  4. molde/actors/common_symbols_actor.py +148 -0
  5. molde/actors/ghost_actor.py +12 -12
  6. molde/actors/lines_actor.py +31 -31
  7. molde/actors/round_points_actor.py +7 -7
  8. molde/actors/square_points_actor.py +32 -32
  9. molde/colors/__init__.py +1 -1
  10. molde/colors/color.py +120 -120
  11. molde/colors/color_names.py +124 -124
  12. molde/interactor_styles/__init__.py +2 -2
  13. molde/interactor_styles/arcball_camera_style.py +288 -272
  14. molde/interactor_styles/box_selection_style.py +70 -70
  15. molde/main_window.ui +864 -0
  16. molde/pickers/__init__.py +2 -2
  17. molde/pickers/cell_area_picker.py +61 -61
  18. molde/pickers/cell_property_area_picker.py +84 -84
  19. molde/poly_data/__init__.py +19 -2
  20. molde/poly_data/arrows.py +54 -0
  21. molde/poly_data/complex_shapes.py +26 -0
  22. molde/poly_data/lines_data.py +23 -23
  23. molde/poly_data/simple_shapes.py +22 -0
  24. molde/poly_data/vertices_data.py +24 -24
  25. molde/render_widgets/__init__.py +2 -2
  26. molde/render_widgets/animated_render_widget.py +164 -164
  27. molde/render_widgets/common_render_widget.py +433 -433
  28. molde/stylesheets/__init__.py +119 -119
  29. molde/stylesheets/common.qss +16 -16
  30. molde/stylesheets/create_color_page.py +61 -61
  31. molde/stylesheets/mainwindow.ui +611 -611
  32. molde/stylesheets/qcheckbox.qss +18 -18
  33. molde/stylesheets/qinputs.qss +78 -78
  34. molde/stylesheets/qlayouts.qss +22 -22
  35. molde/stylesheets/qmenubar.qss +12 -12
  36. molde/stylesheets/qprogressbar.qss +11 -11
  37. molde/stylesheets/qpushbutton.qss +90 -90
  38. molde/stylesheets/qradiobutton.qss +30 -30
  39. molde/stylesheets/qscrollbar.qss +29 -29
  40. molde/stylesheets/qslider.qss +61 -61
  41. molde/stylesheets/qtablewidget.qss +27 -27
  42. molde/stylesheets/qtabwidget.qss +29 -29
  43. molde/stylesheets/qtoolbar.qss +62 -62
  44. molde/stylesheets/qtoolbuttons.qss +14 -14
  45. molde/stylesheets/qtreewidget.qss +25 -25
  46. molde/ui_files/messages/new_loading_window.ui +73 -0
  47. molde/utils/__init__.py +8 -8
  48. molde/utils/format_sequences.py +44 -44
  49. molde/utils/poly_data_utils.py +24 -24
  50. molde/utils/tree_info.py +52 -52
  51. molde/windows/loading_window.py +189 -0
  52. {molde-0.1.0.dist-info → molde-0.1.2.dist-info}/METADATA +5 -3
  53. molde-0.1.2.dist-info/RECORD +69 -0
  54. {molde-0.1.0.dist-info → molde-0.1.2.dist-info}/WHEEL +1 -1
  55. molde-0.1.0.dist-info/RECORD +0 -62
@@ -1,611 +1,611 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <ui version="4.0">
3
- <class>MainWindow</class>
4
- <widget class="QMainWindow" name="MainWindow">
5
- <property name="geometry">
6
- <rect>
7
- <x>0</x>
8
- <y>0</y>
9
- <width>800</width>
10
- <height>600</height>
11
- </rect>
12
- </property>
13
- <property name="windowTitle">
14
- <string>MainWindow</string>
15
- </property>
16
- <widget class="QWidget" name="centralwidget">
17
- <layout class="QVBoxLayout" name="verticalLayout">
18
- <item>
19
- <widget class="QFrame" name="frame">
20
- <property name="frameShape">
21
- <enum>QFrame::StyledPanel</enum>
22
- </property>
23
- <property name="frameShadow">
24
- <enum>QFrame::Raised</enum>
25
- </property>
26
- <layout class="QHBoxLayout" name="horizontalLayout">
27
- <item>
28
- <layout class="QVBoxLayout" name="verticalLayout_2">
29
- <item>
30
- <widget class="QRadioButton" name="radioButton">
31
- <property name="enabled">
32
- <bool>true</bool>
33
- </property>
34
- <property name="text">
35
- <string>RadioButton</string>
36
- </property>
37
- <property name="checkable">
38
- <bool>true</bool>
39
- </property>
40
- <property name="checked">
41
- <bool>false</bool>
42
- </property>
43
- <property name="autoExclusive">
44
- <bool>true</bool>
45
- </property>
46
- </widget>
47
- </item>
48
- <item>
49
- <widget class="QRadioButton" name="radioButton_2">
50
- <property name="enabled">
51
- <bool>false</bool>
52
- </property>
53
- <property name="text">
54
- <string>RadioButton</string>
55
- </property>
56
- </widget>
57
- </item>
58
- </layout>
59
- </item>
60
- <item>
61
- <layout class="QVBoxLayout" name="verticalLayout_5">
62
- <item>
63
- <widget class="QPushButton" name="change_theme_button">
64
- <property name="text">
65
- <string>Change Theme</string>
66
- </property>
67
- <property name="checkable">
68
- <bool>false</bool>
69
- </property>
70
- <property name="autoExclusive">
71
- <bool>false</bool>
72
- </property>
73
- <property name="default">
74
- <bool>false</bool>
75
- </property>
76
- <property name="flat">
77
- <bool>false</bool>
78
- </property>
79
- <property name="status" stdset="0">
80
- <string>main</string>
81
- </property>
82
- </widget>
83
- </item>
84
- <item>
85
- <widget class="QPushButton" name="pushButton">
86
- <property name="toolTip">
87
- <string>ESTOY LOOOOCO
88
- LO LO LO LO
89
- LOCO</string>
90
- </property>
91
- <property name="text">
92
- <string>Checkable</string>
93
- </property>
94
- <property name="checkable">
95
- <bool>true</bool>
96
- </property>
97
- <property name="autoExclusive">
98
- <bool>false</bool>
99
- </property>
100
- <property name="status" stdset="0">
101
- <string>danger</string>
102
- </property>
103
- </widget>
104
- </item>
105
- <item>
106
- <widget class="QPushButton" name="pushButton_2">
107
- <property name="enabled">
108
- <bool>true</bool>
109
- </property>
110
- <property name="text">
111
- <string>PushButton</string>
112
- </property>
113
- <property name="status" stdset="0">
114
- <string>warning</string>
115
- </property>
116
- </widget>
117
- </item>
118
- </layout>
119
- </item>
120
- <item>
121
- <layout class="QVBoxLayout" name="verticalLayout_6">
122
- <item>
123
- <widget class="QCheckBox" name="checkBox_3">
124
- <property name="enabled">
125
- <bool>false</bool>
126
- </property>
127
- <property name="text">
128
- <string>CheckBox</string>
129
- </property>
130
- <property name="checked">
131
- <bool>true</bool>
132
- </property>
133
- </widget>
134
- </item>
135
- <item>
136
- <widget class="QCheckBox" name="checkBox_2">
137
- <property name="text">
138
- <string>CheckBox</string>
139
- </property>
140
- <property name="checked">
141
- <bool>false</bool>
142
- </property>
143
- <property name="autoExclusive">
144
- <bool>false</bool>
145
- </property>
146
- <property name="tristate">
147
- <bool>false</bool>
148
- </property>
149
- </widget>
150
- </item>
151
- <item>
152
- <widget class="QCheckBox" name="checkBox">
153
- <property name="text">
154
- <string>CheckBox</string>
155
- </property>
156
- </widget>
157
- </item>
158
- </layout>
159
- </item>
160
- </layout>
161
- </widget>
162
- </item>
163
- <item>
164
- <widget class="QFrame" name="frame_2">
165
- <property name="frameShape">
166
- <enum>QFrame::StyledPanel</enum>
167
- </property>
168
- <property name="frameShadow">
169
- <enum>QFrame::Plain</enum>
170
- </property>
171
- <layout class="QHBoxLayout" name="horizontalLayout_2">
172
- <item>
173
- <layout class="QVBoxLayout" name="verticalLayout_3">
174
- <item>
175
- <widget class="QLineEdit" name="lineEdit_2">
176
- <property name="enabled">
177
- <bool>false</bool>
178
- </property>
179
- <property name="text">
180
- <string>sapoooooooooooooooooooooooooooooooooooooo</string>
181
- </property>
182
- </widget>
183
- </item>
184
- <item>
185
- <widget class="QLineEdit" name="lineEdit"/>
186
- </item>
187
- <item>
188
- <widget class="QDoubleSpinBox" name="doubleSpinBox"/>
189
- </item>
190
- <item>
191
- <widget class="QSpinBox" name="spinBox">
192
- <property name="enabled">
193
- <bool>false</bool>
194
- </property>
195
- </widget>
196
- </item>
197
- <item>
198
- <widget class="QComboBox" name="comboBox">
199
- <property name="enabled">
200
- <bool>true</bool>
201
- </property>
202
- <item>
203
- <property name="text">
204
- <string>cu</string>
205
- </property>
206
- </item>
207
- <item>
208
- <property name="text">
209
- <string>anus</string>
210
- </property>
211
- </item>
212
- </widget>
213
- </item>
214
- </layout>
215
- </item>
216
- <item>
217
- <widget class="QDial" name="dial"/>
218
- </item>
219
- <item>
220
- <layout class="QVBoxLayout" name="verticalLayout_4">
221
- <item>
222
- <widget class="QSlider" name="horizontalSlider">
223
- <property name="enabled">
224
- <bool>false</bool>
225
- </property>
226
- <property name="value">
227
- <number>50</number>
228
- </property>
229
- <property name="orientation">
230
- <enum>Qt::Horizontal</enum>
231
- </property>
232
- </widget>
233
- </item>
234
- <item>
235
- <widget class="QSlider" name="horizontalSlider_3">
236
- <property name="value">
237
- <number>50</number>
238
- </property>
239
- <property name="orientation">
240
- <enum>Qt::Horizontal</enum>
241
- </property>
242
- </widget>
243
- </item>
244
- <item>
245
- <widget class="QSlider" name="horizontalSlider_2">
246
- <property name="value">
247
- <number>50</number>
248
- </property>
249
- <property name="orientation">
250
- <enum>Qt::Horizontal</enum>
251
- </property>
252
- </widget>
253
- </item>
254
- </layout>
255
- </item>
256
- <item>
257
- <layout class="QHBoxLayout" name="horizontalLayout_3">
258
- <item>
259
- <widget class="QSlider" name="verticalSlider_2">
260
- <property name="value">
261
- <number>50</number>
262
- </property>
263
- <property name="orientation">
264
- <enum>Qt::Vertical</enum>
265
- </property>
266
- </widget>
267
- </item>
268
- <item>
269
- <widget class="QSlider" name="verticalSlider_3">
270
- <property name="value">
271
- <number>50</number>
272
- </property>
273
- <property name="orientation">
274
- <enum>Qt::Vertical</enum>
275
- </property>
276
- </widget>
277
- </item>
278
- <item>
279
- <widget class="QSlider" name="verticalSlider">
280
- <property name="value">
281
- <number>50</number>
282
- </property>
283
- <property name="orientation">
284
- <enum>Qt::Vertical</enum>
285
- </property>
286
- </widget>
287
- </item>
288
- </layout>
289
- </item>
290
- </layout>
291
- </widget>
292
- </item>
293
- <item>
294
- <widget class="QTabWidget" name="tabWidget">
295
- <property name="currentIndex">
296
- <number>1</number>
297
- </property>
298
- <widget class="QWidget" name="tab">
299
- <attribute name="title">
300
- <string>Tab 1</string>
301
- </attribute>
302
- <layout class="QHBoxLayout" name="horizontalLayout_4">
303
- <item>
304
- <widget class="QProgressBar" name="progressBar">
305
- <property name="value">
306
- <number>24</number>
307
- </property>
308
- </widget>
309
- </item>
310
- </layout>
311
- </widget>
312
- <widget class="QWidget" name="tab_3">
313
- <attribute name="title">
314
- <string>Page</string>
315
- </attribute>
316
- <layout class="QHBoxLayout" name="horizontalLayout_6">
317
- <item>
318
- <widget class="QSpinBox" name="spinBox_2"/>
319
- </item>
320
- <item>
321
- <widget class="QComboBox" name="comboBox_2">
322
- <item>
323
- <property name="text">
324
- <string>Single Division</string>
325
- </property>
326
- </item>
327
- <item>
328
- <property name="text">
329
- <string>Multiple Division</string>
330
- </property>
331
- </item>
332
- </widget>
333
- </item>
334
- <item>
335
- <widget class="QTreeWidget" name="treeWidget">
336
- <property name="alternatingRowColors">
337
- <bool>true</bool>
338
- </property>
339
- <column>
340
- <property name="text">
341
- <string>Frequency</string>
342
- </property>
343
- </column>
344
- <item>
345
- <property name="text">
346
- <string>100</string>
347
- </property>
348
- </item>
349
- <item>
350
- <property name="text">
351
- <string>1</string>
352
- </property>
353
- </item>
354
- <item>
355
- <property name="text">
356
- <string>2</string>
357
- </property>
358
- </item>
359
- <item>
360
- <property name="text">
361
- <string>3</string>
362
- </property>
363
- </item>
364
- <item>
365
- <property name="text">
366
- <string>4</string>
367
- </property>
368
- </item>
369
- <item>
370
- <property name="text">
371
- <string>5</string>
372
- </property>
373
- </item>
374
- <item>
375
- <property name="text">
376
- <string>6</string>
377
- </property>
378
- </item>
379
- <item>
380
- <property name="text">
381
- <string>7</string>
382
- </property>
383
- </item>
384
- <item>
385
- <property name="text">
386
- <string>8</string>
387
- </property>
388
- </item>
389
- <item>
390
- <property name="text">
391
- <string>9</string>
392
- </property>
393
- </item>
394
- <item>
395
- <property name="text">
396
- <string>200</string>
397
- </property>
398
- </item>
399
- <item>
400
- <property name="text">
401
- <string>300</string>
402
- </property>
403
- </item>
404
- <item>
405
- <property name="text">
406
- <string>400</string>
407
- </property>
408
- </item>
409
- <item>
410
- <property name="text">
411
- <string>500</string>
412
- </property>
413
- </item>
414
- </widget>
415
- </item>
416
- <item>
417
- <widget class="QTableWidget" name="tableWidget">
418
- <property name="frameShape">
419
- <enum>QFrame::StyledPanel</enum>
420
- </property>
421
- <property name="frameShadow">
422
- <enum>QFrame::Plain</enum>
423
- </property>
424
- <row>
425
- <property name="text">
426
- <string>yeahhhh</string>
427
- </property>
428
- </row>
429
- <row>
430
- <property name="text">
431
- <string>hellmans</string>
432
- </property>
433
- </row>
434
- <column>
435
- <property name="text">
436
- <string>AOOOOOOOOOOO</string>
437
- </property>
438
- </column>
439
- <column>
440
- <property name="text">
441
- <string>sapo cururu</string>
442
- </property>
443
- </column>
444
- <item row="0" column="0">
445
- <property name="text">
446
- <string>hell na</string>
447
- </property>
448
- </item>
449
- <item row="0" column="1">
450
- <property name="text">
451
- <string>nahhhh</string>
452
- </property>
453
- </item>
454
- <item row="1" column="0">
455
- <property name="text">
456
- <string>fr</string>
457
- </property>
458
- </item>
459
- <item row="1" column="1">
460
- <property name="text">
461
- <string>xpto</string>
462
- </property>
463
- </item>
464
- </widget>
465
- </item>
466
- </layout>
467
- </widget>
468
- <widget class="QWidget" name="tab_2">
469
- <attribute name="title">
470
- <string>Tab 2</string>
471
- </attribute>
472
- <layout class="QHBoxLayout" name="horizontalLayout_5">
473
- <item>
474
- <widget class="CommonRenderWidget" name="render_widget" native="true"/>
475
- </item>
476
- </layout>
477
- </widget>
478
- </widget>
479
- </item>
480
- <item>
481
- <widget class="QDialogButtonBox" name="buttonBox">
482
- <property name="enabled">
483
- <bool>true</bool>
484
- </property>
485
- <property name="standardButtons">
486
- <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
487
- </property>
488
- <property name="danger" stdset="0">
489
- <bool>true</bool>
490
- </property>
491
- </widget>
492
- </item>
493
- </layout>
494
- </widget>
495
- <widget class="QMenuBar" name="menubar">
496
- <property name="geometry">
497
- <rect>
498
- <x>0</x>
499
- <y>0</y>
500
- <width>800</width>
501
- <height>26</height>
502
- </rect>
503
- </property>
504
- <widget class="QMenu" name="menuproject">
505
- <property name="title">
506
- <string>project</string>
507
- </property>
508
- <addaction name="actionMama"/>
509
- <addaction name="actionMia"/>
510
- <addaction name="actionPepe"/>
511
- <addaction name="actionRoni"/>
512
- </widget>
513
- <widget class="QMenu" name="menuhelo">
514
- <property name="title">
515
- <string>helo</string>
516
- </property>
517
- </widget>
518
- <widget class="QMenu" name="menuhello">
519
- <property name="title">
520
- <string>hello</string>
521
- </property>
522
- </widget>
523
- <widget class="QMenu" name="menuhelp">
524
- <property name="title">
525
- <string>help</string>
526
- </property>
527
- </widget>
528
- <addaction name="menuproject"/>
529
- <addaction name="menuhelo"/>
530
- <addaction name="menuhello"/>
531
- <addaction name="menuhelp"/>
532
- </widget>
533
- <widget class="QStatusBar" name="statusbar"/>
534
- <widget class="QToolBar" name="toolBar">
535
- <property name="windowTitle">
536
- <string>toolBar</string>
537
- </property>
538
- <attribute name="toolBarArea">
539
- <enum>TopToolBarArea</enum>
540
- </attribute>
541
- <attribute name="toolBarBreak">
542
- <bool>false</bool>
543
- </attribute>
544
- <addaction name="actionMama"/>
545
- <addaction name="actionMia"/>
546
- <addaction name="actionPepe"/>
547
- <addaction name="actionRoni"/>
548
- </widget>
549
- <widget class="QToolBar" name="toolbar_2">
550
- <property name="windowTitle">
551
- <string>toolBar_2</string>
552
- </property>
553
- <attribute name="toolBarArea">
554
- <enum>TopToolBarArea</enum>
555
- </attribute>
556
- <attribute name="toolBarBreak">
557
- <bool>false</bool>
558
- </attribute>
559
- </widget>
560
- <action name="actionMama">
561
- <property name="checkable">
562
- <bool>true</bool>
563
- </property>
564
- <property name="text">
565
- <string>Mama</string>
566
- </property>
567
- </action>
568
- <action name="actionMia">
569
- <property name="checkable">
570
- <bool>true</bool>
571
- </property>
572
- <property name="text">
573
- <string>Mia</string>
574
- </property>
575
- </action>
576
- <action name="actionPepe">
577
- <property name="checkable">
578
- <bool>true</bool>
579
- </property>
580
- <property name="icon">
581
- <iconset>
582
- <normaloff>arrow_up_light_theme.svg</normaloff>arrow_up_light_theme.svg</iconset>
583
- </property>
584
- <property name="text">
585
- <string>Pepe</string>
586
- </property>
587
- </action>
588
- <action name="actionRoni">
589
- <property name="checkable">
590
- <bool>true</bool>
591
- </property>
592
- <property name="icon">
593
- <iconset>
594
- <normaloff>arrow_down_dark_theme.svg</normaloff>arrow_down_dark_theme.svg</iconset>
595
- </property>
596
- <property name="text">
597
- <string>Roni</string>
598
- </property>
599
- </action>
600
- </widget>
601
- <customwidgets>
602
- <customwidget>
603
- <class>CommonRenderWidget</class>
604
- <extends>QWidget</extends>
605
- <header>molde.render_widgets.common_render_widget</header>
606
- <container>1</container>
607
- </customwidget>
608
- </customwidgets>
609
- <resources/>
610
- <connections/>
611
- </ui>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>MainWindow</class>
4
+ <widget class="QMainWindow" name="MainWindow">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>800</width>
10
+ <height>600</height>
11
+ </rect>
12
+ </property>
13
+ <property name="windowTitle">
14
+ <string>MainWindow</string>
15
+ </property>
16
+ <widget class="QWidget" name="centralwidget">
17
+ <layout class="QVBoxLayout" name="verticalLayout">
18
+ <item>
19
+ <widget class="QFrame" name="frame">
20
+ <property name="frameShape">
21
+ <enum>QFrame::StyledPanel</enum>
22
+ </property>
23
+ <property name="frameShadow">
24
+ <enum>QFrame::Raised</enum>
25
+ </property>
26
+ <layout class="QHBoxLayout" name="horizontalLayout">
27
+ <item>
28
+ <layout class="QVBoxLayout" name="verticalLayout_2">
29
+ <item>
30
+ <widget class="QRadioButton" name="radioButton">
31
+ <property name="enabled">
32
+ <bool>true</bool>
33
+ </property>
34
+ <property name="text">
35
+ <string>RadioButton</string>
36
+ </property>
37
+ <property name="checkable">
38
+ <bool>true</bool>
39
+ </property>
40
+ <property name="checked">
41
+ <bool>false</bool>
42
+ </property>
43
+ <property name="autoExclusive">
44
+ <bool>true</bool>
45
+ </property>
46
+ </widget>
47
+ </item>
48
+ <item>
49
+ <widget class="QRadioButton" name="radioButton_2">
50
+ <property name="enabled">
51
+ <bool>false</bool>
52
+ </property>
53
+ <property name="text">
54
+ <string>RadioButton</string>
55
+ </property>
56
+ </widget>
57
+ </item>
58
+ </layout>
59
+ </item>
60
+ <item>
61
+ <layout class="QVBoxLayout" name="verticalLayout_5">
62
+ <item>
63
+ <widget class="QPushButton" name="change_theme_button">
64
+ <property name="text">
65
+ <string>Change Theme</string>
66
+ </property>
67
+ <property name="checkable">
68
+ <bool>false</bool>
69
+ </property>
70
+ <property name="autoExclusive">
71
+ <bool>false</bool>
72
+ </property>
73
+ <property name="default">
74
+ <bool>false</bool>
75
+ </property>
76
+ <property name="flat">
77
+ <bool>false</bool>
78
+ </property>
79
+ <property name="status" stdset="0">
80
+ <string>main</string>
81
+ </property>
82
+ </widget>
83
+ </item>
84
+ <item>
85
+ <widget class="QPushButton" name="pushButton">
86
+ <property name="toolTip">
87
+ <string>ESTOY LOOOOCO
88
+ LO LO LO LO
89
+ LOCO</string>
90
+ </property>
91
+ <property name="text">
92
+ <string>Checkable</string>
93
+ </property>
94
+ <property name="checkable">
95
+ <bool>true</bool>
96
+ </property>
97
+ <property name="autoExclusive">
98
+ <bool>false</bool>
99
+ </property>
100
+ <property name="status" stdset="0">
101
+ <string>danger</string>
102
+ </property>
103
+ </widget>
104
+ </item>
105
+ <item>
106
+ <widget class="QPushButton" name="pushButton_2">
107
+ <property name="enabled">
108
+ <bool>true</bool>
109
+ </property>
110
+ <property name="text">
111
+ <string>PushButton</string>
112
+ </property>
113
+ <property name="status" stdset="0">
114
+ <string>warning</string>
115
+ </property>
116
+ </widget>
117
+ </item>
118
+ </layout>
119
+ </item>
120
+ <item>
121
+ <layout class="QVBoxLayout" name="verticalLayout_6">
122
+ <item>
123
+ <widget class="QCheckBox" name="checkBox_3">
124
+ <property name="enabled">
125
+ <bool>false</bool>
126
+ </property>
127
+ <property name="text">
128
+ <string>CheckBox</string>
129
+ </property>
130
+ <property name="checked">
131
+ <bool>true</bool>
132
+ </property>
133
+ </widget>
134
+ </item>
135
+ <item>
136
+ <widget class="QCheckBox" name="checkBox_2">
137
+ <property name="text">
138
+ <string>CheckBox</string>
139
+ </property>
140
+ <property name="checked">
141
+ <bool>false</bool>
142
+ </property>
143
+ <property name="autoExclusive">
144
+ <bool>false</bool>
145
+ </property>
146
+ <property name="tristate">
147
+ <bool>false</bool>
148
+ </property>
149
+ </widget>
150
+ </item>
151
+ <item>
152
+ <widget class="QCheckBox" name="checkBox">
153
+ <property name="text">
154
+ <string>CheckBox</string>
155
+ </property>
156
+ </widget>
157
+ </item>
158
+ </layout>
159
+ </item>
160
+ </layout>
161
+ </widget>
162
+ </item>
163
+ <item>
164
+ <widget class="QFrame" name="frame_2">
165
+ <property name="frameShape">
166
+ <enum>QFrame::StyledPanel</enum>
167
+ </property>
168
+ <property name="frameShadow">
169
+ <enum>QFrame::Plain</enum>
170
+ </property>
171
+ <layout class="QHBoxLayout" name="horizontalLayout_2">
172
+ <item>
173
+ <layout class="QVBoxLayout" name="verticalLayout_3">
174
+ <item>
175
+ <widget class="QLineEdit" name="lineEdit_2">
176
+ <property name="enabled">
177
+ <bool>false</bool>
178
+ </property>
179
+ <property name="text">
180
+ <string>sapoooooooooooooooooooooooooooooooooooooo</string>
181
+ </property>
182
+ </widget>
183
+ </item>
184
+ <item>
185
+ <widget class="QLineEdit" name="lineEdit"/>
186
+ </item>
187
+ <item>
188
+ <widget class="QDoubleSpinBox" name="doubleSpinBox"/>
189
+ </item>
190
+ <item>
191
+ <widget class="QSpinBox" name="spinBox">
192
+ <property name="enabled">
193
+ <bool>false</bool>
194
+ </property>
195
+ </widget>
196
+ </item>
197
+ <item>
198
+ <widget class="QComboBox" name="comboBox">
199
+ <property name="enabled">
200
+ <bool>true</bool>
201
+ </property>
202
+ <item>
203
+ <property name="text">
204
+ <string>cu</string>
205
+ </property>
206
+ </item>
207
+ <item>
208
+ <property name="text">
209
+ <string>anus</string>
210
+ </property>
211
+ </item>
212
+ </widget>
213
+ </item>
214
+ </layout>
215
+ </item>
216
+ <item>
217
+ <widget class="QDial" name="dial"/>
218
+ </item>
219
+ <item>
220
+ <layout class="QVBoxLayout" name="verticalLayout_4">
221
+ <item>
222
+ <widget class="QSlider" name="horizontalSlider">
223
+ <property name="enabled">
224
+ <bool>false</bool>
225
+ </property>
226
+ <property name="value">
227
+ <number>50</number>
228
+ </property>
229
+ <property name="orientation">
230
+ <enum>Qt::Horizontal</enum>
231
+ </property>
232
+ </widget>
233
+ </item>
234
+ <item>
235
+ <widget class="QSlider" name="horizontalSlider_3">
236
+ <property name="value">
237
+ <number>50</number>
238
+ </property>
239
+ <property name="orientation">
240
+ <enum>Qt::Horizontal</enum>
241
+ </property>
242
+ </widget>
243
+ </item>
244
+ <item>
245
+ <widget class="QSlider" name="horizontalSlider_2">
246
+ <property name="value">
247
+ <number>50</number>
248
+ </property>
249
+ <property name="orientation">
250
+ <enum>Qt::Horizontal</enum>
251
+ </property>
252
+ </widget>
253
+ </item>
254
+ </layout>
255
+ </item>
256
+ <item>
257
+ <layout class="QHBoxLayout" name="horizontalLayout_3">
258
+ <item>
259
+ <widget class="QSlider" name="verticalSlider_2">
260
+ <property name="value">
261
+ <number>50</number>
262
+ </property>
263
+ <property name="orientation">
264
+ <enum>Qt::Vertical</enum>
265
+ </property>
266
+ </widget>
267
+ </item>
268
+ <item>
269
+ <widget class="QSlider" name="verticalSlider_3">
270
+ <property name="value">
271
+ <number>50</number>
272
+ </property>
273
+ <property name="orientation">
274
+ <enum>Qt::Vertical</enum>
275
+ </property>
276
+ </widget>
277
+ </item>
278
+ <item>
279
+ <widget class="QSlider" name="verticalSlider">
280
+ <property name="value">
281
+ <number>50</number>
282
+ </property>
283
+ <property name="orientation">
284
+ <enum>Qt::Vertical</enum>
285
+ </property>
286
+ </widget>
287
+ </item>
288
+ </layout>
289
+ </item>
290
+ </layout>
291
+ </widget>
292
+ </item>
293
+ <item>
294
+ <widget class="QTabWidget" name="tabWidget">
295
+ <property name="currentIndex">
296
+ <number>1</number>
297
+ </property>
298
+ <widget class="QWidget" name="tab">
299
+ <attribute name="title">
300
+ <string>Tab 1</string>
301
+ </attribute>
302
+ <layout class="QHBoxLayout" name="horizontalLayout_4">
303
+ <item>
304
+ <widget class="QProgressBar" name="progressBar">
305
+ <property name="value">
306
+ <number>24</number>
307
+ </property>
308
+ </widget>
309
+ </item>
310
+ </layout>
311
+ </widget>
312
+ <widget class="QWidget" name="tab_3">
313
+ <attribute name="title">
314
+ <string>Page</string>
315
+ </attribute>
316
+ <layout class="QHBoxLayout" name="horizontalLayout_6">
317
+ <item>
318
+ <widget class="QSpinBox" name="spinBox_2"/>
319
+ </item>
320
+ <item>
321
+ <widget class="QComboBox" name="comboBox_2">
322
+ <item>
323
+ <property name="text">
324
+ <string>Single Division</string>
325
+ </property>
326
+ </item>
327
+ <item>
328
+ <property name="text">
329
+ <string>Multiple Division</string>
330
+ </property>
331
+ </item>
332
+ </widget>
333
+ </item>
334
+ <item>
335
+ <widget class="QTreeWidget" name="treeWidget">
336
+ <property name="alternatingRowColors">
337
+ <bool>true</bool>
338
+ </property>
339
+ <column>
340
+ <property name="text">
341
+ <string>Frequency</string>
342
+ </property>
343
+ </column>
344
+ <item>
345
+ <property name="text">
346
+ <string>100</string>
347
+ </property>
348
+ </item>
349
+ <item>
350
+ <property name="text">
351
+ <string>1</string>
352
+ </property>
353
+ </item>
354
+ <item>
355
+ <property name="text">
356
+ <string>2</string>
357
+ </property>
358
+ </item>
359
+ <item>
360
+ <property name="text">
361
+ <string>3</string>
362
+ </property>
363
+ </item>
364
+ <item>
365
+ <property name="text">
366
+ <string>4</string>
367
+ </property>
368
+ </item>
369
+ <item>
370
+ <property name="text">
371
+ <string>5</string>
372
+ </property>
373
+ </item>
374
+ <item>
375
+ <property name="text">
376
+ <string>6</string>
377
+ </property>
378
+ </item>
379
+ <item>
380
+ <property name="text">
381
+ <string>7</string>
382
+ </property>
383
+ </item>
384
+ <item>
385
+ <property name="text">
386
+ <string>8</string>
387
+ </property>
388
+ </item>
389
+ <item>
390
+ <property name="text">
391
+ <string>9</string>
392
+ </property>
393
+ </item>
394
+ <item>
395
+ <property name="text">
396
+ <string>200</string>
397
+ </property>
398
+ </item>
399
+ <item>
400
+ <property name="text">
401
+ <string>300</string>
402
+ </property>
403
+ </item>
404
+ <item>
405
+ <property name="text">
406
+ <string>400</string>
407
+ </property>
408
+ </item>
409
+ <item>
410
+ <property name="text">
411
+ <string>500</string>
412
+ </property>
413
+ </item>
414
+ </widget>
415
+ </item>
416
+ <item>
417
+ <widget class="QTableWidget" name="tableWidget">
418
+ <property name="frameShape">
419
+ <enum>QFrame::StyledPanel</enum>
420
+ </property>
421
+ <property name="frameShadow">
422
+ <enum>QFrame::Plain</enum>
423
+ </property>
424
+ <row>
425
+ <property name="text">
426
+ <string>yeahhhh</string>
427
+ </property>
428
+ </row>
429
+ <row>
430
+ <property name="text">
431
+ <string>hellmans</string>
432
+ </property>
433
+ </row>
434
+ <column>
435
+ <property name="text">
436
+ <string>AOOOOOOOOOOO</string>
437
+ </property>
438
+ </column>
439
+ <column>
440
+ <property name="text">
441
+ <string>sapo cururu</string>
442
+ </property>
443
+ </column>
444
+ <item row="0" column="0">
445
+ <property name="text">
446
+ <string>hell na</string>
447
+ </property>
448
+ </item>
449
+ <item row="0" column="1">
450
+ <property name="text">
451
+ <string>nahhhh</string>
452
+ </property>
453
+ </item>
454
+ <item row="1" column="0">
455
+ <property name="text">
456
+ <string>fr</string>
457
+ </property>
458
+ </item>
459
+ <item row="1" column="1">
460
+ <property name="text">
461
+ <string>xpto</string>
462
+ </property>
463
+ </item>
464
+ </widget>
465
+ </item>
466
+ </layout>
467
+ </widget>
468
+ <widget class="QWidget" name="tab_2">
469
+ <attribute name="title">
470
+ <string>Tab 2</string>
471
+ </attribute>
472
+ <layout class="QHBoxLayout" name="horizontalLayout_5">
473
+ <item>
474
+ <widget class="CommonRenderWidget" name="render_widget" native="true"/>
475
+ </item>
476
+ </layout>
477
+ </widget>
478
+ </widget>
479
+ </item>
480
+ <item>
481
+ <widget class="QDialogButtonBox" name="buttonBox">
482
+ <property name="enabled">
483
+ <bool>true</bool>
484
+ </property>
485
+ <property name="standardButtons">
486
+ <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
487
+ </property>
488
+ <property name="danger" stdset="0">
489
+ <bool>true</bool>
490
+ </property>
491
+ </widget>
492
+ </item>
493
+ </layout>
494
+ </widget>
495
+ <widget class="QMenuBar" name="menubar">
496
+ <property name="geometry">
497
+ <rect>
498
+ <x>0</x>
499
+ <y>0</y>
500
+ <width>800</width>
501
+ <height>26</height>
502
+ </rect>
503
+ </property>
504
+ <widget class="QMenu" name="menuproject">
505
+ <property name="title">
506
+ <string>project</string>
507
+ </property>
508
+ <addaction name="actionMama"/>
509
+ <addaction name="actionMia"/>
510
+ <addaction name="actionPepe"/>
511
+ <addaction name="actionRoni"/>
512
+ </widget>
513
+ <widget class="QMenu" name="menuhelo">
514
+ <property name="title">
515
+ <string>helo</string>
516
+ </property>
517
+ </widget>
518
+ <widget class="QMenu" name="menuhello">
519
+ <property name="title">
520
+ <string>hello</string>
521
+ </property>
522
+ </widget>
523
+ <widget class="QMenu" name="menuhelp">
524
+ <property name="title">
525
+ <string>help</string>
526
+ </property>
527
+ </widget>
528
+ <addaction name="menuproject"/>
529
+ <addaction name="menuhelo"/>
530
+ <addaction name="menuhello"/>
531
+ <addaction name="menuhelp"/>
532
+ </widget>
533
+ <widget class="QStatusBar" name="statusbar"/>
534
+ <widget class="QToolBar" name="toolBar">
535
+ <property name="windowTitle">
536
+ <string>toolBar</string>
537
+ </property>
538
+ <attribute name="toolBarArea">
539
+ <enum>TopToolBarArea</enum>
540
+ </attribute>
541
+ <attribute name="toolBarBreak">
542
+ <bool>false</bool>
543
+ </attribute>
544
+ <addaction name="actionMama"/>
545
+ <addaction name="actionMia"/>
546
+ <addaction name="actionPepe"/>
547
+ <addaction name="actionRoni"/>
548
+ </widget>
549
+ <widget class="QToolBar" name="toolbar_2">
550
+ <property name="windowTitle">
551
+ <string>toolBar_2</string>
552
+ </property>
553
+ <attribute name="toolBarArea">
554
+ <enum>TopToolBarArea</enum>
555
+ </attribute>
556
+ <attribute name="toolBarBreak">
557
+ <bool>false</bool>
558
+ </attribute>
559
+ </widget>
560
+ <action name="actionMama">
561
+ <property name="checkable">
562
+ <bool>true</bool>
563
+ </property>
564
+ <property name="text">
565
+ <string>Mama</string>
566
+ </property>
567
+ </action>
568
+ <action name="actionMia">
569
+ <property name="checkable">
570
+ <bool>true</bool>
571
+ </property>
572
+ <property name="text">
573
+ <string>Mia</string>
574
+ </property>
575
+ </action>
576
+ <action name="actionPepe">
577
+ <property name="checkable">
578
+ <bool>true</bool>
579
+ </property>
580
+ <property name="icon">
581
+ <iconset>
582
+ <normaloff>arrow_up_light_theme.svg</normaloff>arrow_up_light_theme.svg</iconset>
583
+ </property>
584
+ <property name="text">
585
+ <string>Pepe</string>
586
+ </property>
587
+ </action>
588
+ <action name="actionRoni">
589
+ <property name="checkable">
590
+ <bool>true</bool>
591
+ </property>
592
+ <property name="icon">
593
+ <iconset>
594
+ <normaloff>arrow_down_dark_theme.svg</normaloff>arrow_down_dark_theme.svg</iconset>
595
+ </property>
596
+ <property name="text">
597
+ <string>Roni</string>
598
+ </property>
599
+ </action>
600
+ </widget>
601
+ <customwidgets>
602
+ <customwidget>
603
+ <class>CommonRenderWidget</class>
604
+ <extends>QWidget</extends>
605
+ <header>molde.render_widgets.common_render_widget</header>
606
+ <container>1</container>
607
+ </customwidget>
608
+ </customwidgets>
609
+ <resources/>
610
+ <connections/>
611
+ </ui>