summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/Views/PCAstatusBar.qml
blob: e235f9c159f3ca9e6dfb97ccfa8773ad2483b8a1 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
// import QtQuick 2.0 // to target S60 5th Edition or Maemo 5
import QtQuick 2.0
import com.ford.hmiframework 1.0
import "../Layouts"
import "../Animations"
import "../Widgets"
import ".."

FStateView {
    priority: 8


    view: FView {
        id: v

        layout: PCAstatusBarLayout {
            id:statusBar

        }

    }



    triggers: [



        FTrgTouchArea { touchArea:statusBar.menuTouch; touchAction: TA.Out
            FActViewShow { view: "GridMenuPCA" }
        },
        FTrgEvent { event: closeNormalScreens
            FActViewHide{}
        }

    ]
}