2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-12-04 23:35:33 +00:00
|
|
|
|
2021-02-09 17:06:54 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2011-12-04 23:35:33 +00:00
|
|
|
|
2016-09-22 12:22:26 +00:00
|
|
|
Column {
|
2011-12-04 23:35:33 +00:00
|
|
|
id: root
|
2016-09-22 12:22:26 +00:00
|
|
|
spacing: 8
|
2011-12-04 23:35:33 +00:00
|
|
|
|
2021-02-09 17:06:54 +00:00
|
|
|
Label {
|
2016-09-22 12:22:26 +00:00
|
|
|
text: "Total number of screens: " + screenInfo.count
|
|
|
|
font.bold: true
|
2013-02-21 08:16:56 +00:00
|
|
|
}
|
2011-12-04 23:35:33 +00:00
|
|
|
|
2016-09-22 12:22:26 +00:00
|
|
|
Flow {
|
|
|
|
spacing: 12
|
|
|
|
width: parent.width
|
2011-12-04 23:35:33 +00:00
|
|
|
|
2016-09-22 12:22:26 +00:00
|
|
|
Repeater {
|
|
|
|
id: screenInfo
|
2021-05-03 08:45:55 +00:00
|
|
|
model: (Qt.application as Application).screens
|
2021-02-09 17:06:54 +00:00
|
|
|
Label {
|
2019-09-17 16:10:59 +00:00
|
|
|
required property string name
|
|
|
|
required property int virtualX
|
|
|
|
required property int virtualY
|
2020-03-24 14:54:58 +00:00
|
|
|
required property var modelData // avoid shadowing Label.width and height
|
2019-09-17 16:10:59 +00:00
|
|
|
|
2016-09-22 12:22:26 +00:00
|
|
|
lineHeight: 1.5
|
2020-03-24 14:54:58 +00:00
|
|
|
text: name + "\n" + virtualX + ", " + virtualY + " " + modelData.width + "x" + modelData.height
|
2016-09-22 12:22:26 +00:00
|
|
|
}
|
2011-12-04 23:35:33 +00:00
|
|
|
}
|
2016-09-22 12:22:26 +00:00
|
|
|
}
|
2013-02-21 08:16:56 +00:00
|
|
|
|
2016-09-22 12:22:26 +00:00
|
|
|
Component.onCompleted: {
|
2021-05-03 08:45:55 +00:00
|
|
|
var screens = (Qt.application as Application).screens;
|
2016-09-22 12:22:26 +00:00
|
|
|
for (var i = 0; i < screens.length; ++i)
|
|
|
|
console.log("screen " + screens[i].name + " has geometry " +
|
|
|
|
screens[i].virtualX + ", " + screens[i].virtualY + " " +
|
|
|
|
screens[i].width + "x" + screens[i].height)
|
2011-12-04 23:35:33 +00:00
|
|
|
}
|
|
|
|
}
|