no message
parent
d29cee3d5a
commit
d74b58bd3e
|
@ -0,0 +1,4 @@
|
||||||
|
[requires]
|
||||||
|
lua/1.1.1
|
||||||
|
[imports]
|
||||||
|
.,* -> ./third @ folder=True, ignore_case=True, excludes=*.html *.jpeg
|
|
@ -17,8 +17,6 @@ int main(int argc, char *argv[])
|
||||||
QCoreApplication::exit(-1);
|
QCoreApplication::exit(-1);
|
||||||
}, Qt::QueuedConnection);
|
}, Qt::QueuedConnection);
|
||||||
engine.load(url);
|
engine.load(url);
|
||||||
Dialog a;
|
|
||||||
a.show();
|
|
||||||
|
|
||||||
return app.exec();
|
return app.exec();
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,14 +11,12 @@ ApplicationWindow {
|
||||||
visible: true
|
visible: true
|
||||||
minimumHeight: 600
|
minimumHeight: 600
|
||||||
minimumWidth: 800
|
minimumWidth: 800
|
||||||
maximumWidth: 1024
|
|
||||||
maximumHeight: 800
|
|
||||||
|
|
||||||
Flow{
|
Flow{
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: parent.height
|
height: parent.height
|
||||||
spacing: 30 //子项的间隔
|
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: 80;
|
width: 80;
|
||||||
|
@ -33,12 +31,16 @@ ApplicationWindow {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height:60
|
height:60
|
||||||
onClicked: {
|
onClicked: {
|
||||||
console.log("shit")
|
console.log(uart_choose)
|
||||||
|
uart_choose.visible = true
|
||||||
|
net_choose = false
|
||||||
|
proto_debug = false
|
||||||
}
|
}
|
||||||
background: Image {
|
background: Image {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
source: "qrc:///res/serial.svg"
|
source: "qrc:///res/serial.svg"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
text: qsTr("串口设置")
|
text: qsTr("串口设置")
|
||||||
|
@ -59,7 +61,9 @@ ApplicationWindow {
|
||||||
source: "qrc:///res/net.svg"
|
source: "qrc:///res/net.svg"
|
||||||
}
|
}
|
||||||
onPressed:{
|
onPressed:{
|
||||||
|
uart_choose.visible = false
|
||||||
|
net_choose = true
|
||||||
|
proto_debug = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
|
@ -81,7 +85,9 @@ ApplicationWindow {
|
||||||
source: "qrc:///res/proto.svg"
|
source: "qrc:///res/proto.svg"
|
||||||
}
|
}
|
||||||
onPressed:{
|
onPressed:{
|
||||||
|
uart_choose.visible = false
|
||||||
|
net_choose = false
|
||||||
|
proto_debug = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
|
@ -94,22 +100,27 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Rectangle {
|
Rectangle {
|
||||||
color: "lightgray"
|
id: uart_choose
|
||||||
width: parent.width - 80;
|
width: parent.width - 80
|
||||||
height: parent.height
|
height: parent.height
|
||||||
border.width: 1
|
color: "grey"
|
||||||
radius: 5
|
visible: false
|
||||||
border.color: "lightgrey"
|
}
|
||||||
|
Rectangle {
|
||||||
|
objectName: net_choose
|
||||||
|
width: parent.width - 80
|
||||||
|
height: parent.height
|
||||||
|
color: "grey"
|
||||||
|
visible: false
|
||||||
|
}
|
||||||
|
Rectangle {
|
||||||
|
objectName: proto_debug
|
||||||
|
width: parent.width - 80
|
||||||
|
height: parent.height
|
||||||
|
color: "grey"
|
||||||
|
visible: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*##^##
|
|
||||||
Designer {
|
|
||||||
D{i:6;anchors_width:120}
|
|
||||||
}
|
|
||||||
##^##*/
|
|
||||||
|
|
Loading…
Reference in New Issue