forked from qt-creator/qt-creator
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...
While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only
Change was done by running
find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;
Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
136 lines
2.1 KiB
QML
136 lines
2.1 KiB
QML
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
import QtQuick 2.0
|
|
import QtQuick.Layouts 1.0
|
|
import QtQuick.Controls 1.2
|
|
|
|
Rectangle {
|
|
width: 640
|
|
height: 480
|
|
|
|
Label {
|
|
id: label1
|
|
x: 8
|
|
y: 11
|
|
text: qsTr("Name")
|
|
}
|
|
|
|
Label {
|
|
id: label2
|
|
x: 8
|
|
y: 43
|
|
text: qsTr("Status")
|
|
}
|
|
|
|
Label {
|
|
id: label3
|
|
x: 8
|
|
y: 62
|
|
text: qsTr("Type")
|
|
}
|
|
|
|
Label {
|
|
id: label4
|
|
x: 8
|
|
y: 81
|
|
text: qsTr("Where")
|
|
}
|
|
|
|
Label {
|
|
id: label5
|
|
x: 8
|
|
y: 100
|
|
text: qsTr("Comment")
|
|
}
|
|
|
|
ComboBox {
|
|
id: comboBox1
|
|
x: 63
|
|
y: 8
|
|
width: 171
|
|
height: 20
|
|
}
|
|
|
|
Button {
|
|
id: button1
|
|
x: 247
|
|
y: 6
|
|
text: qsTr("Button")
|
|
}
|
|
|
|
Label {
|
|
id: label6
|
|
x: 63
|
|
y: 43
|
|
text: qsTr("Idle")
|
|
}
|
|
|
|
Label {
|
|
id: label7
|
|
x: 63
|
|
y: 62
|
|
text: qsTr("HP Deskjet")
|
|
}
|
|
|
|
Label {
|
|
id: label8
|
|
x: 63
|
|
y: 81
|
|
text: qsTr("LPT 1")
|
|
}
|
|
|
|
CheckBox {
|
|
id: checkBox1
|
|
x: 247
|
|
y: 69
|
|
text: qsTr("Print to file")
|
|
}
|
|
|
|
RadioButton {
|
|
id: radioButton1
|
|
x: 8
|
|
y: 198
|
|
text: qsTr("All")
|
|
}
|
|
|
|
RadioButton {
|
|
id: radioButton2
|
|
x: 8
|
|
y: 221
|
|
text: qsTr("Current page")
|
|
}
|
|
|
|
RadioButton {
|
|
id: radioButton3
|
|
x: 114
|
|
y: 221
|
|
text: qsTr("Selection")
|
|
}
|
|
|
|
RadioButton {
|
|
id: radioButton4
|
|
x: 8
|
|
y: 244
|
|
text: qsTr("Pages")
|
|
}
|
|
|
|
TextField {
|
|
id: textField1
|
|
x: 114
|
|
y: 244
|
|
placeholderText: qsTr("Text Field")
|
|
}
|
|
|
|
Label {
|
|
id: label9
|
|
x: 10
|
|
y: 280
|
|
width: 231
|
|
height: 13
|
|
text: qsTr("Some long description covering several lines with long explanations")
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
}
|
|
|