mirror of
https://github.com/kbumsik/VirtScreen.git
synced 2025-02-15 04:41:50 +00:00
Fix continue
This commit is contained in:
parent
0d01fa0816
commit
3dfa0f92e3
1 changed files with 11 additions and 4 deletions
|
@ -22,6 +22,10 @@ ApplicationWindow {
|
||||||
height: 540
|
height: 540
|
||||||
property int margin: 10
|
property int margin: 10
|
||||||
property int popupWidth: width - 26
|
property int popupWidth: width - 26
|
||||||
|
|
||||||
|
screen: Qt.application.screens[0]
|
||||||
|
x: screen.virtualX
|
||||||
|
y: screen.virtualY
|
||||||
|
|
||||||
// hide screen when loosing focus
|
// hide screen when loosing focus
|
||||||
property bool autoClose: true
|
property bool autoClose: true
|
||||||
|
@ -46,7 +50,7 @@ ApplicationWindow {
|
||||||
menuBar: ToolBar {
|
menuBar: ToolBar {
|
||||||
id: toolbar
|
id: toolbar
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
font.pointSize: 11 //parent.font.pointSize + 1
|
font.pixelSize: height * 0.3
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
@ -152,24 +156,27 @@ ApplicationWindow {
|
||||||
Text {
|
Text {
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
font { weight: Font.Bold; pointSize: 15 }
|
font { weight: Font.Bold; pixelSize: 15 }
|
||||||
text: "VirtScreen" + " v" + settings.version
|
text: "VirtScreen" + " v" + settings.version
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
font { pixelSize: 10 }
|
||||||
text: "Make your iPad/tablet/computer<br/>as a secondary monitor.<br/>"
|
text: "Make your iPad/tablet/computer<br/>as a secondary monitor.<br/>"
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
|
font { pixelSize: 11 }
|
||||||
text: "- <a href='https://github.com/kbumsik/VirtScreen'>Project Website</a>"
|
text: "- <a href='https://github.com/kbumsik/VirtScreen'>Project Website</a>"
|
||||||
onLinkActivated: Qt.openUrlExternally(link)
|
onLinkActivated: Qt.openUrlExternally(link)
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
|
font { pixelSize: 11 }
|
||||||
text: "- <a href='https://github.com/kbumsik/VirtScreen/issues'>Issues & Bug Report</a>"
|
text: "- <a href='https://github.com/kbumsik/VirtScreen/issues'>Issues & Bug Report</a>"
|
||||||
onLinkActivated: Qt.openUrlExternally(link)
|
onLinkActivated: Qt.openUrlExternally(link)
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
font { pointSize: 10 }
|
font { pixelSize: 10 }
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
lineHeight: 0.7
|
lineHeight: 0.7
|
||||||
|
@ -177,7 +184,7 @@ ApplicationWindow {
|
||||||
onLinkActivated: Qt.openUrlExternally(link)
|
onLinkActivated: Qt.openUrlExternally(link)
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
font { pointSize: 9 }
|
font { pixelSize: 9 }
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
text: "This program comes with absolutely no warranty.<br/>" +
|
text: "This program comes with absolutely no warranty.<br/>" +
|
||||||
|
|
Loading…
Reference in a new issue