2020-03-11 10:45:47 -04:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
2020-03-28 07:18:00 -04:00
|
|
|
import "../ShortcutBundles"
|
2020-03-11 10:45:47 -04: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 07:18:00 -04:00
|
|
|
FlickShortcuts {
|
2020-04-01 08:01:13 -04:00
|
|
|
active: ! mainUI.debugConsole.visible
|
2020-03-28 07:18:00 -04:00
|
|
|
flickable: flickable
|
|
|
|
}
|
|
|
|
|
2020-03-11 10:45:47 -04:00
|
|
|
HColumnLayout {
|
|
|
|
id: column
|
|
|
|
width: flickable.width
|
|
|
|
height: flickable.height
|
|
|
|
}
|
|
|
|
}
|
2020-05-18 11:53:26 -03:00
|
|
|
|
2020-05-20 23:03:36 -03:00
|
|
|
HKineticScrollingDisabler {
|
2020-05-18 11:53:26 -03:00
|
|
|
flickable: flickable
|
|
|
|
anchors.fill: flickable
|
|
|
|
}
|
2020-03-11 10:45:47 -04:00
|
|
|
}
|