summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets
Commit message (Collapse)AuthorAgeFilesLines
* Doc: More work on QML documentation and snippets.David Boddie2010-09-013-1/+80
|
* Doc: More work on the QML documentation.David Boddie2010-08-2714-0/+686
|
* Merge branch '4.7' into qmldocsDavid Boddie2010-08-246-6/+285
|\
| * Doc: QtConcurrent::run. Make sure the example actually compilesOlivier Goffart2010-08-231-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | QString::split has overload, and if you want to take the address of a function with overload, you need to cast it. If we really wanted to use QString::split, we would have to do QFuture<QStringList> future = QtConcurrent::run(string, static_cast<QStringList (QString::*)(const QString &, QString::SplitBehavior, Qt::CaseSensitivity ) const>(&QString::split), QString (", "), QString::KeepEmptyParts, Qt::CaseSensitive); So use QByteArray::split as an example instead Task-number: QTBUG-12897 Reviewed-by: David Boddie
| * Add info to Loader docs about receiving signals and key eventsBea Lam2010-08-205-0/+281
| |
* | Doc: Started to improve QML reference documentation.David Boddie2010-08-231-2/+2
| |
* | Doc: Used snippets for the Beginning QML document. License update.David Boddie2010-08-2317-0/+702
| |
* | Doc: Updated QML snippets.David Boddie2010-08-232-5/+5
| |
* | Doc: Updated licenses to the three clause BSD license.David Boddie2010-08-2326-730/+704
| |
* | Doc: Made more improvements to the QML documentation.David Boddie2010-08-2313-80/+612
| |
* | Merge branch '4.7' into qmldocsDavid Boddie2010-08-174-1/+303
|\ \ | |/
| * Add missing fileBea Lam2010-08-171-0/+86
| |
| * Docs - clarify use of PropertyChanges for immediate property changes inBea Lam2010-08-172-1/+94
| | | | | | | | | | a State (e.g. for setting a transformOrigin for a RotationAnimation). Also improve some other animation docs in general.
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7David Boddie2010-08-1111-188/+520
| |\
| * \ Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7David Boddie2010-08-051-0/+60
| |\ \
| * \ \ Merge commit 'refs/merge-requests/2443' of git://gitorious.org/qt/qt into ↵David Boddie2010-08-051-1/+1
| |\ \ \ | | | | | | | | | | | | | | | integration
| | * | | Remove useless QString::clear() from QSharedData example snippet.Robin Burchell2010-07-271-1/+1
| | | | |
| * | | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7David Boddie2010-08-0445-130/+1367
| |\ \ \ \
| * | | | | Doc: Added more license information.David Boddie2010-07-161-0/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Task-number: QT-3585 Reviewed-by: Trust Me
* | | | | | Doc: Started work to tidy up existing QML docs.David Boddie2010-08-1717-0/+397
| |_|_|_|/ |/| | | | | | | | | | | | | | Reviewed-by: Trust Me
* | | | | Removed duplicate case for const variable snippet.Jerome Pasion2010-08-061-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | Reviewer: David Boddie Task number: QTBUG-10411
* | | | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-08-061-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: Update def files for d524da81ee257a6bd67d32d0bc870280a7d5b8a4. Remove useless QString::clear() from QSharedData example snippet. Move note on connectToBus() not actually being able to reconnect to Designer: Prevent rich text from being copied into style sheets. QXmlPatterns QAbstractDateTime: only parse 3 digits of time fraction qdoc: Removed three unused config variables. qdoc: Cleaned up the application option specification and use. Doc: Adding GS QML example files Doc: Images for QML GS Doc: Editied version of QML GS Doc: Adding text to GS page Fix link error when building Bearer application with Qt Mobility Doc: nesting up orphant pages
| * | | | | Remove useless QString::clear() from QSharedData example snippet.Robin Burchell2010-08-051-1/+1
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | Merge-request: 2443 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* | | | | Improve docs on QML Animation page and associated elementsBea Lam2010-08-0510-183/+520
|/ / / / | | | | | | | | | | | | Task-number: QTBUG-12666
* | | | Add missing snippet fileBea Lam2010-08-041-0/+60
| |/ / |/| | | | | | | | Task-number: QTBUG-12628
* | | State doc fixes, improvementsBea Lam2010-08-023-35/+76
| | | | | | | | | | | | Task-number: QTBUG-12570
* | | Update QML Documents exampleBea Lam2010-07-301-0/+66
| | | | | | | | | | | | Task-number: QTBUG-12526
* | | Component docsBea Lam2010-07-291-0/+60
| | | | | | | | | | | | Task-number: QTBUG-12447
* | | Fixes for Dynamic Object Management docs. Also adds links toBea Lam2010-07-293-22/+69
| | | | | | | | | | | | | | | | | | this page from other documentation. Task-number: QTBUG-12446
* | | Doc: use const& in foreach when applicable.Olivier Goffart2010-07-2615-23/+23
| | | | | | | | | | | | | | | | | | | | | Const reference are slightly faster than doing a copy of the object on each iteration. Lead by example by having this pattern right in our documentation
* | | Allow MouseArea dragging to filter mouse events from descendantsMartin Jones2010-07-221-0/+72
| | | | | | | | | | | | | | | | | | | | | | | | This allows dragging a MouseArea that contains a clickable MouseArea, for example. Task-number: QTBUG-12323 Reviewed-by: Michael Brasser
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-07-2113-39/+478
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (26 commits) Expand QDeclarativeExtensionPlugin docs Add missing snippet files Expand QtObject doc Indicate default values Use snippets instead to avoid quoting license headers Rename remaining 'wantsFocus'. Bounding rect of text was not always calculated correctly. Add QML tutorials to the tutorials page QML focus API updates. Do not show copyright header in documentation. Ensure redirects (and indeed all reply process) is done in the right thread. Only ignore the same target value for a Behavior when it is running. Fix clock example: make sure hands always moves forward. font.letterSpacing used percentage rather than absolute values. Rewinding AnchorChanges should not make target item's implicit width and height explicit Compile: include <float.h> for usage of FLT_MAX. Restore the FLT_MAX define. Make Item::transformOriginPoint read-only Ensure the boundingRect() of Text is correctly calculated. Better defaults for MouseArea's drag. ...
| * | Add missing snippet filesBea Lam2010-07-212-0/+139
| | |
| * | Expand QtObject docBea Lam2010-07-211-0/+55
| | |
| * | Use snippets instead to avoid quoting license headersBea Lam2010-07-211-0/+1
| | |
| * | Do not show copyright header in documentation.Yann Bodson2010-07-211-0/+2
| | |
| * | various doc improvements for animation elementsBea Lam2010-07-206-6/+244
| | |
| * | fixes for dynamic object creation docsBea Lam2010-07-203-33/+37
| | |
* | | Merge branch 'raptorConfigurePatches' into 4.7-s60axis2010-07-211-2/+2
|\ \ \ | |/ / |/| | | | | | | | | | | Conflicts: configure src/sql/drivers/drivers.pri
| * | Removed the need to specify -arch symbian when compiling on Linux.axis2010-07-211-2/+2
| | | | | | | | | | | | | | | Task: QTBUG-11385 RevBy: Jason Barron
* | | PathView doc clarification.Martin Jones2010-07-191-6/+6
| | |
* | | fixes, improvements for various docs and example codeBea Lam2010-07-169-18/+530
| |/ |/|
* | Fixed install docs for Qt for Symbian on Linux.axis2010-07-151-1/+1
| |
* | improvements to docs and examplesBea Lam2010-07-141-6/+7
|/
* Follow -> Behaviormae2010-07-082-6/+10
| | | | Replace the usages of Follows with Behaviors, update docs.
* Support for "deploy" make target in SymbianMiikka Heikkinen2010-07-021-2/+1
| | | | | | | | Executing "make deploy" will recreate project sis file and deploy it into a device. Task-number: QTBUG-5155 Reviewed-by: axis
* docs - quote code with snippets, other improvementsBea Lam2010-07-011-1/+1
|
* Doc: Relicensed the documentation under the GNU FDL version 1.3.David Boddie2010-06-211-0/+479
| | | | | Reviewed-by: Trust Me Requested-by: Legal
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7David Boddie2010-06-1617-61/+1044
|\
| * Doc improvements, including snippet fixes, linking to examples, makingBea Lam2010-06-114-102/+78
| | | | | | | | docs more consistent