summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Look/Views/USBPCA.qml
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Core/src/components/qt_hmi/References/Look/Views/USBPCA.qml')
-rw-r--r--SDL_Core/src/components/qt_hmi/References/Look/Views/USBPCA.qml49
1 files changed, 49 insertions, 0 deletions
diff --git a/SDL_Core/src/components/qt_hmi/References/Look/Views/USBPCA.qml b/SDL_Core/src/components/qt_hmi/References/Look/Views/USBPCA.qml
new file mode 100644
index 000000000..0b1b47270
--- /dev/null
+++ b/SDL_Core/src/components/qt_hmi/References/Look/Views/USBPCA.qml
@@ -0,0 +1,49 @@
+// 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: 2
+ //attachedViews: ["Chrome"]
+
+
+
+
+ view: FView {
+ id: v
+
+ layout: USBLayoutPCA {
+ id:home
+ sourceBtn.text: "USB"
+ sourceBtn.textWidth: 50
+ playing: true
+ }
+
+
+ }
+
+
+
+ triggers: [
+
+
+
+ FTrgTouchArea { touchArea:home.sourceBtn.touchBtn; touchAction: TA.Out
+ FActViewShow { view: "SourceChangePCA" }
+ },
+ FTrgTouchArea { touchArea:home.play; touchAction: TA.Out
+ FActScriptCall { onScript: home.playing = false }
+ },
+ FTrgTouchArea { touchArea:home.pause; touchAction: TA.Out
+ FActScriptCall { onScript: home.playing = true }
+ },
+ FTrgEvent { event: closeNormalScreens
+ FActViewHide{}
+ }
+
+ ]
+}