TitleBar

component fbx.ui.control.Titlebar

Titlebar is a basic indicator that shows a line of text adapted to informative display next to a control.

../../../_images/titlebar.png

Titlebars next to some buttons.

Page {
    TitleBar {
        id: title
        text: "Parameters"
        anchors {
            top: parent.top
            left: parent.left
            right: parent.right
        }
    }

    FocusShower {
        text: "Foo"

        anchors {
            top: title.bottom
            left: parent.left
            right: parent.right
            bottom: parent.bottom
        }
    }
}
property text

Text string shown.