summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-06-247-16/+47
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-06-242-5/+10
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Fix performance regression.Michael Brasser2009-06-241-2/+4
| | |
| | * Fix issue with render hints not being restored properly.Michael Brasser2009-06-241-3/+6
| | |
| * | Allow fill color to be specified, as solid fill makes for muchWarwick Allison2009-06-243-2/+37
| | | | | | | | | | | | | | | | | | faster painting. Better would be for the paint engine to work this out for itself, but that is often difficult.
| * | Clean up some code that has moved to QFxPaintedItemWarwick Allison2009-06-243-9/+0
| |/
* | Display errors in component creation in setQml()Martin Jones2009-06-241-0/+9
|/
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-06-2362-522/+823
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-06-231-0/+1
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Treat custom properties as literal valuesAaron Kennedy2009-06-231-0/+1
| | |
| * | Small cache, as documented.Warwick Allison2009-06-231-1/+1
| | |
| * | Move cacheSize property to QFxPaintedItem from QFxWebView.Warwick Allison2009-06-235-90/+60
| |/ | | | | | | Was missed in the refactoring.
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt into ↵Michael Brasser2009-06-2256-430/+729
| |\ | | | | | | | | | kinetic-declarativeui
| | * QDockWidget: removed separator for not resizable dock widgetThierry Bastian2009-06-224-52/+61
| | | | | | | | | | | | Task-number: 212058
| | * Mention -maxwarnings in debug outputHarald Fernengel2009-06-221-1/+1
| | | | | | | | | | | | Fixes the very frequently asked question "how do I see the full output?"
| | * Fixed bug in the SVG module where display="none" was not respected.Suneel BS2009-06-222-53/+57
| | | | | | | | | | | | | | | | | | | | | Elements with display="none" should not be rendered. Modified and autotest added by Kim. Reviewed-by: Kim
| | * Fixed forward gradient reference in the SVG module.Suneel BS2009-06-223-10/+75
| | | | | | | | | | | | | | | | | | | | | Autotest added by Kim. Task-number: 204686 Reviewed-by: Kim
| | * Fixed path bug in the SVG module.Suneel BS2009-06-221-0/+10
| | | | | | | | | | | | | | | | | | | | | In path, if 'moveto' is followed by multiple pairs of coordinates, those pairs shall be treated as 'lineto'. Autotest added by Kim. Reviewed-by: Kim
| | * Clamped opacity to the range [0, 1] in the SVG module.Suneel BS2009-06-221-7/+7
| | | | | | | | | | | | | | | | | | Modified and autotest added by Kim. Reviewed-by: Kim
| | * Fixed fill-rule for polygon SVG element.Suneel BS2009-06-223-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | Polygon element should apply the fill rule which is specified in its fill-rule attribute. Default fill rule is 'WindingFill' (nonzero). Modified and autotest added by Kim. Reviewed-by: Kim
| | * QNetworkDiskCache: add code snippets in documentationPeter Hartmann2009-06-221-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | should make it easier to apply a network disk cache with code snippets now Reviewed-by: David Boddie <dboddie@trolltech.com> Reviewed-by: Martin Petersson <martin.petersson@trolltech.com>
| | * perform normalization of signatures for signal transitionsKent Hansen2009-06-222-8/+15
| | | | | | | | | | | | Make state->addTransition(foo, SIGNAL( bar( ) ), ...) work.
| | * QApplication: Reduce number of kdeglobals file loadsMarkus Goetz2009-06-221-21/+27
| | | | | | | | | | | | | | | | | | From 14 per X11 application down to 4. Reviewed-by: jbache
| | * Fixed rounding bug in raster paint engine rect / image drawing.Samuel Rødal2009-06-221-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | Change 855aa89e0ba99f8a0f75d7b31930bab2cefb93f8 incorrectly changed toNormalizedFillRect to use int truncation instead of qRound. This fixes the autotest failure in tst_QPainter::drawRect2 as well. Reviewed-by: Trond
| | * doc: Fixed typo.Martin Smith2009-06-221-6/+5
| | | | | | | | | | | | Task-number: 256287
| | * Make sure to update is_null in copy/transformedAnders Bakken2009-06-221-0/+3
| | | | | | | | | | | | Reviewed-by: TrustMe
| | * QStroker needs to be exported.Anders Bakken2009-06-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | It's a member in QRasterPaintEngine which is subclassed by QDirectFBPaintEngine which lives in a plugin. Partial revert of 48257d751a76699e548e59b76fc79303ef328375 Reviewed-by: TrustMe
| | * Code cleanupAnders Bakken2009-06-221-10/+11
| | | | | | | | | | | | | | | | | | Mark the functions that are reimplemented as virtual in declaration. Reviewed-by: TrustMe
| | * Make previous checkin compile.Bill King2009-06-221-3/+0
| | |
| | * Fix the behaviour of sql classes regarding quoted identifiersBill King2009-06-227-33/+146
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If no quotes around identifiers are provided by the programmer, identifiers are treated identically to how the underlying engine would behave. i.e. some engines uppercase the identifiers others lowercase them. If the programmer wants case sensitivty and/or use whitespaces they will need to quote their identifiers. The previous (incorrect) behaviour always quoted the identifiers. Originally committed to 4.5, but removed due to BC concerns, this is a reintegration into mainline for inclusion in 4.6 Reviewed-by: Bill King
| | * Stage 3 of incorporating database level precision policy.Bill King2009-06-211-10/+11
| | | | | | | | | | | | DB2 is now tested and working, which completes the drivers.
| | * Stage 2 of incorporating database level precision policy.Bill King2009-06-218-5/+56
| | | | | | | | | | | | All autotests pass now for all databases except DB2 (untested).
| | * Merge branch '4.5' of scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-06-191-3/+2
| | |\
| | | * QNetworkAccessManager: Clarify doc about deleting QNetworkReplyMarkus Goetz2009-06-181-3/+2
| | | | | | | | | | | | | | | | Reviewed-by: Volker Hilsheimer
| | * | Small optimization to QGraphicsItemPrivate::combineTransform(To|From)Parent.Bjørn Erik Nilsen2009-06-191-2/+2
| | | | | | | | | | | | | | | | Every cycle counts :)
| | * | Refactor QGraphicsScene::drawSubtreeRecursive.Bjørn Erik Nilsen2009-06-193-153/+169
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's easier to read and maintain the code now. This version is also faster than the old one and makes it easier to implement another cut-off I'm working on. All auto-tests still pass. Examples/demos run fine.
| | * | Changed enum Qt::Uninitialized to enum Qt::InitializationMartin Smith2009-06-199-14/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | enum Qt::Uninitialized contains one value, which is also called Uninitialized. Because the type and the value used the same name, wherever the type Qt::Uninitialized was used in a function signature, you had to include the enum keyword. But qdoc's preprocessor doesn't like that, so you have to take the enum keyword out of the signatures. But then the compiler complains because the type and the value look the same. So I had to change the enum type name to Initialization, so the compiler can distinguish it from the value name. And qdoc likes that too.
| | * | QMenu: fixed a bug that prevented from opening a context menu with midThierry Bastian2009-06-191-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | button and still be able to activate an action Task-number: 253494
| | * | Small speedup of construction of uninitialized QByteArrayshjk2009-06-198-36/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Directly construct uninitialized QByteArrays of required size instead of default-constructing one and resizing it afterwards. Reviewed-by: mariusSO
| | * | New constructor QByteArray::QByteArray(int size, enum Qt::Uninitialized)hjk2009-06-192-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Contrary to the QByteArray::QByteArray(int size, enum Qt::Uninitialized) constructor this does not initialize its data. Reviewed-by: mariusSO
| * | | Add zoomFactor property to WebView.Michael Brasser2009-06-222-1/+32
| | | |
* | | | A simple timer element.Martin Jones2009-06-233-2/+181
| | | |
* | | | Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-06-2213-63/+98
|\ \ \ \ | |/ / / | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | | Doc fixes.Michael Brasser2009-06-221-4/+4
| | | |
| * | | Fix Item scale + rotation on GraphicsView.Michael Brasser2009-06-222-4/+13
| | | |
| * | | Fix anchor resetting and prevent illegal anchors.Michael Brasser2009-06-222-46/+81
| | | |
| * | | Only objects or lists of objects can be default properties.Michael Brasser2009-06-228-9/+0
| | | |
* | | | Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-06-215980-102644/+249832
|\ \ \ \ | |/ / / | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-06-195-6/+28
| |\ \ \ | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | | Ensure image loads are cencelled if item destroyed.Warwick Allison2009-06-195-6/+28
| | | | | | | | | | | | | | | | | | | | (most obvious when item is in a delegate)