summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | |
* | | 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 ↵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)
* | | | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt into ↵Aaron Kennedy2009-06-195899-100949/+246945
|\ \ \ \ | |/ / / |/| / / | |/ / | | | | | | | | | | | | kinetic-declarativeui Conflicts: configure.exe tools/qdoc3/htmlgenerator.cpp
| * | Use QTransform more efficiently.Bjørn Erik Nilsen2009-06-1817-69/+41
| | | | | | | | | | | | Reviewed-by: Samuel
| * | Merge branch '4.5' of scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-06-187-35/+64
| |\ \ | | |/ | | | | | | | | | | | | | | | Conflicts: configure.exe tests/auto/qpainter/tst_qpainter.cpp translations/qt_ru.ts
| | * Fixed a problem with QSvgRenderer::animationDuration().Trond Kjernåsen2009-06-181-0/+1
| | | | | | | | | | | | | | | | | | | | | May have returned random values for SVGs without animation tags. Task-number: 256073 Reviewed-by: Kim
| | * QNAM HTTP code: Do not close TCP connection in all casesMarkus Goetz2009-06-181-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes sure the keep-alive connections stay open even if someone deletes a QNetworkReply which will then go all the way down to removeReply(QHttpNetworkReply). Should fix http://lists.trolltech.com/pipermail/qt-interest/2009-June/007777.html Reviewed-by: Peter Hartmann
| | * QItemEditorFactory: made sure the ownership is taken on theThierry Bastian2009-06-181-2/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QItemEditorCreator The creators were not deleted i nthe destructor of QItemEditorFactory and they could not be safely used for more than one type. Task-number: 228255 Reviewed-by: jasplin
| | * Made QInputDialog::getText() return null QString when rejectedStian Sandvik Thomassen2009-06-181-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts a behavior change introduced with Qt 4.5.0 where QInputDialog::getText() returned the line edit's text when the dialog was rejected. However, the behavior since Qt 4.0 has been to return a null QString when the dialog is rejected. Task-number: 256299 Reviewed-by: Andy Shaw
| | * Fixed bugs in QPainterPath::united().Samuel Rødal2009-06-171-27/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change from a relative to an absolute fuzzy compare as was the case pre-4.4. With a relative fuzzy compare points that have an x or y coordinate of 0 will never be merged with points that are very close to 0, for example (1e-15, 0). Task-number: 251909 Reviewed-by: Trond
| | * Fixed segmentation fault caused by empty clip.Samuel Rødal2009-06-172-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Make sure not to use the broken QRect constructor, and do an early check on whether the clip rect is empty in QRasterizer::rasterizeLine(). Task-number: 254105 Reviewed-by: Trond
| | * ItemViews : Fixed a performance regression whne changing data in theThierry Bastian2009-06-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | model This is a part of a bigger patch from 4.6 90cdbf8bd409652fd1e28adcd7f02fc1fae2c1c0 Task-number: 256183 Reviewed-by: ogoffart
| | * Fixed a bottleneck in itemviews that would ask for an update outsideThierry Bastian2009-06-171-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of the boundaries of the viewport. Now we catch this and don't call update. This was a performance regression against 4.4. Task-number: 256183 Reviewed-by: alexis
| * | Don't initialize data that will be overwritten immediately.hjk2009-06-184-20/+10
| | | | | | | | | | | | Reviewed-by: mariusSO
| * | Use enum Qt::Uninitialized instead of struct QString::Uninitializedhjk2009-06-183-4/+3
| | | | | | | | | | | | | | | | | | | | | There is no BC issue as the changed constructor was introduced recently and there is no released version of Qt using it. Reviewed-by: mariusSO