summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ItemViews: make dragging faster when lots of items are selectedThierry Bastian2009-07-114-11/+55
| | | | | | | QListView know exactly what they have on their viewport and we only paint items clipped to the viewport. So we don't need to ask for each item its visualRect. NB: QTreeView and QTableView probably deservee the same treatment
* Merge commit 'qt-kinetic/qt-main/qgraphicssceneindex'Bjørn Erik Nilsen2009-07-100-0/+0
|\
| * Merge commit 'qt/master' into graphicssceneindexBjørn Erik Nilsen2009-07-10528-27828/+17906
| |\ | | | | | | | | | | | | | | | | | | Conflicts: src/gui/graphicsview/qgraphicsitem_p.h tests/auto/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp tests/auto/qgraphicsview/tst_qgraphicsview.cpp
* | \ Merge commit 'qt/master' into graphicssceneindexBjørn Erik Nilsen2009-07-10528-27828/+17906
|\ \ \ | |/ / |/| / | |/ | | | | | | Conflicts: src/gui/graphicsview/qgraphicsitem_p.h tests/auto/qgraphicsproxywidget/tst_qgraphicsproxywidget.cpp tests/auto/qgraphicsview/tst_qgraphicsview.cpp
| * QListView: improve performance on QListView::selectedIndexesThierry Bastian2009-07-101-7/+9
| | | | | | | | Task-number: 233342
| * Fix compilation on SnowLeopardNorwegian Rock Cat2009-07-102-5/+5
| | | | | | | | | | | | On 64-bit an id (void *) is 64-bit also, so, it really should be a pointer, but I'll make it a 64-bit int for the time being just so stuff compiles.
| * ItemViews: make the pixmap from drag and drop more efficientThierry Bastian2009-07-102-14/+21
| | | | | | | | | | | | | | We don't need to draw all the items that are selected. We just need those whose rect intersects the one from the viewport. Task-number: 233342
| * Tablet events get delivered to the widget where the tablet down happend.Luc Devallonne2009-07-101-2/+27
| | | | | | | | | | | | | | | | This is basically the Windows version of the bug fixed in change 82e825ed841bce324a6892fcbace03f9936d4f4f Merge-request: 855 Reviewed-by: Norwegian Rock Cat <qt-info@nokia.com>
| * QTableView: auto-scrolling could be broken by invisible sectionsThierry Bastian2009-07-101-2/+2
| | | | | | | | Task-number: 248688
| * adding autotestThierry Bastian2009-07-101-2/+28
| | | | | | | | Task-number: 248688
| * QTableView: horizontal scrollbar could be inoperent with big columnsThierry Bastian2009-07-102-0/+30
| | | | | | | | Task-number: 240266
| * QMainWindow: it is useless to apply the stte after a call to plugThierry Bastian2009-07-101-5/+0
| | | | | | | | The layoutState is already current (ie. already applied).
| * doc: Clarified that native messages are being handled.Martin Smith2009-07-102-24/+43
| | | | | | | | Task-number: 214026
| * Fix compilation support with namespaces for QtLibcSupplementThiago Macieira2009-07-101-3/+4
| | | | | | | | Reviewed-By: hjk <qtc-committer@nokia.com>
| * QFileDialog: the side urls are now always cleaned when they are localThierry Bastian2009-07-102-4/+30
| | | | | | | | Task-number: 257579
| * QDoubleSpinBox: make sure people can't choose too many decimalsThierry Bastian2009-07-101-3/+4
| | | | | | | | | | | | Maximum number of decimals is DBL_MAX_10_EXP + DBL_DIG Task-number: 257291
| * Phonon videos on windows would not show with video acceleration disabledThierry Bastian2009-07-101-1/+1
| | | | | | | | Task-number: 257805
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtNorwegian Rock Cat2009-07-106-27/+52
| |\
| | * Update test db definitions.Bill King2009-07-101-5/+9
| | |
| | * Get more sql autotests passing or expect-failing.Bill King2009-07-102-4/+16
| | |
| | * Fixes a heisenbug when using two ODBC connections with diff quoters.Bill King2009-07-101-7/+9
| | | | | | | | | | | | | | | | | | | | | Can have situations where 2 odbc connections are active, that have differing quoting charachters. Before this fix, everything fell over. Reviewed-by: Justin McPherson
| | * fix the test _and_ the class :)Harald Fernengel2009-07-032-12/+7
| | |
| | * Add a specialization for QByteArrayHarald Fernengel2009-07-031-0/+12
| | | | | | | | | | | | It tries to keep the semantics of QString::append(QByteArray) as much as possible.
| * | Support Tablet coordinate on Windows with non-zero physical originLuc Devallonne2009-07-102-13/+17
| |/ | | | | | | | | | | | | | | | | | | Most Wacom tablet have a coordinate origin at 0 (Bamboo,Intous), but some tablet (like DTF 720, which have an integrated screen) have a non zero coordinate origin. Which lead to an errounous y/a tablet pos reported by Qt tablet event. Merge-request: 822 Reviewed-by: Norwegian Rock Cat <qt-info@nokia.com>
| * Ensure that when we hide QToolBar in unified, unified follows.Norwegian Rock Cat2009-07-0910-42/+161
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Basically if you would hide a toolbar in the unified toolbar, you would still see a little bit of area at the top instead of having everything flush with the titlebar. This change basically unsures that the unified toolbar makes a decision to hide itself if all the toolbars inside it are hidden. It makes the behavior of clicking on the toolbar button behave more or less correctly since we are going to show the unified toolbar whether we want to or not. This all will get the toolbar button switch event to be dispatched in Cocoa as well. Also add an optimization for checking if we need to change the geometry. If we don't have any items the other toolbar areas, we can skip the set geometry call, which wrecks havoc with things in Cocoa. We still don't solve the case of someone who has hidden the items with the toolbar button then goes full-screen, then goes back out. I'm not motivated to solve it as is because we need to keep track of the hides we do on the button press vs. other hides from the user and still people can workaround it easy enough by handling window state change and doing what is recommended in the docs. Task-number: 208439 Rev-by: Denis
| * QLocalSocket WriteOnly mode fixed on WindowsJoerg Bornemann2009-07-092-4/+23
| | | | | | | | | | | | | | | | | | Write only local sockets silently disconnected after some time. Reason: we cannot call PeekNamedPipe on a write only pipe. Task-number: 257714 Reviewed-by: ossi Autotest: tst_QLocalSocket::writeOnlySocket
| * Add the complex control SC_SpinBoxEditField to style optionNils Christian Roscher-Nielsen2009-07-091-1/+1
| | | | | | | | Reviewed-by: Thierry
| * Compile fix.Denis Dzyubenko2009-07-091-0/+1
| |
| * Fix compile issueThierry Bastian2009-07-093-13/+20
| |
| * QTabBar: now uses QVariantAnimation over QTimeLineThierry Bastian2009-07-094-73/+65
| | | | | | | | QTimeLine is now no more used in private APIs
| * Updated the french phrasebook (some translations from Qt Creator)Pierre Rossi2009-07-091-1/+226
| | | | | | | | Reviewed-by: TrustMe
| * Added some links to the appropriate functions to the doc.Denis Dzyubenko2009-07-091-5/+8
| | | | | | | | Reviewed-by: trustme
| * autotest: removed tons of warningsThierry Bastian2009-07-091-1/+2
| |
| * QTreeView: cleanup of useless private slotsThierry Bastian2009-07-094-48/+20
| | | | | | | | currentChange is slot in the public class (QAbstractItemView
| * QTreeView: use QVariantAnimation over QTimeLineThierry Bastian2009-07-094-67/+55
| |
| * doc: Minor edits of reentrant/thread-safe expalantion.Martin Smith2009-07-091-6/+6
| | | | | | | | Task-number: 189232
| * Fixes a memory corruption when converting data with QIconvCodecDenis Dzyubenko2009-07-091-2/+4
| | | | | | | | | | | | | | This partially reverts 9a5b40a011bd1b15a67d83564af55011761f8ad9 for the QIconvCodec. Reviewed-by: hjk
| * Fixed handling of some SVG attributes when value is invalid.Suneel BS2009-07-092-14/+118
| | | | | | | | | | | | | | | | When the parsing of an SVG attribute fails, it should be given the default value. Fixed handling of invalid viewBox, stop-opacity and stop-offset. Autotest included. Reviewed-by: Kim
| * Fixed inheritence of SVG fill attributes.Suneel BS2009-07-094-35/+132
| | | | | | | | | | | | | | Fixed inheritence of fill-opacity, fill-rule and fill. Autotest included. Reviewed-by: Kim
| * QHttpNetworkReply: Cache isChunkedMarkus Goetz2009-07-092-1/+6
| | | | | | | | | | | | Cache return value of expensive function. Reviewed-by: Peter Hartmann
| * Use 'struct QConcatenable' instead of 'class QConcatenable' tohjk2009-07-091-1/+1
| | | | | | | | make compiler distinguishing both happy.
| * doc: Clarified the meanings in Qt for reentrant and thread-safe.Martin Smith2009-07-091-38/+44
| | | | | | | | Task-number: 189232
| * QRingBuffer micro optimizationMarkus Goetz2009-07-091-1/+4
| |
| * autotest fixThierry Bastian2009-07-091-2/+6
| | | | | | | | | | On the font from the font dialog, we can only test family, size and style
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtFriedemann Kleint2009-07-093-0/+6
| |\
| | * Add QT_END_HEADER to fix compile on PowerPC Mac and make autotest pass.Volker Hilsheimer2009-07-091-0/+2
| | |
| | * qdoc: Removed unnecessary error report/ruleMartin Smith2009-07-091-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | qdoc reported an error if you used \section2 on its owin, i.e. with no outer \section1. While strictly speaking correct, it imposed an unnecessary restriction, e.g. sometimes you just want to use \section2 to get a smaller title for a section.
| | * Let cetest return nonzero when it fails to run a test.Rohan McGovern2009-07-091-0/+1
| | |
| * | Remove unneeded assert.Friedemann Kleint2009-07-091-1/+0
| |/ | | | | | | | | Triggered on Designer startup on Linux. Acked-by: Thierry Bastian <thierry.bastian@nokia.com>
| * Improved cetest error reporting.Rohan McGovern2009-07-092-6/+10
| | | | | | | | | | | | | | | | | | | | | | Now, if you try to run an unsigned test on a locked device, you'll get: "Error invoking qRemoteLaunch on \Windows\QtRemote.dll: Invalid Signature. (0x80090006)" Instead of what you would previously get: "Error: Could not execute target file"