2020-03-12 01:45:47 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
2020-03-28 22:18:00 +11:00
|
|
|
import "../ShortcutBundles"
|
2020-03-12 01:45:47 +11:00
|
|
|
|
|
|
|
HPage {
|
|
|
|
property alias flickable: flickable
|
|
|
|
default property alias columnData: column.data
|
|
|
|
|
|
|
|
|
|
|
|
HFlickable {
|
|
|
|
id: flickable
|
|
|
|
anchors.fill: parent
|
|
|
|
clip: true
|
|
|
|
contentWidth: parent.width
|
|
|
|
contentHeight: column.childrenRect.height
|
|
|
|
|
2020-03-28 22:18:00 +11:00
|
|
|
FlickShortcuts {
|
2020-04-01 23:01:13 +11:00
|
|
|
active: ! mainUI.debugConsole.visible
|
2020-03-28 22:18:00 +11:00
|
|
|
flickable: flickable
|
|
|
|
}
|
|
|
|
|
2020-03-12 01:45:47 +11:00
|
|
|
HColumnLayout {
|
|
|
|
id: column
|
|
|
|
width: flickable.width
|
|
|
|
height: flickable.height
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|