Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • v1.1.0
  • 1.1.2
  • v1.2.0
  • 1.0.2
  • v1.0.1-a
  • v1.0.1
  • v1.0
  • v0.3
  • v0.2
  • v0.1.1
  • v0.1
12 results

Panel.qml

Blame
  • Panel.qml 494 B
    import QtQuick 2.0
    
    Rectangle {
        id: panel
    
        property alias text: panelTitle.text
        property alias panelWidth: panel.width
        property alias panelHeigth: panel.height
        property alias panelEnabled: panel.enabled
    
        x: 10
        border.color: "lightgrey"
        border.width: 2
        radius: 4
    
        Rectangle {
            id: panelTitleContainer
            width: 100
            height: 10
    
            Text {
                id: panelTitle
                anchors.verticalCenter: parent.top
            }
        }
    }