summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Look/WidgetLayouts/SimpleItemWdgLayout.qml
blob: d2dc8092bdc4cd6a93ffadcf9bac46a07fc59229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// import QtQuick 2.0 // to target S60 5th Edition or Maemo 5
import QtQuick 2.0
import com.ford.hmiframework 1.0

import "../Widgets"

FLayout {

    id: theItem
    height: 50; width: 50
    property bool vis: true

    property alias cx_text : cx.text

    Item{

       FWdgtText{
           color:"White"
           id: cx
           width: 302; height: 45
           visible: vis
       }
    }
}