blob: 19ff0822cdcf5dd15b9ba836766475c2c0a092ad (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SolverCfgWidget</class>
<widget class="SolverCfgWidget" name="solverCfgWidget">
<layout class="QVBoxLayout">
<item>
<layout class="QHBoxLayout">
<item>
<widget class="QLineEdit" name="scrambleEditor">
<property name="placeholderText">
<string>Enter your scramble here...</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="solveButton">
<property name="text">
<string>Solve!</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout">
<item>
<widget class="QLabel">
<property name="text">
<string>Min moves</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="minMovesEditor">
<property name="maximumSize">
<size>
<width>25</width>
<height>20</height>
</size>
</property>
<property name="text">
<string>0</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel">
<property name="text">
<string>Max moves</string>
</property>
</widget>
</item>>
<item>
<widget class="QLineEdit" name="maxMovesEditor">
<property name="maximumSize">
<size>
<width>25</width>
<height>20</height>
</size>
</property>
<property name="text">
<string>20</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</ui>
|