PyImageLabeling 1.0.0__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 (99) hide show
  1. PyImageLabeling/__init__.py +22 -0
  2. PyImageLabeling/config.json +289 -0
  3. PyImageLabeling/controller/Controller.py +25 -0
  4. PyImageLabeling/controller/Events.py +147 -0
  5. PyImageLabeling/controller/FileEvents.py +69 -0
  6. PyImageLabeling/controller/ImageEvents.py +32 -0
  7. PyImageLabeling/controller/LabelEvents.py +219 -0
  8. PyImageLabeling/controller/LabelingEvents.py +123 -0
  9. PyImageLabeling/controller/settings/ContourFillinSetting.py +93 -0
  10. PyImageLabeling/controller/settings/CoutourFillingApplyCancel.py +37 -0
  11. PyImageLabeling/controller/settings/EraserSetting.py +73 -0
  12. PyImageLabeling/controller/settings/LabelSetting.py +91 -0
  13. PyImageLabeling/controller/settings/MagicPenSetting.py +125 -0
  14. PyImageLabeling/controller/settings/OpacitySetting.py +66 -0
  15. PyImageLabeling/controller/settings/PaintBrushSetting.py +66 -0
  16. PyImageLabeling/icons/apply.png +0 -0
  17. PyImageLabeling/icons/asterisk-green.png +0 -0
  18. PyImageLabeling/icons/asterisk-red.png +0 -0
  19. PyImageLabeling/icons/back.png +0 -0
  20. PyImageLabeling/icons/border.png +0 -0
  21. PyImageLabeling/icons/cancel.png +0 -0
  22. PyImageLabeling/icons/cleaner.png +0 -0
  23. PyImageLabeling/icons/close.png +0 -0
  24. PyImageLabeling/icons/down.png +0 -0
  25. PyImageLabeling/icons/ellipse.png +0 -0
  26. PyImageLabeling/icons/eraser.png +0 -0
  27. PyImageLabeling/icons/filling.png +0 -0
  28. PyImageLabeling/icons/logoMAIA.png +0 -0
  29. PyImageLabeling/icons/magic.png +0 -0
  30. PyImageLabeling/icons/maia.png +0 -0
  31. PyImageLabeling/icons/maia1.png +0 -0
  32. PyImageLabeling/icons/maia3.ico +0 -0
  33. PyImageLabeling/icons/maia_icon.png +0 -0
  34. PyImageLabeling/icons/move.png +0 -0
  35. PyImageLabeling/icons/opacity.png +0 -0
  36. PyImageLabeling/icons/open_image.png +0 -0
  37. PyImageLabeling/icons/open_layer.png +0 -0
  38. PyImageLabeling/icons/paint.png +0 -0
  39. PyImageLabeling/icons/plus.png +0 -0
  40. PyImageLabeling/icons/polygon.png +0 -0
  41. PyImageLabeling/icons/rectangle.png +0 -0
  42. PyImageLabeling/icons/reset.png +0 -0
  43. PyImageLabeling/icons/save.png +0 -0
  44. PyImageLabeling/icons/setting.png +0 -0
  45. PyImageLabeling/icons/transparency.png:Zone.Identifier +4 -0
  46. PyImageLabeling/icons/up.png +0 -0
  47. PyImageLabeling/icons/visibility.png +0 -0
  48. PyImageLabeling/icons/zoom_minus.png +0 -0
  49. PyImageLabeling/icons/zoom_plus.png +0 -0
  50. PyImageLabeling/model/Core.py +795 -0
  51. PyImageLabeling/model/File/Files.py +166 -0
  52. PyImageLabeling/model/File/NextImage.py +36 -0
  53. PyImageLabeling/model/File/PreviousImage.py +19 -0
  54. PyImageLabeling/model/Image/MoveImage.py +32 -0
  55. PyImageLabeling/model/Image/ResetMoveZoomImage.py +16 -0
  56. PyImageLabeling/model/Image/ZoomMinus.py +25 -0
  57. PyImageLabeling/model/Image/ZoomPlus.py +16 -0
  58. PyImageLabeling/model/Labeling/ClearAll.py +22 -0
  59. PyImageLabeling/model/Labeling/ContourFilling.py +135 -0
  60. PyImageLabeling/model/Labeling/Ellipse.py +350 -0
  61. PyImageLabeling/model/Labeling/Eraser.py +131 -0
  62. PyImageLabeling/model/Labeling/MagicPen.py +131 -0
  63. PyImageLabeling/model/Labeling/PaintBrush.py +207 -0
  64. PyImageLabeling/model/Labeling/Polygon.py +279 -0
  65. PyImageLabeling/model/Labeling/Rectangle.py +248 -0
  66. PyImageLabeling/model/Labeling/Undo.py +12 -0
  67. PyImageLabeling/model/Model.py +40 -0
  68. PyImageLabeling/model/Utils.py +40 -0
  69. PyImageLabeling/old_version/label_rectangle_properties.json +6 -0
  70. PyImageLabeling/old_version/main.py +2073 -0
  71. PyImageLabeling/old_version/models/EraseSettingsDialog.py +51 -0
  72. PyImageLabeling/old_version/models/LabeledRectangle.py +80 -0
  73. PyImageLabeling/old_version/models/MagicSettingsDialog.py +119 -0
  74. PyImageLabeling/old_version/models/OverlayOpacityDialog.py +63 -0
  75. PyImageLabeling/old_version/models/PaintSettingsDialog.py +289 -0
  76. PyImageLabeling/old_version/models/PointItem.py +66 -0
  77. PyImageLabeling/old_version/models/ProcessWorker.py +52 -0
  78. PyImageLabeling/old_version/models/ZoomableGraphicsView.py +1214 -0
  79. PyImageLabeling/old_version/models/tools/ContourTool.py +279 -0
  80. PyImageLabeling/old_version/models/tools/EraserTool.py +290 -0
  81. PyImageLabeling/old_version/models/tools/MagicPenTool.py +199 -0
  82. PyImageLabeling/old_version/models/tools/OverlayTool.py +179 -0
  83. PyImageLabeling/old_version/models/tools/PaintTool.py +68 -0
  84. PyImageLabeling/old_version/models/tools/PolygonTool.py +786 -0
  85. PyImageLabeling/old_version/models/tools/RectangleTool.py +1036 -0
  86. PyImageLabeling/parameters.json +1 -0
  87. PyImageLabeling/style.css +611 -0
  88. PyImageLabeling/view/Builder.py +333 -0
  89. PyImageLabeling/view/QBackgroundItem.py +30 -0
  90. PyImageLabeling/view/QWidgets.py +10 -0
  91. PyImageLabeling/view/View.py +226 -0
  92. PyImageLabeling/view/ZoomableGraphicsView.py +91 -0
  93. PyImageLabeling/view/__init__.py +0 -0
  94. pyimagelabeling-1.0.0.dist-info/METADATA +55 -0
  95. pyimagelabeling-1.0.0.dist-info/RECORD +99 -0
  96. pyimagelabeling-1.0.0.dist-info/WHEEL +5 -0
  97. pyimagelabeling-1.0.0.dist-info/licenses/LICENCE +22 -0
  98. pyimagelabeling-1.0.0.dist-info/top_level.txt +2 -0
  99. pypi/publish_pypi.py +18 -0
