|
@@ -23,7 +23,7 @@ Item {
|
|
|
anchors.top: parent.top
|
|
anchors.top: parent.top
|
|
|
anchors.right: parent.right
|
|
anchors.right: parent.right
|
|
|
anchors.left: parent.left
|
|
anchors.left: parent.left
|
|
|
- rows: 1
|
|
|
|
|
|
|
+ rows: 3
|
|
|
columns: 8
|
|
columns: 8
|
|
|
columnSpacing: 5
|
|
columnSpacing: 5
|
|
|
|
|
|
|
@@ -31,8 +31,9 @@ Item {
|
|
|
id: columnLayout1
|
|
id: columnLayout1
|
|
|
width: 100
|
|
width: 100
|
|
|
height: 100
|
|
height: 100
|
|
|
- Layout.columnSpan: 3
|
|
|
|
|
- Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
|
|
|
|
|
|
|
+ Layout.fillHeight: true
|
|
|
|
|
+ Layout.columnSpan: 1
|
|
|
|
|
+ Layout.alignment: Qt.AlignRight | Qt.AlignTop
|
|
|
Layout.maximumWidth: 5000
|
|
Layout.maximumWidth: 5000
|
|
|
|
|
|
|
|
Button {
|
|
Button {
|
|
@@ -56,14 +57,9 @@ Item {
|
|
|
text: qsTr("Limpiar")
|
|
text: qsTr("Limpiar")
|
|
|
Layout.fillWidth: true
|
|
Layout.fillWidth: true
|
|
|
}
|
|
}
|
|
|
- Button {
|
|
|
|
|
- id: button3
|
|
|
|
|
- text: qsTr("Break")
|
|
|
|
|
- Layout.rowSpan: 11
|
|
|
|
|
- Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
|
|
|
|
|
- Layout.fillWidth: true
|
|
|
|
|
- }
|
|
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
MouseArea {
|
|
@@ -74,4 +70,24 @@ Item {
|
|
|
height: 250
|
|
height: 250
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ ColumnLayout {
|
|
|
|
|
+ id: columnLayout2
|
|
|
|
|
+ x: 337
|
|
|
|
|
+ y: 108
|
|
|
|
|
+ width: 100
|
|
|
|
|
+ height: 100
|
|
|
|
|
+ Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
|
|
|
|
|
+
|
|
|
|
|
+ Button {
|
|
|
|
|
+ id: button3
|
|
|
|
|
+ text: qsTr("Break")
|
|
|
|
|
+ isDefault: false
|
|
|
|
|
+ checkable: false
|
|
|
|
|
+ Layout.fillHeight: false
|
|
|
|
|
+ Layout.rowSpan: 11
|
|
|
|
|
+ Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
|
|
|
|
|
+ Layout.fillWidth: true
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|