Newer
Older
//****************************************************************************
// Implements the right panel widget.
//****************************************************************************
import QtQuick 2.4
import QtQuick.Controls 2.0
Andrey Daragan
committed
// Right panel widget
property alias dapRightPanel: rightPanel
// Right pane title widget
property alias dapHeader: header
// Right pane header data
property Item dapHeaderData: Item { }
//
property alias dapChildRightPanels: childRightPanels
//
property Item dapContentItemPanel: Item { }
Andrey Daragan
committed
dapRightPanel.anchors.top: parent.top
dapRightPanel.anchors.bottom: parent.bottom
dapRightPanel.anchors.right: parent.right
Andrey Daragan
committed
Item
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
}
Andrey Daragan
committed
StackView
{
id: childRightPanels
initialItem: dapContentItemPanel
Andrey Daragan
committed
anchors.top: dapHeader.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
}