123456789101112131415161718192021222324252627282930313233343536373839 |
- import QtQuick 2.7
- import "helpers" as Helpers
- Item {
- width: 400
- height: 400
- property alias showUnit: showUnit
- Helpers.ShowUnit {
- id: showUnit
- anchors.bottomMargin: 40
- anchors.fill: parent
- }
- Item {
- id: pageNameLayout
- height: 40
- anchors.right: parent.right
- anchors.rightMargin: 0
- anchors.left: parent.left
- anchors.leftMargin: 0
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 0
- Text {
- id: pageName
- text: qsTr("Данные")
- anchors.fill: parent
- font.pixelSize: parent.width > 300 ? 24 : 12
- verticalAlignment: Text.AlignVCenter
- horizontalAlignment: Text.AlignHCenter
- renderType: Text.QtRendering
- font.capitalization: Font.MixedCase
- }
- }
- }
|