forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
54 lines
881 B
QML
54 lines
881 B
QML
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
import QtQuick 2.10
|
|
import QtQuick.Window 2.10
|
|
|
|
Window {
|
|
visible: true
|
|
width: 180
|
|
height: 215
|
|
|
|
PixelMeter {
|
|
width: 60
|
|
height: 40
|
|
x: 0
|
|
y: 0
|
|
}
|
|
|
|
PixelMeter {
|
|
x: 60
|
|
y: 40
|
|
width: 120
|
|
height: 175
|
|
|
|
PixelMeter {
|
|
x: 80
|
|
y: 40
|
|
width: 40
|
|
height: 40
|
|
}
|
|
|
|
PixelMeter {
|
|
x: 80
|
|
y: 0
|
|
width: 40
|
|
height: 40
|
|
}
|
|
|
|
PixelMeter {
|
|
x: 40
|
|
y: 0
|
|
width: 40
|
|
height: 40
|
|
}
|
|
|
|
PixelMeter {
|
|
x: 40
|
|
y: 40
|
|
width: 40
|
|
height: 40
|
|
}
|
|
}
|
|
}
|