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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- whatsnew.qdoc -->
<title>Qt 4.8: What's New in Qt Quick</title>
<link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
<div class="content">
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
</div>
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
<li>What's New in Qt Quick</li>
</ul>
</div>
</div>
<div class="content mainContent">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#qt-4-7-4-includes-qtquick-1-1">Qt 4.7.4 includes QtQuick 1.1</a></li>
<li class="level2"><a href="#pincharea">PinchArea</a></li>
<li class="level2"><a href="#layoutmirroring-attached-property">LayoutMirroring attached property</a></li>
<li class="level2"><a href="#text">Text</a></li>
<li class="level2"><a href="#textedit">TextEdit</a></li>
<li class="level2"><a href="#textinput">TextInput</a></li>
<li class="level2"><a href="#image-borderimage-and-animatedimage">Image, BorderImage and AnimatedImage</a></li>
<li class="level2"><a href="#item">Item</a></li>
<li class="level2"><a href="#flickable">Flickable</a></li>
<li class="level2"><a href="#mousearea">MouseArea</a></li>
<li class="level2"><a href="#listview-and-gridview">ListView and GridView</a></li>
<li class="level2"><a href="#flow-grid-and-row">Flow, Grid and Row</a></li>
<li class="level2"><a href="#repeater">Repeater</a></li>
<li class="level2"><a href="#component">Component</a></li>
<li class="level2"><a href="#qt">Qt</a></li>
<li class="level2"><a href="#other-changes">Other changes</a></li>
<li class="level1"><a href="#qt-4-7-1">Qt 4.7.1</a></li>
<li class="level2"><a href="#qtquick-namespace">QtQuick namespace</a></li>
</ul>
</div>
<h1 class="title">What's New in Qt Quick</h1>
<span class="subtitle"></span>
<!-- $$$qtquick-whatsnew.html-description -->
<div class="descr"> <a name="details"></a>
<a name="qt-4-7-4-includes-qtquick-1-1"></a>
<h2>Qt 4.7.4 includes QtQuick 1.1</h2>
<p>QtQuick 1.1 is a minor feature update. <i>import QtQuick 1.1</i> to use the new features.</p>
<a name="pincharea"></a>
<h3>PinchArea</h3>
<p><a href="qml-pincharea.html">PinchArea</a> provides support for the common two finger pinch gesture.</p>
<a name="layoutmirroring-attached-property"></a>
<h3>LayoutMirroring attached property</h3>
<p><a href="qml-layoutmirroring.html">Layout mirroring</a> is useful when you need to support both left-to-right and right-to-left layout versions of your application that target different language areas.</p>
<a name="text"></a>
<h3>Text</h3>
<p>Added the following properties:</p>
<ul>
<li><a href="qml-text.html#lineHeight-prop">lineHeight</a></li>
<li><a href="qml-text.html#lineHeightMode-prop">lineHeightMode</a></li>
<li><a href="qml-text.html#lineCount-prop">lineCount</a></li>
<li><a href="qml-text.html#maximumLineCount-prop">maximumLineCount</a></li>
<li><a href="qml-text.html#truncated-prop">truncated</a></li>
</ul>
<p>horizontalAlignment now accepts Text.AlignJustify alignment mode.</p>
<a name="textedit"></a>
<h3>TextEdit</h3>
<p>Added the following properties, methods and signal handlers:</p>
<ul>
<li><a href="qml-textedit.html#canPaste-prop">canPaste</a></li>
<li><a href="qml-textedit.html#lineCount-prop">lineCount</a></li>
<li><a href="qml-textedit.html#inputMethodComposing-prop">inputMethodComposing</a></li>
<li><a href="qml-textedit.html#mouseSelectionMode-prop">mouseSelectionMode</a></li>
<li><a href="qml-textedit.html#deselect-method">deselect()</a></li>
<li><a href="qml-textedit.html#isRightToLeft-method">isRightToLeft()</a></li>
<li><a href="qml-textedit.html#moveCursorSelection-method">moveCursorSelection()</a> to enable selection by word</li>
<li><a href="qml-textedit.html#onLinkActivated-signal">onLinkActivated</a></li>
</ul>
<a name="textinput"></a>
<h3>TextInput</h3>
<p>Added the following properties and methods:</p>
<ul>
<li><a href="qml-textinput.html#canPaste-prop">canPaste</a></li>
<li><a href="qml-textinput.html#inputMethodComposing-prop">inputMethodComposing</a></li>
<li><a href="qml-textinput.html#mouseSelectionMode-prop">mouseSelectionMode</a></li>
<li><a href="qml-textinput.html#deselect-method">deselect()</a></li>
<li><a href="qml-textinput.html#isRightToLeft-method">isRightToLeft()</a></li>
<li><a href="qml-textinput.html#moveCursorSelection-method">moveCursorSelection()</a> to enable selection by word</li>
</ul>
<a name="image-borderimage-and-animatedimage"></a>
<h3>Image, BorderImage and AnimatedImage</h3>
<p>Added the following properties:</p>
<ul>
<li><a href="qml-image.html#cache-prop">cache</a></li>
<li><a href="qml-image.html#mirror-prop">mirror</a></li>
</ul>
<a name="item"></a>
<h3>Item</h3>
<p>Added the following properties:</p>
<ul>
<li><a href="qml-item.html#implicitWidth-prop">implicitWidth</a> and <a href="qml-item.html#implicitHeight-prop">implicitHeight</a></li>
</ul>
<a name="flickable"></a>
<h3>Flickable</h3>
<p>Added the following methods:</p>
<ul>
<li><a href="qml-flickable.html#resizeContent-method">resizeContent()</a></li>
<li><a href="qml-flickable.html#returnToBounds-method">returnToBounds()</a></li>
</ul>
<a name="mousearea"></a>
<h3>MouseArea</h3>
<p>Added the following property:</p>
<ul>
<li><a href="qml-mousearea.html#preventStealing-prop">preventStealing</a></li>
</ul>
<a name="listview-and-gridview"></a>
<h3>ListView and GridView</h3>
<p>Added the following properties and methods:</p>
<ul>
<li><a href="qml-listview.html#layoutDirection-prop">layoutDirection</a></li>
<li><a href="qml-listview.html#positionViewAtBeginning-method">positionViewAtBeginning()</a></li>
<li><a href="qml-listview.html#positionViewAtEnd-method">positionViewAtEnd()</a></li>
</ul>
<a name="flow-grid-and-row"></a>
<h3>Flow, Grid and Row</h3>
<p>Added the following property:</p>
<ul>
<li><a href="qml-flow.html#layoutDirection-prop">layoutDirection</a></li>
</ul>
<a name="repeater"></a>
<h3>Repeater</h3>
<p>Added the following methods and signal handlers:</p>
<ul>
<li><a href="qml-repeater.html#onItemAdded-signal">onItemAdded</a></li>
<li><a href="qml-repeater.html#onItemRemoved-signal">onItemRemoved</a></li>
<li><a href="qml-repeater.html#itemAt-method">itemAt()</a></li>
</ul>
<a name="component"></a>
<h3>Component</h3>
<ul>
<li>The <a href="qml-component.html#createObject-method">createObject()</a> method now accepts a map of initial property values for the created object.</li>
</ul>
<a name="qt"></a>
<h3>Qt</h3>
<ul>
<li>Added the <a href="qml-qt.html#application-prop">Qt.application</a> object to hold generic global application properties.</li>
</ul>
<a name="other-changes"></a>
<h3>Other changes</h3>
<ul>
<li>Functions can be <a href="propertybinding.html#property-binding">assigned to properties from JavaScript</a> to create property bindings.</li>
<li>QtQuick now supports Right to Left layout in positioners, views, anchors and text elements.</li>
</ul>
<a name="qt-4-7-1"></a>
<h2>Qt 4.7.1</h2>
<a name="qtquick-namespace"></a>
<h3>QtQuick namespace</h3>
<p>In prior Qt releases, all the Qt Quick elements were available in the <i>Qt</i> namespace. Starting with Qt 4.7.1, the elements are also available in the <i>QtQuick</i> namespace, which improves naming consistency, and allows the development of Qt Quick to occur at a faster rate than Qt's usual minor release schedule.</p>
<p>The change for developers is very simple - where you previously wrote <i>import Qt 4.7</i>, just replace it with <i>import QtQuick 1.0</i>, like this:</p>
<pre class="cpp"> import <span class="type">QtQuick</span> <span class="number">1.0</span>
Text {
text: <span class="string">"Welcome to QtQuick 1.0!"</span>
}</pre>
<p><i>import Qt 4.7</i> continues to work so existing applications won't break even if they aren't updated, but it is recommended that all import statements be modified to the new form.</p>
</div>
<!-- @@@qtquick-whatsnew.html -->
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2012 Nokia Corporation and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
The documentation provided herein is licensed under the terms of the
<a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
License version 1.3</a> as published by the Free Software Foundation.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
</body>
</html>
|