examples/declarative/ui-components/dialcontrol/dialcontrol.qml
changeset 37 758a864f9613
parent 33 3e2da88830cd
equal deleted inserted replaced
36:ef0373b55136 37:758a864f9613
    36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
    36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
    37 ** $QT_END_LICENSE$
    37 ** $QT_END_LICENSE$
    38 **
    38 **
    39 ****************************************************************************/
    39 ****************************************************************************/
    40 
    40 
       
    41 //! [imports]
    41 import Qt 4.7
    42 import Qt 4.7
    42 import "content"
    43 import "content"
       
    44 //! [imports]
    43 
    45 
    44 //! [0]
    46 //! [0]
    45 Rectangle {
    47 Rectangle {
    46     color: "#545454"
    48     color: "#545454"
    47     width: 300; height: 300
    49     width: 300; height: 300
    84                 drag.target: parent; drag.axis: Drag.XAxis
    86                 drag.target: parent; drag.axis: Drag.XAxis
    85                 drag.minimumX: 2; drag.maximumX: container.width - 32
    87                 drag.minimumX: 2; drag.maximumX: container.width - 32
    86             }
    88             }
    87         }
    89         }
    88     }
    90     }
       
    91     QuitButton {
       
    92         anchors.right: parent.right
       
    93         anchors.top: parent.top
       
    94         anchors.margins: 10
       
    95     }
    89 }
    96 }
    90 //! [0]
    97 //! [0]