-
Notifications
You must be signed in to change notification settings - Fork 39
/
p2ppconf.ui
1775 lines (1769 loc) · 53.7 KB
/
p2ppconf.ui
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<author>Tom Van den Eede</author>
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1095</width>
<height>895</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="windowTitle">
<string>P2PP - Prusa Slicer 2.3.0 configurator</string>
</property>
<property name="windowIcon">
<iconset resource="image.qrc">
<normaloff>:/newPrefix/icons/icon.png</normaloff>:/newPrefix/icons/icon.png</iconset>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="h" stretch="0,1">
<property name="spacing">
<number>0</number>
</property>
<property name="sizeConstraint">
<enum>QLayout::SetMinAndMaxSize</enum>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QLabel" name="label">
<property name="maximumSize">
<size>
<width>80</width>
<height>80</height>
</size>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="image.qrc">:/newPrefix/icons/icon.png</pixmap>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_4">
<property name="maximumSize">
<size>
<width>16777215</width>
<height>111</height>
</size>
</property>
<property name="font">
<font>
<family>Arial Black</family>
<pointsize>20</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>P2PP Configurator for PrusaSlicer 2.3+</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QToolBox" name="toolBox">
<property name="currentIndex">
<number>0</number>
</property>
<property name="tabSpacing">
<number>4</number>
</property>
<widget class="QWidget" name="page_6">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1077</width>
<height>496</height>
</rect>
</property>
<attribute name="label">
<string>Prusa Configurations</string>
</attribute>
<widget class="QLabel" name="label_3">
<property name="geometry">
<rect>
<x>0</x>
<y>5</y>
<width>1056</width>
<height>20</height>
</rect>
</property>
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>The following configurable items have been identified</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QComboBox" name="printerlist">
<property name="geometry">
<rect>
<x>0</x>
<y>75</y>
<width>341</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>Printer Profiles - Describe the hardware part of your printer
If your printer does not show up here you migth be using a
standard Prusa Printer config which cannot be changed.
Save your printer profile under a new name and it should
show up here</string>
</property>
<property name="currentText">
<string/>
</property>
<property name="insertPolicy">
<enum>QComboBox::InsertAlphabetically</enum>
</property>
<property name="modelColumn">
<number>0</number>
</property>
</widget>
<widget class="QLabel" name="selPrtr">
<property name="geometry">
<rect>
<x>20</x>
<y>45</y>
<width>331</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Select Printer</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QMultiCombo" name="printlist">
<property name="geometry">
<rect>
<x>360</x>
<y>75</y>
<width>341</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>Print Profiles - Describe the print settings (like layer height, infile, ...)
part of your settings
If your print does not show up here you migth be using a
standard Prusa Print config which cannot be changed.
Save your print profile under a new name and it should
show up here</string>
</property>
<property name="currentText">
<string/>
</property>
<property name="insertPolicy">
<enum>QComboBox::InsertAlphabetically</enum>
</property>
<property name="sizeAdjustPolicy">
<enum>QComboBox::AdjustToMinimumContentsLength</enum>
</property>
<property name="minimumContentsLength">
<number>400</number>
</property>
<property name="modelColumn">
<number>0</number>
</property>
</widget>
<widget class="QLabel" name="selPrtr_2">
<property name="geometry">
<rect>
<x>375</x>
<y>45</y>
<width>311</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Select Print Configuration(s)</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QMultiCombo" name="filamentlist">
<property name="geometry">
<rect>
<x>715</x>
<y>75</y>
<width>341</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>Filament Profiles - Describe the filament specific
parameters (temperatures, fan settings, ...)
If your filament does not show up here you migth
be using a standard Prusa filament config which
cannot be changed. Save your filament profile
under a new name and it should show up here</string>
</property>
<property name="currentText">
<string/>
</property>
<property name="insertPolicy">
<enum>QComboBox::InsertAlphabetically</enum>
</property>
<property name="sizeAdjustPolicy">
<enum>QComboBox::AdjustToMinimumContentsLength</enum>
</property>
<property name="minimumContentsLength">
<number>400</number>
</property>
<property name="modelColumn">
<number>0</number>
</property>
</widget>
<widget class="QLabel" name="selPrtr_3">
<property name="geometry">
<rect>
<x>725</x>
<y>45</y>
<width>311</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Filament Configurations</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QCheckBox" name="backup">
<property name="geometry">
<rect>
<x>270</x>
<y>365</y>
<width>576</width>
<height>25</height>
</rect>
</property>
<property name="text">
<string>I have made a backup of my configurations prior to running this utility</string>
</property>
<property name="checked">
<bool>false</bool>
</property>
</widget>
<widget class="QPushButton" name="applyConfig">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>435</x>
<y>410</y>
<width>251</width>
<height>30</height>
</rect>
</property>
<property name="text">
<string>APPLY CONFIG</string>
</property>
</widget>
<widget class="QDropTarget" name="droptgt_canvas">
<property name="geometry">
<rect>
<x>740</x>
<y>200</y>
<width>166</width>
<height>111</height>
</rect>
</property>
<property name="toolTip">
<string>Drag a Palette 2 GCODE file over this target to
automatically retrieve the Printer Profile ID</string>
</property>
<property name="text">
<string>DRAG WORKING
CANVAS GCODE
HERE</string>
</property>
</widget>
<widget class="QLabel" name="label_26">
<property name="geometry">
<rect>
<x>600</x>
<y>125</y>
<width>421</width>
<height>56</height>
</rect>
</property>
<property name="text">
<string>Use the drop target below to retrieve the Profile ID from the GCODE of a print you performed before (e.g. with Canvas)</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
<widget class="QCheckBox" name="includeDefault">
<property name="geometry">
<rect>
<x>100</x>
<y>235</y>
<width>386</width>
<height>25</height>
</rect>
</property>
<property name="text">
<string>Add prusa Default items to dropdown</string>
</property>
</widget>
</widget>
<widget class="QWidget" name="page_3">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1077</width>
<height>496</height>
</rect>
</property>
<attribute name="label">
<string>Basic P2PP Configuration </string>
</attribute>
<widget class="QLabel" name="PrinterProfile">
<property name="geometry">
<rect>
<x>135</x>
<y>15</y>
<width>226</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Printer Profile</string>
</property>
</widget>
<widget class="QLineEdit" name="printerprofile">
<property name="geometry">
<rect>
<x>370</x>
<y>15</y>
<width>341</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>The printer ID should be retrieved fom a GCODE file that
was printed with YOUR Palette 2. You can manually
retrieve the Printer Profile from the this or you can
drag/drop the file to the Prusa Conifiguration tab
drop target to retrieve it automatically</string>
</property>
<property name="inputMask">
<string>HHHHHHHHHHHHHHHH</string>
</property>
<property name="text">
<string/>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="placeholderText">
<string>Copy your pinter profile ID here</string>
</property>
</widget>
<widget class="QLabel" name="spliceoffset_lbl">
<property name="geometry">
<rect>
<x>135</x>
<y>55</y>
<width>226</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Splice Offset</string>
</property>
</widget>
<widget class="QLineEdit" name="spliceoffset">
<property name="geometry">
<rect>
<x>370</x>
<y>55</y>
<width>113</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>Splicing offset is the amount of extra filament
that is generated AFTER the color change.
The purpose of this function is to assure the
transition to the new color is still with the wipe
tower even if the finalemnt consumption was
higher. Downside of this parameter is that this
length comes on top of the purge length for each
transition. It is important to well tune your
printer so this value can be reduced as much
as possible</string>
</property>
<property name="inputMask">
<string>900</string>
</property>
<property name="text">
<string>40</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_5">
<property name="geometry">
<rect>
<x>490</x>
<y>55</y>
<width>76</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>mm</string>
</property>
</widget>
<widget class="QLabel" name="label_25">
<property name="geometry">
<rect>
<x>135</x>
<y>95</y>
<width>226</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Extra filament at end of print</string>
</property>
</widget>
<widget class="QLineEdit" name="extrafilament">
<property name="geometry">
<rect>
<x>370</x>
<y>95</y>
<width>113</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>Printers have a certain distance between
the extruder motor and the hot end.
This can be a short distance with a directly
driven extruder, but can be fairly long on
a bowden setup. The length specified
here should be the length of the distance
between the nozzle tip end the extruder
motor plus 50-100mm to allow for
overconsumption and to make the filament
easy to unload</string>
</property>
<property name="inputMask">
<string>9000</string>
</property>
<property name="text">
<string>150</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_6">
<property name="geometry">
<rect>
<x>490</x>
<y>95</y>
<width>76</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>mm</string>
</property>
</widget>
<widget class="Line" name="line">
<property name="geometry">
<rect>
<x>45</x>
<y>140</y>
<width>1001</width>
<height>16</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
<widget class="QCheckBox" name="consolewait">
<property name="geometry">
<rect>
<x>135</x>
<y>170</y>
<width>906</width>
<height>25</height>
</rect>
</property>
<property name="toolTip">
<string>Keeps the window open even if there
are no processing warnings</string>
</property>
<property name="text">
<string>Keep window open after successfull termination</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
<widget class="QCheckBox" name="saveunprocessed">
<property name="geometry">
<rect>
<x>135</x>
<y>210</y>
<width>861</width>
<height>25</height>
</rect>
</property>
<property name="toolTip">
<string>Saves the input file with a suffix _unprocessed
so it can be used for comparison/debugging
purposes later (this file may be asked for if
there are issues witht he processed dcode.</string>
</property>
<property name="text">
<string>Keep a copy of the unprocessed file for debugging/support purposes</string>
</property>
</widget>
<widget class="QCheckBox" name="absoluteextruder">
<property name="geometry">
<rect>
<x>135</x>
<y>255</y>
<width>866</width>
<height>25</height>
</rect>
</property>
<property name="toolTip">
<string>Convert the gcode file to absolute
extrusion when writing the output file
(input files ALWAYS have to be
relative extrusion files)</string>
</property>
<property name="text">
<string>Convert the output file to absolute extrusions</string>
</property>
</widget>
<widget class="QCheckBox" name="convertfilename">
<property name="geometry">
<rect>
<x>135</x>
<y>295</y>
<width>921</width>
<height>25</height>
</rect>
</property>
<property name="toolTip">
<string>Palette uses an .mcf. infix in their filename
to drive the "PALETTE" flag on the octoprint
display. This setting will add this
functionality to your gcode output file</string>
</property>
<property name="text">
<string>add .mcf Palette indicator to output filename</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
<widget class="QCheckBox" name="linearping_enable">
<property name="geometry">
<rect>
<x>135</x>
<y>335</y>
<width>441</width>
<height>25</height>
</rect>
</property>
<property name="toolTip">
<string>PINGS are a main feature of Palette to keep
the filament creeation and the printer synced
up. By default, palette increases the
distance between pings by 3 or 4% per ping.
This setting keeps the pings constant so
they are evensly spaced in the entire print
and the level of correction is the same
throughout the whole print. The minimal
Ping length is 350mm.</string>
</property>
<property name="text">
<string>Enable Linear Ping feature</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
<widget class="QLabel" name="label_7">
<property name="geometry">
<rect>
<x>205</x>
<y>380</y>
<width>241</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Linear ping length (>350mm)</string>
</property>
</widget>
<widget class="QLineEdit" name="linearping">
<property name="geometry">
<rect>
<x>445</x>
<y>380</y>
<width>113</width>
<height>23</height>
</rect>
</property>
<property name="inputMask">
<string>9990</string>
</property>
<property name="text">
<string>350</string>
</property>
<property name="maxLength">
<number>4</number>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_8">
<property name="geometry">
<rect>
<x>570</x>
<y>385</y>
<width>76</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>mm</string>
</property>
</widget>
</widget>
<widget class="QWidget" name="page_7">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1077</width>
<height>496</height>
</rect>
</property>
<attribute name="label">
<string>Basic Material Definitions</string>
</attribute>
<widget class="QTextBrowser" name="materials">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>1041</width>
<height>471</height>
</rect>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
<property name="html">
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Arial'; font-size:11pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">; P2PP - MATERIAL SPLICING INFORMATION</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">; P2PP - All lines should be prefiex by ;P2PP MATERIAL_&lt;material_1&gt;_&lt;material_2&gt;_heating_compression_cooling</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">; P2PP - &lt;material_1&gt; is the OUTGOING material</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">; P2PP - &lt;material_2&gt; is the INCOMING material</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">; P2PP - heating cooling and compression are the parameters taken from splice tuning</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">; P2PP - MATERIAL_DEFAULT specifies the factors in case the conbination of spliced materials is not found</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">;P2PP MATERIAL_DEFAULT_0_0_0</p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">;P2PP MATERIAL_PLA_PLA_0_0_0 </p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">;P2PP MATERIAL_PLA_PLA_0_0_0 </p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></string>
</property>
<property name="acceptRichText">
<bool>false</bool>
</property>
</widget>
</widget>
<widget class="QWidget" name="page_4">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1077</width>
<height>496</height>
</rect>
</property>
<attribute name="label">
<string>Sidewipe / BB3D Configuration</string>
</attribute>
<widget class="QCheckBox" name="sidewipe_enable">
<property name="geometry">
<rect>
<x>65</x>
<y>10</y>
<width>941</width>
<height>25</height>
</rect>
</property>
<property name="toolTip">
<string>Create a SIDEWIPE specific setup</string>
</property>
<property name="text">
<string>Add SideWipe setup to the default P2PP configuration</string>
</property>
</widget>
<widget class="QLabel" name="sidewipe_x">
<property name="geometry">
<rect>
<x>100</x>
<y>50</y>
<width>241</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>SideWipe X-Position</string>
</property>
</widget>
<widget class="QLabel" name="sidewipe_x_2">
<property name="geometry">
<rect>
<x>100</x>
<y>80</y>
<width>241</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>SideWipe Minimal Y-Position</string>
</property>
</widget>
<widget class="QLabel" name="sidewipe_x_3">
<property name="geometry">
<rect>
<x>100</x>
<y>110</y>
<width>241</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>SideWipe Maximal Y-Position</string>
</property>
</widget>
<widget class="QLineEdit" name="sw_xloc">
<property name="geometry">
<rect>
<x>390</x>
<y>50</y>
<width>113</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>X-Location at which purge will occur</string>
</property>
<property name="inputMask">
<string>#9000.000</string>
</property>
<property name="text">
<string>254.00</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLineEdit" name="sw_miny">
<property name="geometry">
<rect>
<x>390</x>
<y>80</y>
<width>113</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>During side wipe the Y-location will alter between
Y-Min and Y-Max whie extruding. If you don't
want the carriage to move, you can make
the extrusion STATIC. Wipe Feedrate will
be lowered to 200 when performing static
extrusion</string>
</property>
<property name="inputMask">
<string>#9000.000</string>
</property>
<property name="text">
<string>40.00</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLineEdit" name="sw_maxy">
<property name="geometry">
<rect>
<x>390</x>
<y>110</y>
<width>113</width>
<height>23</height>
</rect>
</property>
<property name="inputMask">
<string>#9000.000</string>
</property>
<property name="text">
<string>190.00</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QCheckBox" name="bb_enable">
<property name="geometry">
<rect>
<x>60</x>
<y>190</y>
<width>941</width>
<height>25</height>
</rect>
</property>
<property name="toolTip">
<string>Create a Big Brain 3D sidewipe SETUP
You will need additional BigBrain3D hardware in order to use this setting</string>
</property>
<property name="text">
<string>Add BB3D setup to the default P2PP configuration</string>
</property>
</widget>
<widget class="QLabel" name="sidewipe_x_4">
<property name="geometry">
<rect>
<x>100</x>
<y>140</y>
<width>241</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Wipe Feedrate</string>
</property>
</widget>
<widget class="QLineEdit" name="sw_wipeFeedrate">
<property name="geometry">
<rect>
<x>390</x>
<y>140</y>
<width>113</width>
<height>23</height>
</rect>
</property>
<property name="toolTip">
<string>Rate at which side wipe purge/movemnt is handled.
When static purge is used (YMIN=YMAX), the value
will be reduced to 200. When the vale is too high, the
hot end may no longer be able to melt the filament
in time and the print will get out of sync with Palette 2</string>
</property>
<property name="inputMask">
<string>99999</string>
</property>
<property name="text">
<string>3000</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="label_10">
<property name="geometry">
<rect>
<x>100</x>
<y>235</y>
<width>266</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Big Brain 3D BLOB Size (mm)</string>
</property>
</widget>
<widget class="QLabel" name="label_11">
<property name="geometry">
<rect>
<x>100</x>
<y>265</y>
<width>266</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Big Brain 3D COOLING time (s)</string>
</property>
</widget>
<widget class="QLabel" name="label_12">
<property name="geometry">
<rect>
<x>100</x>
<y>295</y>
<width>266</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Big Brain 3D Purge X Position</string>
</property>
</widget>
<widget class="QLabel" name="label_13">
<property name="geometry">
<rect>
<x>100</x>
<y>325</y>
<width>266</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Big Brain 3D Motor HIGH Power</string>
</property>
</widget>
<widget class="QLabel" name="label_14">
<property name="geometry">
<rect>
<x>100</x>
<y>355</y>
<width>266</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>Big Brain 3D Motor LOW Power</string>
</property>
</widget>
<widget class="QLabel" name="label_15">
<property name="geometry">
<rect>
<x>100</x>
<y>385</y>