AusweisApp2/resources/qml/NavigationItem.qml
2017-07-03 09:30:10 +02:00

34 lines
677 B
QML

import QtQuick 2.5
import "global"
Item {
property alias source: tabImage.source
property alias text: tabText.text
property alias textColor: tabText.color
signal clicked
Image {
id: tabImage
anchors.horizontalCenter: parent.horizontalCenter
anchors.topMargin: 5
anchors.top: parent.top
anchors.bottom: tabText.top
fillMode: Image.PreserveAspectFit
}
Text {
id: tabText
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.bottomMargin: font.pixelSize / 10
font.pixelSize: Constants.tabbar_font_size
renderType: Text.NativeRendering
}
MouseArea {
anchors.fill: parent
onClicked: parent.clicked()
}
}