qtmobility/examples/declarative-sfw-dialer/sfwexample/sfwexample.qml
changeset 11 06b8e2af4411
parent 8 71781823f776
child 14 6fbed849b4f4
--- a/qtmobility/examples/declarative-sfw-dialer/sfwexample/sfwexample.qml	Thu May 27 13:42:11 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,158 +0,0 @@
-import Qt 4.7
-import QtMobility.serviceframework 1.0
-import "content"
-
-//Layout of the mainPage
-//----------------------------------------------  ____ mainPage
-//| ------------------- ---------------------- | /
-//| | dialerList     | | dialScreen         | |/
-//| |                 | |                    | |
-//| |                 | |                    | |
-//| |                 | |                    | |
-//| ------------------- |                    | |
-//| ------------------- |                    | |
-//| | serviceDetails  | |                    | |
-//| ------------------- |                    | |
-//|                     |                    | |
-//|                     |                    | |
-//|                     |                    | |
-//|                     |                    | |
-//| ------------------- |                    | |
-//| | status          | |                    | |
-//| ------------------- ---------------------- |
-//----------------------------------------------
-
-Rectangle {
-    property var dialerObject: defaultService.serviceObject
-    
-    id: mainPage
-    width: 500
-    height: 250
-    color: "white"
-
-    DialerList {
-        id: dialerList
-        height: childrenRect.height + 10
-        width: childrenRect.width
-        anchors.top: parent.top
-        anchors.left: parent.left
-        anchors.right: dialScreen.left
-        anchors.topMargin: 5
-        anchors.leftMargin: 5
-        anchors.rightMargin: 5
-        radius: 5
-        color: "steelblue"
-        border.color: "black"
-        border.width: 3
-        gradient:     
-            Gradient {
-                GradientStop {
-                    position: 0.0
-                    color: "lightsteelblue"
-                }
-                
-                GradientStop {
-                    position: 1.0
-                    color: "steelblue"
-                }
-            }
-        onSignalSelected: { serviceSelected(); }
-    }
-
-    function serviceSelected()
-    {
-        dialerObject = dialerList.dialService.serviceObject
-
-        serviceDetails.text = "Selected dial service:" + "\n   " + 
-                               dialerList.dialService.serviceName + 
-                               "\n   (" + dialerList.dialService.versionNumber + ")";
-    }
-    
-    Text {
-        id: serviceDetails
-        text: "Selected dial service:"
-        anchors.topMargin: 5
-        anchors.leftMargin: 5
-        anchors.rightMargin: 5;
-        anchors.left: parent.left
-        anchors.top: dialerList.bottom
-    }
-    
-    Text {
-        id: status
-        anchors.top: parent.bottom
-        anchors.left: parent.left
-        anchors.topMargin: -40
-        anchors.leftMargin: 5
-    }
-    
-    Timer {
-        id: clearStatusTimer
-        interval: 2000
-        running: false
-        repeat: false
-        onTriggered: {
-            status.text = ""
-        }
-    }
-
-    //! [0]
-    DialScreen {
-        id: dialScreen
-        property bool activeCall : false
-        property var currentDialer: 0;
-        anchors.topMargin: 5
-        anchors.leftMargin: 5
-        anchors.rightMargin: 5
-        anchors.right: parent.right
-        anchors.top: parent.top
-        onDial: {
-            if (activeCall == false) {
-                if (dialerList.dialService != 0) {
-                    var o = dialerObject;
-                    status.text = "Dialing " + numberToDial +"...";
-                    dialScreen.currentDialer = o;
-                    o.dialNumber(numberToDial);
-                    activeCall = true;
-                }
-            }
-        }
-        onHangup: {
-            if (activeCall) {
-                if (dialScreen.currentDialer != 0) {
-                    dialScreen.currentDialer.hangup();
-                }
-                status.text = "Hang up";
-            }
-        }
-    }
-    //! [0]
-
-    //! [1]
-    Connections {
-        target: dialerObject
-        
-        onStateChanged: {
-            if (dialScreen.currentDialer.state == 1) {
-                status.text += "\nRinging";
-            } 
-            else if (dialScreen.currentDialer.state == 2) {
-                status.text += "\nConnected";
-            } 
-            else if (dialScreen.currentDialer.state == 0) {
-                status.text += "\nConnection terminated";
-                dialScreen.activeCall = false;
-                clearStatusTimer.running = true;
-            } 
-            else if (dialScreen.currentDialer.state == 3) {
-                status.text += "\nPhone already engaged";
-            }
-        }
-    }
-    //! [1]
-
-    Service {
-        id: defaultService
-        interfaceName: "com.nokia.qt.examples.Dialer"
-    }
-}