summaryrefslogtreecommitdiffstats
path: root/examples/declarative/cppextensions
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote branch 'origin/4.7' into qt-master-from-4.7Olivier Goffart2010-11-121-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configure doc/src/snippets/code/doc_src_qmake-manual.qdoc mkspecs/features/symbian/application_icon.prf mkspecs/features/symbian/default_post.prf mkspecs/features/symbian/symbian_building.prf qmake/generators/symbian/initprojectdeploy_symbian.cpp src/multimedia/audio/audio.pri src/network/access/qnetworkaccessmanager.cpp src/opengl/gl2paintengineex/qpaintengineex_opengl2.cpp src/opengl/qgl_p.h src/plugins/bearer/corewlan/qcorewlanengine.mm src/plugins/phonon/mmf/mmf.pro tests/auto/qscriptvalue/tst_qscriptvalue.cpp tests/auto/qscriptvalue/tst_qscriptvalue.h tools/qdoc3/doc/qdoc-manual.qdocconf
| * docWarwick Allison2010-11-091-1/+1
| |
* | Align .pro with qmake: s/\.sources/.files/.Miikka Heikkinen2010-10-082-2/+2
|/ | | | | | | | | | Complement previous commit by aligning Qt itself to use .files consistently for DEPLOYMENT as well as INSTALLS. This excludes changes to webkit. Task-number: QTBUG-3216 Reviewed-by: axis
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-298-8/+8
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Doc: Fixed text in license headers.David Boddie2010-09-1323-23/+23
|
* Document calling QObject methods from QML in Extending QML in C++ docs.Martin Jones2010-08-259-1/+431
|
* Fix cppextension examples.Martin Jones2010-08-1110-20/+20
| | | | | Print a useful message on error. Specify the QML url correctly.
* Fixed spelling mistakes in documented functions, classes, etc. Part of ↵Jerome Pasion2010-07-2910-10/+10
| | | | QTBUG-11938 and QTBUG-10801
* Expand QDeclarativeExtensionPlugin docsBea Lam2010-07-212-1/+8
|
* improvements to docs and examplesBea Lam2010-07-141-1/+1
|
* Follow -> Behaviormae2010-07-081-8/+8
| | | | Replace the usages of Follows with Behaviors, update docs.
* Extend QDeclarativeImageProvider to support QPixmap loading andBea Lam2010-07-082-62/+39
| | | | | | | | | | synchronous loading of QImages. (QPixmaps can only be created in the main thread so they will always be loaded synchronously). This changes request() to requestImage() and adds requestPixmap() for pixmap support. Task-number: QTBUG-11989
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-06-301-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (54 commits) update qml.qch to version 4.7 Undefined is undefined, and now qml warns about it Fix so window will resize with the root object (broken by Avoid duplicate code for testing initial sizes Remove an unnecessary connect() in TextInput Ensure micro focus is updated in TextEdit and TextInput Fix flow layout not taking into account whether it's width and height are implicit or not. Avoid binding loop. Ensure Loader item change listener is removed when Loader is destroyed Adapt all qmlviewer testcases to the code changes in the actual viewer. Stop QMLLauncher from crashing on exit on Mac when quitting app via the VisualDataModel hasModelChildren role shadowed user roles. Allow positioning of ListView items width sub-pixel precision. Examples clean up Docs Improve appearance when scaling Tweak Qt Demo Behaviour forget to rename the moc include when renaming deviceorientation_maemo.cpp fix namespace macros fix QML Viewer resize modes ...
| * Fix import path in cppextensions declarative example.Christian Kamm2010-06-241-1/+1
| | | | | | | | Reviewed-by: Erik Verbruggen
* | Fixed deployment paths for the symbian/linux-armcc mkspec.axis2010-06-292-2/+2
|/ | | | | | Paths to executables matter on that build system, unlike on Raptor. RevBy: Trust me
* Removed unnecessary data_caging_paths.prf loading from applicationsMiikka Heikkinen2010-06-222-2/+0
| | | | | | | | | Since plugin and import paths variables were moved to symbian.conf, there were many unnecessary load(data_caging_paths) statements left in applications. Task-number: QTBUG-11619 Reviewed-by: Janne Koskinen
* Fix exampleBea Lam2010-05-311-1/+1
|
* Rename QGraphics...Layout classes/QML items to Graphics...LayoutBea Lam2010-05-318-64/+64
| | | | to make it clear they are custom classes/items (not built-in)
* File shouldn't be in repositoryBea Lam2010-05-311-0/+0
|
* Implement removeAt() for layout classes to clean up item removal. AlsoBea Lam2010-05-318-36/+70
| | | | clean up qmlAttachedProperties() implementation and improve QML example
* Split graphicsLayouts example into qgraphicslinearlayout andBea Lam2010-05-3116-585/+755
| | | | qgraphicsgridlayout and clean up
* Rename example layoutItem -> layoutitem and improve docsBea Lam2010-05-315-2/+2
|
* Unify naming of import plugin targetsJoona Petrell2010-05-268-10/+21
| | | | | Task-number: QTBUG-10834 Reviewed-by: Warwick Allison
* Clean up project files for c++ examplesBea Lam2010-05-243-24/+19
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-05-2117-0/+680
|\ | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Fix FolderListModel parentFolder property's file drive handling Add license headers for .qml files. Also show file/line numbers on XML query errors. Print warnings for xml query syntax errors Clean up Add XmlListModel::get()
| * Add license headers for .qml files.Jason McDonald2010-05-2117-0/+680
| | | | | | | | | | | | | | Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.7David Boddie2010-05-2019-123/+173
|\ \ | |/
| * Fixes for docs, example codeBea Lam2010-05-204-11/+10
| |
| * Add missing .qmlproject filesBea Lam2010-05-193-0/+48
| |
| * Rename some examples: proxyviewer -> networkaccessmanagerfactory,Bea Lam2010-05-1812-19/+21
| | | | | | | | proxywidgets -> qwidgets, dynamic -> dynamicscene, velocity -> corkboards
* | Doc: Updated example license to three clause BSD license.David Boddie2010-05-1958-1570/+1512
|/ | | | | Reviewed-by: Trust Me Requested-by: Legal
* Compile fixes.ck2010-05-171-0/+0
|
* Add missing .proBea Lam2010-05-171-0/+5
|
* Restructure the examples. They are now organized into variousBea Lam2010-05-16121-0/+6669
subdirectories to make it easier to locate examples for certain features (e.g. animation) and to distinguish between different types of examples (e.g. very basic examples vs complex demo-like examples).