@@ -0,0 +1 @@
1
+ {"contour_filling": {"tolerance": 2}, "magic_pen": {"tolerance": 83, "max_pixels": 408780, "method": "RGB"}, "save": {"path": "/home/nicolas/Bureau/ProjetsMAIA/Picels/test"}, "load": {"path": "/home/nicolas/Bureau/ProjetsMAIA/Picels/raw_data", "alpha_color": [255, 255, 255]}, "zoom": {"min_zoom": 0.5, "max_zoom": 100, "plus_zoom_factor": 1.1, "minus_zoom_factor": 0.9}, "paint_brush": {"size": 20}, "eraser": {"size": 51, "absolute_mode": 0}, "labeling_opacity": 73}
@@ -0,0 +1,611 @@
1
+ QWidget {
2
+ background-color: #2e2e2e;
3
+ /*border: 1px solid #000000;*/
4
+ }
5
+
6
+ QWidget#apply_cancel_bar {
7
+ background-color: #616161;
8
+ border: 2px solid #000000;
9
+ padding: 0px;
10
+ margin: 0px;
11
+
12
+ }
13
+
14
+
15
+ QMessageBox {
16
+ color: white;
17
+ font-size: 14px;
18
+ }
19
+
20
+ QScrollArea {
21
+ border: 0px solid #808080;
22
+ }
23
+
24
+ QScrollBar:horizontal {
25
+ background: #616161;
26
+ }
27
+ QScrollBar:vertical {
28
+ background: #616161;
29
+ }
30
+
31
+ QWidget#label_bar_new {
32
+ background-color: #616161;
33
+ }
34
+
35
+ QWidget#label_bar {
36
+ background-color: #616161;
37
+ border: 2px solid #808080;
38
+ border-bottom: 0px solid #808080;
39
+
40
+ border-bottom-left-radius: 0px;
41
+ border-bottom-right-radius: 0px;
42
+ border-top-left-radius: 20px;
43
+ border-top-right-radius: 20px;
44
+ margin-right:0px;
45
+ margin-left:0px;
46
+
47
+ }
48
+
49
+ QWidget#file_bar {
50
+ background-color: #616161;
51
+ border: 2px solid #808080;
52
+ border-left: 0px solid #808080;
53
+ border-bottom: 0px solid #808080;
54
+
55
+ border-bottom-left-radius: 0px;
56
+ border-bottom-right-radius: 0px;
57
+ border-top-left-radius: 0px;
58
+ border-top-right-radius: 20px;
59
+ }
60
+
61
+
62
+ QListWidget {
63
+ color:#000000;
64
+ background-color: #cccccc;
65
+
66
+ border: 2px solid #808080;
67
+ border-left: 0px solid #808080;
68
+
69
+ border-bottom-left-radius: 0px;
70
+ border-bottom-right-radius: 0px;
71
+ border-top-left-radius: 0px;
72
+ border-top-right-radius: 0px;
73
+
74
+ }
75
+
76
+
77
+ QLabel#label_files {
78
+
79
+ background-color: transparent;
80
+ color:#000000;
81
+ }
82
+
83
+ QWidget#file_item {
84
+ background-color: #cccccc;
85
+ border: none;
86
+ border-radius: 4px;
87
+ padding: 2px;
88
+ }
89
+
90
+ QWidget#selected_file_item {
91
+ background-color: #8ba1ff;
92
+ }
93
+ /*
94
+
95
+ QWidget#file_item:hover {
96
+ background-color: rgba(255, 255, 255, 0.1);
97
+ }
98
+
99
+ QWidget#selected_file_item {
100
+ background-color: #0078d4;
101
+ border: 2px solid #106ebe;
102
+ border-radius: 4px;
103
+ padding: 2px;
104
+ }
105
+
106
+ QWidget#selected_file_item QLabel {
107
+ color: white;
108
+ } */
109
+
110
+ /* Optional: Style the QListWidget itself */
111
+ /* QListWidget {
112
+ background-color: #2d2d2d;
113
+ border: none;
114
+ outline: none;
115
+ }
116
+
117
+ QListWidget::item {
118
+ background-color: transparent;
119
+ border: none;
120
+ padding: 0px;
121
+ margin: 1px 0px;
122
+ }
123
+
124
+ QListWidget::item:selected {
125
+ background-color: transparent;
126
+ } */
127
+
128
+ QWidget#image_bar {
129
+ background-color: #616161;
130
+ border: 2px solid #808080;
131
+ border-right: 0px solid #808080;
132
+
133
+ border-bottom-left-radius: 20px;
134
+ border-bottom-right-radius: 0px;
135
+ border-top-left-radius: 20px;
136
+ border-top-right-radius: 0px;
137
+ margin-right:0px;
138
+
139
+ }
140
+
141
+ QPushButton#setting_button {
142
+ background-color: #cccccc;
143
+ min-height: 40px;
144
+ max-height: 40px;
145
+ min-width: 40px;
146
+ max-width: 40px;
147
+ padding: 0px;
148
+ text-align: center;
149
+ margin-bottom:0px;
150
+ margin-top:0px;
151
+ margin-right: 0px;
152
+ border-bottom-left-radius: 0px;
153
+ border-bottom-right-radius: 5px;
154
+ border-top-left-radius: 0px;
155
+ border-top-right-radius: 5px;
156
+ }
157
+
158
+ QPushButton#setting_button:hover {
159
+ background-color: #8ba1ff;
160
+ }
161
+
162
+ QPushButton#setting_button:pressed {
163
+ background-color: #fcfcfc;
164
+ border: 1px solid #bbb;
165
+ }
166
+
167
+ QPushButton#setting_button:disabled {
168
+ background-color: #808080;
169
+ color: #a0a0a0;
170
+ border: 1px solid #666666;
171
+ }
172
+
173
+ QPushButton#setting_button:checked {
174
+ background-color: #fcfcfc;
175
+ border: 3px inset #bbb;
176
+ }
177
+
178
+
179
+ QBlanckWidget1 {
180
+ max-height: 1px;
181
+ min-width: 25px;
182
+ }
183
+
184
+ QSeparator1 {
185
+ background-color: #cccccc;
186
+ border: 2px inset #808080;
187
+ min-height: 50px;
188
+ max-height: 50px;
189
+ min-width: 1px;
190
+ max-width: 1px;
191
+ padding: 0%;
192
+ text-align: center;
193
+ margin-bottom:0px;
194
+ margin-top:0px;
195
+ }
196
+
197
+ /* QPushButton {
198
+ border: 1px solid #bbb;
199
+ background-color: #cccccc;
200
+ color: black;
201
+ text-align: left;
202
+ padding-left: 10px;
203
+ min-height: 40px;
204
+ max-height: 40px;
205
+ min-width: 125px;
206
+ border-bottom-left-radius: 5px;
207
+ border-bottom-right-radius: 0px;
208
+ border-top-left-radius: 5px;
209
+ border-top-right-radius: 0px;
210
+ }
211
+
212
+ QPushButton:hover {
213
+ background-color: #8ba1ff;
214
+ }
215
+
216
+ QPushButton:pressed {
217
+ background-color: #fcfcfc;
218
+ border: 1px solid #bbb;
219
+ }
220
+
221
+ QPushButton:checked {
222
+ background-color: #728cff;
223
+ border: 3px inset #bbb;
224
+ }
225
+
226
+ QPushButton:disabled {
227
+ background-color: #808080;
228
+ color: #a0a0a0;
229
+ border: 1px solid #666666;
230
+ } */
231
+
232
+ QPushButton#with_parameters {
233
+ border: 1px solid #bbb;
234
+ background-color: #cccccc;
235
+ color: black;
236
+ text-align: left;
237
+ padding-left: 10px;
238
+ min-height: 40px;
239
+ max-height: 40px;
240
+ min-width: 125px;
241
+ border-bottom-left-radius: 5px;
242
+ border-bottom-right-radius: 0px;
243
+ border-top-left-radius: 5px;
244
+ border-top-right-radius: 0px;
245
+ }
246
+
247
+ QPushButton#with_parameters:hover {
248
+ background-color: #8ba1ff;
249
+ }
250
+
251
+ QPushButton#with_parameters:pressed {
252
+ background-color: #fcfcfc;
253
+ border: 1px solid #bbb;
254
+ }
255
+
256
+ QPushButton#with_parameters:checked {
257
+ background-color: #728cff;
258
+ border: 3px inset #bbb;
259
+ }
260
+
261
+ QPushButton#with_parameters:disabled {
262
+ background-color: #808080;
263
+ color: #a0a0a0;
264
+ border: 1px solid #666666;
265
+ }
266
+
267
+ QLabel#save_marker {
268
+ min-height: 12px;
269
+ max-height: 12px;
270
+ min-width: 12px;
271
+ max-width: 12px;
272
+ background-color: transparent;
273
+ border: 0px solid transparent;
274
+ }
275
+
276
+ /*QPushButton#save_marker:hover {
277
+ background-color: transparent;
278
+ }
279
+
280
+ QPushButton#save_marker:disabled {
281
+
282
+ } */
283
+
284
+
285
+
286
+ QPushButton {
287
+ border: 1px solid #bbb;
288
+ background-color: #cccccc;
289
+ color: black;
290
+ text-align: left;
291
+ padding-left: 10px;
292
+ min-height: 25px;
293
+ max-height: 25px;
294
+ min-width: 125px;
295
+ border-bottom-left-radius: 5px;
296
+ border-bottom-right-radius: 5px;
297
+ border-top-left-radius: 5px;
298
+ border-top-right-radius: 5px;
299
+ }
300
+
301
+ QPushButton:hover {
302
+ background-color: #8ba1ff;
303
+ }
304
+
305
+ QPushButton:pressed {
306
+ background-color: #fcfcfc;
307
+ border: 1px solid #bbb;
308
+ }
309
+
310
+ QPushButton:disabled {
311
+ background-color: #808080;
312
+ color: #a0a0a0;
313
+ border: 1px solid #666666;
314
+ }
315
+
316
+ QPushButton:checked {
317
+ background-color: #fcfcfc;
318
+ border: 3px inset #bbb;
319
+ }
320
+
321
+
322
+ QPushButton#without_parameters {
323
+ border: 1px solid #bbb;
324
+ background-color: #cccccc;
325
+ color: black;
326
+ text-align: left;
327
+ padding-left: 10px;
328
+ min-height: 40px;
329
+ max-height: 40px;
330
+ min-width: 125px;
331
+ border-bottom-left-radius: 5px;
332
+ border-bottom-right-radius: 5px;
333
+ border-top-left-radius: 5px;
334
+ border-top-right-radius: 5px;
335
+ }
336
+
337
+ QPushButton#without_parameters:hover {
338
+ background-color: #8ba1ff;
339
+ }
340
+
341
+ QPushButton#without_parameters:pressed {
342
+ background-color: #fcfcfc;
343
+ border: 1px solid #bbb;
344
+ }
345
+
346
+ QPushButton#without_parameters:disabled {
347
+ background-color: #808080;
348
+ color: #a0a0a0;
349
+ border: 1px solid #666666;
350
+ }
351
+
352
+ QPushButton#without_parameters:checked {
353
+ background-color: #fcfcfc;
354
+ border: 3px inset #bbb;
355
+ }
356
+
357
+ QPushButton#visibility {
358
+ background-color: #cccccc;
359
+ min-height: 40px;
360
+ max-height: 40px;
361
+ min-width: 40px;
362
+ max-width: 40px;
363
+ padding: 0px;
364
+ text-align: center;
365
+ margin-bottom:0px;
366
+ margin-top:0px;
367
+ margin-right: 0px;
368
+ border-bottom-left-radius: 0px;
369
+ border-bottom-right-radius: 0px;
370
+ border-top-left-radius: 0px;
371
+ border-top-right-radius: 0px;
372
+ }
373
+
374
+ QPushButton#activation {
375
+ background-color: #cccccc;
376
+ min-height: 40px;
377
+ max-height: 40px;
378
+ min-width: 100px;
379
+ max-width: 100px;
380
+ padding: 0px;
381
+ text-align: center;
382
+ margin-bottom:0px;
383
+ margin-top:0px;
384
+ margin-right: 0px;
385
+ border-bottom-left-radius: 5px;
386
+ border-bottom-right-radius: 0px;
387
+ border-top-left-radius: 5px;
388
+ border-top-right-radius: 0px;
389
+ }
390
+
391
+ QPushButton#activation:hover {
392
+ background-color: #8ba1ff;
393
+ }
394
+
395
+ QPushButton#activation:pressed {
396
+ background-color: #fcfcfc;
397
+ border: 1px solid #bbb;
398
+ }
399
+
400
+ QPushButton#activation:checked {
401
+ background-color: #fcfcfc;
402
+ border: 3px inset #969696;
403
+ font-weight: bold;
404
+ }
405
+
406
+ QPushButton#visibility:hover {
407
+ background-color: #8ba1ff;
408
+ }
409
+
410
+ QPushButton#visibility:pressed {
411
+ background-color: #fcfcfc;
412
+ border: 1px solid #bbb;
413
+ }
414
+
415
+ QPushButton#visibility:checked {
416
+ background-color: #fcfcfc;
417
+ border: 3px inset #bbb;
418
+ }
419
+
420
+ QPushButton#color {
421
+ background-color: #cccccc;
422
+ min-height: 40px;
423
+ max-height: 40px;
424
+ min-width: 10px;
425
+ max-width: 10px;
426
+ padding: 0px;
427
+ text-align: center;
428
+ margin-bottom:0px;
429
+ margin-top:0px;
430
+ margin-left: 0px;
431
+
432
+ border-bottom-left-radius: 0px;
433
+ border-bottom-right-radius: 0px;
434
+ border-top-left-radius: 0px;
435
+ border-top-right-radius: 0px;
436
+ }
437
+
438
+
439
+
440
+ QPushButton#label_setting {
441
+ background-color: #cccccc;
442
+ min-height: 40px;
443
+ max-height: 40px;
444
+ min-width: 40px;
445
+ max-width: 40px;
446
+ padding: 0px;
447
+ text-align: center;
448
+ margin-bottom:0px;
449
+ margin-top:0px;
450
+ margin-left: 0px;
451
+
452
+ border-bottom-left-radius: 0px;
453
+ border-bottom-right-radius: 0px;
454
+ border-top-left-radius: 0px;
455
+ border-top-right-radius: 0px;
456
+ }
457
+
458
+ QPushButton#label_setting:hover {
459
+ background-color: #8ba1ff;
460
+ }
461
+
462
+ QPushButton#label_setting:pressed {
463
+ background-color: #fcfcfc;
464
+ border: 1px solid #bbb;
465
+ }
466
+
467
+ QPushButton#label_setting:checked {
468
+ background-color: #fcfcfc;
469
+ border: 1px inset #bbb;
470
+ }
471
+
472
+ QPushButton#remove_label {
473
+ background-color: #cccccc;
474
+ min-height: 40px;
475
+ max-height: 40px;
476
+ min-width: 40px;
477
+ max-width: 40px;
478
+ padding: 0%;
479
+ text-align: center;
480
+ margin-bottom:0px;
481
+ margin-top:0px;
482
+ border-bottom-left-radius: 0px;
483
+ border-bottom-right-radius: 5px;
484
+ border-top-left-radius: 0px;
485
+ border-top-right-radius: 5px;
486
+ }
487
+
488
+ QPushButton#remove_label:hover {
489
+ background-color: #8ba1ff;
490
+ }
491
+
492
+ QPushButton#remove_label:pressed {
493
+ background-color: #fcfcfc;
494
+ border: 1px solid #bbb;
495
+ }
496
+
497
+ QPushButton#remove_label:checked {
498
+ background-color: #fcfcfc;
499
+ border: 1px inset #bbb;
500
+ }
501
+
502
+
503
+
504
+ QPushButton#permanent {
505
+ background-color: #cccccc;
506
+ min-height: 40px;
507
+ max-height: 40px;
508
+ min-width: 40px;
509
+ max-width: 40px;
510
+ padding: 0%;
511
+ text-align: center;
512
+ margin-bottom:0px;
513
+ margin-top:0px;
514
+ border-bottom-left-radius: 5px;
515
+ border-bottom-right-radius: 5px;
516
+ border-top-left-radius: 5px;
517
+ border-top-right-radius: 5px;
518
+
519
+ }
520
+ QPushButton#permanent:hover {
521
+ background-color: #8ba1ff;
522
+ }
523
+
524
+ QPushButton#permanent:pressed {
525
+ background-color: #fcfcfc;
526
+ border: 1px solid #bbb;
527
+ }
528
+
529
+ QPushButton#permanent:checked {
530
+ background-color: #728cff;
531
+ border: 3px inset #bbb;
532
+ }
533
+
534
+ QPushButton#permanent:disabled {
535
+ background-color: #808080;
536
+ color: #a0a0a0;
537
+ border: 1px solid #666666;
538
+ }
539
+
540
+ QPushButton#remove_image_button {
541
+ background-color: #cccccc;
542
+ min-height: 10px;
543
+ max-height: 10px;
544
+ min-width: 10px;
545
+ max-width: 10px;
546
+ padding: 0px;
547
+ text-align: center;
548
+ margin-bottom:0px;
549
+ margin-top:0px;
550
+ margin-right: 0px;
551
+ border-bottom-left-radius: 0px;
552
+ border-bottom-right-radius: 0px;
553
+ border-top-left-radius: 0px;
554
+ border-top-right-radius: 0px;
555
+ }
556
+
557
+ QPushButton#remove_image_button:hover {
558
+ background-color: #8ba1ff;
559
+ }
560
+
561
+ QPushButton#remove_image_button:pressed {
562
+ background-color: #fcfcfc;
563
+ border: 1px solid #bbb;
564
+ }
565
+
566
+
567
+ QGroupBox {
568
+ background-color: #616161;
569
+ border: 2px solid #808080;
570
+ border-right: 0px solid #808080;
571
+ border-bottom-left-radius: 20px;
572
+ border-top-left-radius: 20px;
573
+ padding-top: 30px;
574
+ font-weight: bold;
575
+ font-size: 14pt;
576
+ }
577
+
578
+ QGroupBox::title {
579
+ position: fixed;
580
+ left: 20%;
581
+ bottom: 0;
582
+ top:10;
583
+ margin-left: 5%;
584
+ margin-right: 5%;
585
+ }
586
+ QDialog {
587
+ background-color: #616161;
588
+ margin:10px;
589
+ }
590
+
591
+ QLabel {
592
+ background-color: transparent;
593
+ color:white;
594
+ font-weight: bold;
595
+ }
596
+
597
+ QSlider {
598
+ background-color: transparent;
599
+ }
600
+
601
+ QCheckBox{
602
+ background-color: transparent;
603
+ }
604
+
605
+
606
+
607
+ ZoomableGraphicsView {
608
+ background-color: #afafaf;
609
+ border: 3px double #808080;
610
+ margin-bottom: 10px;
611
+ }