summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* doc: Minor fixes + update UML diagrams for stick man exampleEskil Abrahamsen Blomfeldt2009-05-185-4/+10
| | | | | | Using StarUML this time, since there were "unregistered version" watermarks on the Enterprise Architect ones. Not as nice, but it's impossible to find a free UML tool which produces nice diagrams.
* doc: New state chart diagrams for Stickman exampleEskil Abrahamsen Blomfeldt2009-05-153-0/+0
| | | | | | These obviously cannot be used, since they have the "unregistered version" watermark on them. Didn't notice before now, so I might as well commit them for the time being.
* Remove the connectByAnimation() function and add some documentation for the ↵Eskil Abrahamsen Blomfeldt2009-05-143-0/+115
| | | | | | | Stickman example The connectByAnimation() function is no longer needed since we have default animations. The docs are unfinished.
* Merge branch 'kinetic-animations' into kinetic-statemachineKent Hansen2009-05-142-9/+9
|\
| * Doc: Marked up a link correctly.David Boddie2009-05-141-1/+1
| | | | | | | | Reviewed-by: David Boddie <dboddie@trolltech.com>
| * Merge branch 'kinetic-animations' of git@scm.dev.nokia.troll.no:qt/kinetic ↵David Boddie2009-05-137-5/+259
| |\ | | | | | | | | | into kinetic-animations
| * \ Merge branch 'kinetic-animations' of git@scm.dev.nokia.troll.no:qt/kinetic ↵David Boddie2009-05-1248-388/+1003
| |\ \ | | | | | | | | | | | | into kinetic-animations
| * | | Merged local changes.David Boddie2009-04-292-8/+8
| | | |
* | | | Pop up message when a tank wins the gameEskil Abrahamsen Blomfeldt2009-05-141-0/+2
| |_|/ |/| | | | | | | | | | | Also fixed: Added some docs and moved the tanks a little so they don't start partly outside the scene rect.
* | | more statemachine docsKent Hansen2009-05-132-5/+40
| | |
* | | doc: Add screenshot for Tank Game ExampleEskil Abrahamsen Blomfeldt2009-05-131-0/+0
| | |
* | | document statemachine/factorial exampleKent Hansen2009-05-133-0/+103
| | |
* | | doc: Correct names of snippets in docs for Tank Game exampleEskil Abrahamsen Blomfeldt2009-05-131-1/+1
| | |
* | | doc: Add documentation for Tank Game exampleEskil Abrahamsen Blomfeldt2009-05-132-0/+116
| |/ |/|
* | document the statemachine/eventtransitions exampleKent Hansen2009-05-122-2/+89
| |
* | add State Machine to examples overviewKent Hansen2009-05-121-0/+8
| |
* | Fixes: document statemachine/twowaybutton exampleKent Hansen2009-05-122-0/+83
| |
* | document the statemachine/pingpong exampleKent Hansen2009-05-123-0/+108
| |
* | Merge branch 'kinetic-statemachine' of git@scm.dev.nokia.troll.no:qt/kinetic ↵Alexis Menard2009-05-1211-56/+435
|\ \ | | | | | | | | | | | | | | | | | | into kinetic-statemachine Conflicts: src/gui/graphicsview/qgraphicsitem.cpp
| * | doc: Add documentation for animations, restore policy and polished signalEskil Abrahamsen Blomfeldt2009-05-121-0/+182
| | |
| * | update license headersKent Hansen2009-05-122-6/+66
| | |
| * | improve the docs for the trafficlight exampleKent Hansen2009-05-123-16/+27
| | |
| * | Merge branch 'kinetic-animations' into kinetic-statemachineKent Hansen2009-05-121-0/+1
| |\ \
| | * | Doc: Assign state machine overview to architecture group (get it inGeir Vattekar2009-05-111-0/+1
| | |/ | | | | | | | | | the overview list)
| * | redo statecharts in proper UML notation, expand documentationKent Hansen2009-05-128-22/+150
| |/
| * replace QState::Type with QState::childMode propertyKent Hansen2009-04-291-6/+5
| | | | | | | | Result of API review.
| * move assignProperty() to QStateKent Hansen2009-04-291-5/+4
| | | | | | | | Doesn't belong in the abstract base class.
| * kill the stateactions apiKent Hansen2009-04-221-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | It just didn't give us that much. Typically you just reimplement onEntry/onExit/onTransition when you want to do something. We go back to the signals-and-slots approach: states have entered() and exited() signals that you can connect to. It's still possible to have an action-based API, but then you build it on top of the core API, which is OK. Replacing 4 public classes (and one layer in the hierarchy) with 2 signals feels good.
| * more docKent Hansen2009-04-171-6/+6
| |
| * Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into kinetic-animationsAlexis Menard2009-04-1754-479/+1319
| |\ | | | | | | | | | | | | Conflicts: src/gui/graphicsview/qgraphicsitem.cpp
| * | Initial import of kinetic-animations branch from the old kineticAlexis Menard2009-04-173292-0/+227236
| / | | | | | | repository to the new repository
* | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into kinetic-statemachineAlexis Menard2009-05-1279-821/+1608
|\ \ | | | | | | | | | | | | Conflicts: src/gui/graphicsview/qgraphicsitem.cpp
| * | Correcting bug in custom Database Driver code snipptetMorten Engvoldsen2009-05-111-1/+1
| | | | | | | | | | | | | | | | | | | | | Adding const to call. Changing QSqlRecord record() { return QSqlRecord(); } to QSqlRecord record() const { return QSqlRecord(); } This is needed since record() is a virtual function. Task-number:204557 Rev-by: Geir Vattekar
| * | Correcting typoMorten Engvoldsen2009-05-081-2/+0
| | | | | | | | | | | | Removing linebreaks in the document
| * | Added types to the list.Morten Engvoldsen2009-05-071-0/+10
| | | | | | | | | | | | | | | | | | Added two missing types to the list. Task-number: 252274
| * | Doc: Added info on NOTIFY to the Q_PROPERTY docs.Geir Vattekar2009-05-062-1/+7
| | | | | | | | | | | | Task-number: 248336
| * | Adds in documentation for RESOURCESAndy Shaw2009-05-061-0/+7
| | | | | | | | | | | | Reviewed-by: Kavindra Palaraja <kavindra.palaraja@nokia.com>
| * | Added function that was removed on the way from Qt3 to Qt4Morten Engvoldsen2009-05-041-0/+1
| | | | | | | | | | | | | | | | | | | | | QMimeSource::serialNumber was removed in Qt 4. This was not documented in Porting to Qt 4 Task-number:250575 Rev-By: Trenton Schulz
| * | Doc - Clarifying how to override a Widget's size hint in the Getting toKavindra Devi Palaraja2009-05-041-4/+8
| | | | | | | | | | | | | | | | | | | | | Know Qt Designer document. Task-number: 165435 Reviewed-by: Friedemann Kleint <friedemann.kleint@nokia.com>
| * | Correcting typoMorten Engvoldsen2009-04-301-2/+2
| | | | | | | | | | | | Missed a whitespace - corrected it. No task
| * | Documented the flow layout example.Morten Engvoldsen2009-04-292-4/+113
| | | | | | | | | | | | | | | | | | | | | | | | Wrote documentation for the flowlayout class. Task-number: 252548 Rev-by: Geir Vattekar Rev-by: janarve
| * | Corrected typoMorten Engvoldsen2009-04-291-1/+1
| | | | | | | | | | | | | | | | | | Changed smae to same Taks number:251646
| * | Fix broken link in documentation.Jason McDonald2009-04-291-1/+1
| | | | | | | | | | | | Reviewed-by: Trust Me
| * | Increment Qt version number in qdoc namespaces.Jason McDonald2009-04-271-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | As we saw with the 4.5.1 release, failing to increment the namespaces when incrementing the Qt version causes some featuresof Assistant to break. Reviewed-by: Trust Me
| * | Updated WebKit from /home/shausman/src/webkit/trunk to origin/qtwebkit-4.5 ( ↵Simon Hausmann2009-04-247-355/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 242472777d440a540b4bc944c84eb522388e384e ) Changes in WebKit since the last update: ++ b/ChangeLog 2009-04-24 Simon Hausmann <simon.hausmann@nokia.com> Reviewed by Ariya Hidayat. Added support for generating API docs in the Qt build using "make docs" * WebKit.pro: Include docs.pri for "make docs" target. ++ b/WebKit/qt/ChangeLog 2009-04-24 Simon Hausmann <simon.hausmann@nokia.com> Reviewed by Ariya Hidayat. Added support for generating API docs in the Qt build using "make docs" Added code snippets and overview from the Qt sources references in the API docs. * Api/qwebpage.cpp: Adjust paths to snippets. * Api/qwebview.cpp: Ditto. * docs/docs.pri: Added. * docs/qtwebkit.qdoc: Added. * docs/qtwebkit.qdocconf: Added. * docs/webkitsnippets/qtwebkit_build_snippet.qdoc: Added. * docs/webkitsnippets/qtwebkit_qwebview_snippet.cpp: Added. * docs/webkitsnippets/simple/main.cpp: Added. * docs/webkitsnippets/simple/simple.pro: Added. * docs/webkitsnippets/webpage/main.cpp: Added. * docs/webkitsnippets/webpage/webpage.pro: Added. Moved QtWebKit documentation into the WebKit project under src/3rdparty/webkit This is needed to have "make docs" inside WebKit and allows contributors to the WebKit project to write API docs. I'm doing the change in 4.5 to simplify merging with Qt 4.6. Reviewed-by: Trust me
| * | Add Google Suggest as a new network exampleAriya Hidayat2009-04-233-0/+52
| | | | | | | | | | | | Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
| * | Added Google Chat client as a new WebKit exampleAriya Hidayat2009-04-233-0/+52
| | | | | | | | | | | | Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
| * | use qdoc3 debug version only when it is availableJoerg Bornemann2009-04-231-1/+1
| | | | | | | | | | | | | | | | | | | | | By default there is no debug version built of qdoc3. In this case we should call the release build. Reviewed-by: kh
| * | Mention the jQuery MIT license in the 3rdparty license file, used in the ↵Simon Hausmann2009-04-231-0/+18
| | | | | | | | | | | | | | | | | | fancybrowser example Reviewed-by: Kavindra
| * | Add fancy browser as the new exampleAriya Hidayat2009-04-233-0/+52
| | | | | | | | | | | | Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>