diff options
author | Geir Vattekar <geir.vattekar@nokia.com> | 2010-07-28 08:55:43 (GMT) |
---|---|---|
committer | Geir Vattekar <geir.vattekar@nokia.com> | 2010-07-28 08:55:43 (GMT) |
commit | baaa236128d89f7fcbd63fb14eeacdabd3d64d71 (patch) | |
tree | 4132d435f6bf64a5e6d049c76eeb9604db47a8cc /doc | |
parent | 583d68c72ae58c1b35c2ffba733b7e68a32dc2f9 (diff) | |
parent | 354bd0287c4178cbf512f10b5624a84c99e1d606 (diff) | |
download | Qt-baaa236128d89f7fcbd63fb14eeacdabd3d64d71.zip Qt-baaa236128d89f7fcbd63fb14eeacdabd3d64d71.tar.gz Qt-baaa236128d89f7fcbd63fb14eeacdabd3d64d71.tar.bz2 |
Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.7
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/examples/fingerpaint.qdoc | 6 | ||||
-rw-r--r-- | doc/src/examples/pinchzoom.qdoc | 6 | ||||
-rw-r--r-- | doc/src/examples/touch-dials.qdoc (renamed from doc/src/examples/multitouch-dials.qdoc) | 8 | ||||
-rw-r--r-- | doc/src/examples/touch-knobs.qdoc (renamed from doc/src/examples/multitouch-knobs.qdoc) | 10 | ||||
-rw-r--r-- | doc/src/getting-started/examples.qdoc | 16 | ||||
-rw-r--r-- | doc/src/images/touch-dials-example.png (renamed from doc/src/images/multitouch-dials-example.png) | bin | 17676 -> 17676 bytes | |||
-rw-r--r-- | doc/src/images/touch-examples.png (renamed from doc/src/images/multitouch-examples.png) | bin | 6691 -> 6691 bytes | |||
-rw-r--r-- | doc/src/images/touch-fingerpaint-example.png (renamed from doc/src/images/multitouch-fingerpaint-example.png) | bin | 17026 -> 17026 bytes | |||
-rw-r--r-- | doc/src/images/touch-knobs-example.png (renamed from doc/src/images/multitouch-knobs-example.png) | bin | 1290 -> 1290 bytes | |||
-rw-r--r-- | doc/src/images/touch-pinchzoom-example.png (renamed from doc/src/images/multitouch-pinchzoom-example.png) | bin | 48154 -> 48154 bytes | |||
-rw-r--r-- | doc/src/index.qdoc | 5 | ||||
-rw-r--r-- | doc/src/network-programming/bearermanagement.qdoc | 2 | ||||
-rw-r--r-- | doc/src/qt4-intro.qdoc | 8 |
13 files changed, 31 insertions, 30 deletions
diff --git a/doc/src/examples/fingerpaint.qdoc b/doc/src/examples/fingerpaint.qdoc index f438082..4b62570 100644 --- a/doc/src/examples/fingerpaint.qdoc +++ b/doc/src/examples/fingerpaint.qdoc @@ -26,11 +26,11 @@ ****************************************************************************/ /*! - \example multitouch/fingerpaint + \example touch/fingerpaint \title Finger Paint Example - The Finger Paint example shows the use of multi-touch with a custom widget + The Finger Paint example shows the use of touch with a custom widget to create a simple painting application. - \image multitouch-fingerpaint-example.png + \image touch-fingerpaint-example.png */ diff --git a/doc/src/examples/pinchzoom.qdoc b/doc/src/examples/pinchzoom.qdoc index e091230..198cbb3 100644 --- a/doc/src/examples/pinchzoom.qdoc +++ b/doc/src/examples/pinchzoom.qdoc @@ -26,11 +26,11 @@ ****************************************************************************/ /*! - \example multitouch/pinchzoom + \example touch/pinchzoom \title Pinch Zoom Example - The Pinch Zoom example shows how to use low-level multi-touch information + The Pinch Zoom example shows how to use low-level touch information to recognize a gesture. - \image multitouch-pinchzoom-example.png + \image touch-pinchzoom-example.png */ diff --git a/doc/src/examples/multitouch-dials.qdoc b/doc/src/examples/touch-dials.qdoc index 632c4f6..552d752 100644 --- a/doc/src/examples/multitouch-dials.qdoc +++ b/doc/src/examples/touch-dials.qdoc @@ -26,11 +26,11 @@ ****************************************************************************/ /*! - \example multitouch/dials - \title Multi-Touch Dials Example + \example touch/dials + \title Touch Dials Example - The Multi-Touch Dials example shows how to apply multi-touch to a set of + The Touch Dials example shows how to apply touch to a set of standard Qt widgets. - \image multitouch-dials-example.png + \image touch-dials-example.png */ diff --git a/doc/src/examples/multitouch-knobs.qdoc b/doc/src/examples/touch-knobs.qdoc index 14ee597..deb4c28 100644 --- a/doc/src/examples/multitouch-knobs.qdoc +++ b/doc/src/examples/touch-knobs.qdoc @@ -26,11 +26,11 @@ ****************************************************************************/ /*! - \example multitouch/knobs - \title Multi-Touch Knobs Example + \example touch/knobs + \title Touch Knobs Example - The Multi-Touch Knobs example shows how to create custom controls that - accept multi-touch input. + The Touch Knobs example shows how to create custom controls that + accept touch input. - \image multitouch-knobs-example.png + \image touch-knobs-example.png */ diff --git a/doc/src/getting-started/examples.qdoc b/doc/src/getting-started/examples.qdoc index a32d120..b2895ba 100644 --- a/doc/src/getting-started/examples.qdoc +++ b/doc/src/getting-started/examples.qdoc @@ -837,19 +837,19 @@ */ /*! - \page examples-multitouch.html + \page examples-touch.html \ingroup all-examples - \title Multi-Touch Examples - \brief Using Qt's multi-touch input capability + \title Touch Input Examples + \brief Using Qt's touch input capability - Support for multi-touch input makes it possible for developers to create + Support for touch input makes it possible for developers to create extensible and intuitive user interfaces. \list - \o \l{multitouch/dials}{Multi-Touch Dials} - \o \l{multitouch/fingerpaint}{Finger Paint} - \o \l{multitouch/knobs}{Multi-Touch Knobs} - \o \l{multitouch/pinchzoom}{Pinch Zoom} + \o \l{touch/dials}{Touch Dials} + \o \l{touch/fingerpaint}{Finger Paint} + \o \l{touch/knobs}{Touch Knobs} + \o \l{touch/pinchzoom}{Pinch Zoom} \endlist */ diff --git a/doc/src/images/multitouch-dials-example.png b/doc/src/images/touch-dials-example.png Binary files differindex 60e1776..60e1776 100644 --- a/doc/src/images/multitouch-dials-example.png +++ b/doc/src/images/touch-dials-example.png diff --git a/doc/src/images/multitouch-examples.png b/doc/src/images/touch-examples.png Binary files differindex b053cf3..b053cf3 100644 --- a/doc/src/images/multitouch-examples.png +++ b/doc/src/images/touch-examples.png diff --git a/doc/src/images/multitouch-fingerpaint-example.png b/doc/src/images/touch-fingerpaint-example.png Binary files differindex c741b65..c741b65 100644 --- a/doc/src/images/multitouch-fingerpaint-example.png +++ b/doc/src/images/touch-fingerpaint-example.png diff --git a/doc/src/images/multitouch-knobs-example.png b/doc/src/images/touch-knobs-example.png Binary files differindex 1cbd90d..1cbd90d 100644 --- a/doc/src/images/multitouch-knobs-example.png +++ b/doc/src/images/touch-knobs-example.png diff --git a/doc/src/images/multitouch-pinchzoom-example.png b/doc/src/images/touch-pinchzoom-example.png Binary files differindex 1079fb2..1079fb2 100644 --- a/doc/src/images/multitouch-pinchzoom-example.png +++ b/doc/src/images/touch-pinchzoom-example.png diff --git a/doc/src/index.qdoc b/doc/src/index.qdoc index 0ecae59..bd3ac05 100644 --- a/doc/src/index.qdoc +++ b/doc/src/index.qdoc @@ -94,11 +94,12 @@ </div> <div class="section sectionlist"> <ul> - <li><a href="http://doc.qt.nokia.com/qtcreator-1.3/index.html">Qt Creator</a></li> + <li><a href="http://doc.qt.nokia.com/qtcreator-2.0/index.html">Qt Creator</a></li> <li><a href="designer-manual.html">Qt Designer</a></li> <li><a href="linguist-manual.html">Qt Linguist</a></li> <li><a href="assistant-manual.html">Qt Assistant</a></li> - <li><a href="http://doc.qt.nokia.com/">Integration and add-ins</a></li> + <li><a href="http://doc.qt.nokia.com/qtsimulator-1.0/simulator-description.html">Qt Simulator</a></li> + <li><a href="http://qt.nokia.com/developer/eclipse-integration">Integration</a> and <a href="http://qt.nokia.com/products/appdev">add-ins</a></li> <li><a href="qvfb.html">Virtual Framebuffer</a></li> </ul> </div> diff --git a/doc/src/network-programming/bearermanagement.qdoc b/doc/src/network-programming/bearermanagement.qdoc index 67c13f2..bc016df 100644 --- a/doc/src/network-programming/bearermanagement.qdoc +++ b/doc/src/network-programming/bearermanagement.qdoc @@ -191,7 +191,7 @@ closed via \l{QNetworkSession::close()}, respectively. If the session is \l{QNetworkSession::Disconnected}{disconnected} at the time of the \l{QNetworkSession::open()}{open()} call the underlying interface is started; otherwise only the reference counter against the global session is -incremeted. The opposite behavior can be observed when using +incremented. The opposite behavior can be observed when using \l{QNetworkSession::close()}{close()}. In some use cases it may be necessary to turn the interface off despite of diff --git a/doc/src/qt4-intro.qdoc b/doc/src/qt4-intro.qdoc index 052e1c9..8867fd9 100644 --- a/doc/src/qt4-intro.qdoc +++ b/doc/src/qt4-intro.qdoc @@ -597,9 +597,9 @@ See \l{The State Machine Framework} documentation for more information. - \section1 Multi-Touch and Gestures + \section1 Touch and Gestures - Support for multi-touch input enables users to interact with many + Support for touch input enables users to interact with many parts of a user interface at the same time, and provides the basis for gestures. Additional infrastructure for gesture recognition allows a sequence of touch inputs to be combined to create gestures @@ -613,12 +613,12 @@ \list \o Allows users to interact with applications in more natural ways. \o Simplifies finger-based interaction with UI components. - \o Combines support for common basic gestures and multi-touch gestures + \o Combines support for common basic gestures and touch gestures in a single general framework. \o Enables extensibility by design. \endlist - See the QTouchEvent class documentation for more information on multi-touch + See the QTouchEvent class documentation for more information on touch input and QGestureEvent for gestures. \section1 DOM access API |