TabView {
id: pd_top_tabView
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
anchors.topMargin: 10
anchors.bottom: parent.bottom
anchors.bottomMargin: pd_bottom_bar.visible ? 45 : 0
onCurrentIndexChanged: {
console.log("current index = " + currentIndex)
}
style: TabViewStyle {
tabBar: Rectangle {
color: "#FFF0F0F0"
}
tab: Rectangle {
function getTabImage() {
if(styleData.selected) {
return "qrc:/images/tab_active.png";
}
else {
return &#