summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtWarwick Allison2009-08-031-3/+3
|\
| * Doc: Replaced QSet<double> with QSet<int> in QList::fromSet() exampleStian Sandvik Thomassen2009-08-021-3/+3
| | | | | | | | | | We don't implement qHash() for double, so let's not use QSet<double> in the documentation.
* | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtWarwick Allison2009-08-0256-198/+1328
|\ \ | |/
| * Compilare necessus estVolker Hilsheimer2009-08-011-1/+1
| |
| * Revert "Fix QFormLayout which allowed fields to be smaller that their ↵Olivier Goffart2009-07-312-35/+1
| | | | | | | | | | | | | | | | | | | | | | minimum size" This reverts commit 244f5ee9c2c34ddee200e4d5cdc1345762a5901b. Valgrind complains about the label fields that are not inisialized yet, and indeed. They are initialized right after, and need the maxLabelWidth to be computed. This is a chicken and egg problem difficult to solve, so I rather revert the change as the bug is not critical
| * Doc: Use new APIs in example and correct documentation regarding replacement.Volker Hilsheimer2009-07-311-1/+1
| |
| * Doc: Use new APIs in example and correct documentation regarding replacement.Volker Hilsheimer2009-07-313-8/+31
| |
| * Export symbol used in QtGui.Volker Hilsheimer2009-07-311-1/+5
| | | | | | | | Reviewed-by: Kent Hansen
| * QCheckBox on an out-of-process server wont allow <SPACE> key & FocusPrasanth Ullattil2009-07-313-43/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rect is not drawn correctly. Depending on the type of server, QAxClientSite::TranslateAccelerator() needs to process the message differently. For ActiveQt based in-process-servers, only normal Qt event handling is required. For ActiveQt based out-of-process-servers, the message has to be forwarded and Qt event handling needs to continue. For all other type of servers, forward the message and stop Qt event processing. Styles use the WA_KeyboardFocusChange attribute set on the window to decide on drawing the focus rect. ActiveQt handles the VK_TAB key in the QAxServerBase::TranslateAcceleratorW(), the attibute is now set when focus is changed. Task-number: 253763 Reviewed-by: Volker Hilsheimer
| * Crash DirectFb plugin when resizing verticalyJørgen Lind2009-07-311-2/+4
| | | | | | | | | | | | | | QRasterPaintEngine assumes device does not change size. Therefore create a new engine when resizing. Reviewed-by: Tom
| * Assistant: Performance fixes for help generator's pattern matching.ck2009-07-311-7/+36
| | | | | | | | | | | | Reading a help project was unacceptably slow with pattern matching. Now we do it only for filenames that contain wildcard symbols. Also, we cache the results of QDir::entryList() calls.
| * Doc: fix warnings.Volker Hilsheimer2009-07-312-1/+3
| |
| * compileKent Hansen2009-07-311-1/+1
| | | | | | | | | | Broke on WinCE since QStateMachinePrivate is now using Q_AUTOTEST_EXPORT.
| * Revert "Small simplification of code in ItemViews (delegate)"Olivier Goffart2009-07-312-6/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 95560abfdd3a1755b69f238eff2954d164dff6a5. Fix comboboxes used as editor. isAncestor() stops at windows. we want to go tought the whole widget chain, including parent windows Use case: examples/itemviews/coloreditorfactory/coloreditorfactory Task-number: 259034
| * Fix compilation: add #include <new> if placement new is usedThiago Macieira2009-07-311-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | I'm not sure this is the proper fix, though. xlC 7 complains with: "/usr/vacpp/include/new", line 97.10: 1540-1298 (I) "void *operator new(size_t, void *) throw()" needs to be declared in the containing scope to be found by name lookup. Also add some calculations to the padding in the data structure. Reviewed-by: Trust Me
| * add private goToState() function to state machineKent Hansen2009-07-313-7/+138
| | | | | | | | Needed for Declarative UI integration.
| * Fix internal documentation after QUrl change.kh2009-07-315-5/+5
| | | | | | | | Reviewed-by: kh
| * remove const from QSignalEvent::sender*Kent Hansen2009-07-313-6/+6
| | | | | | | | | | QObject::sender() does not return const QObject*, so neither should this API; it just forces you to const_cast for no good reason.
| * Doc: Fixed a snippet bug in QFileInfoGeir Vattekar2009-07-311-3/+3
| | | | | | | | | | Task-number: 258371 Reviewed-by: Trust Me
| * Fix compilation with xlC 7: operands to ?: must match.Thiago Macieira2009-07-311-2/+2
| | | | | | | | | | | | See 3ae2cab9c8bd1790a00da2755ac036143a3a35f4 for another similar fix. Reviewed-by: Trust Me
| * Compile on HP-UXiBradley T. Hughes2009-07-312-3/+4
| | | | | | | | | | | | | | | | | | | | There is no monotonic clock support on HP-UXi at all, and the _POSIX_MONOTONIC_CLOCK macro is not defined at all (not even to -1). We handle this in the event dispatcher, but not in qcore_unix.cpp. Since the monotonic clock time code has moved, the define of _POSIX_MONOTONIC_CLOCK to -1 should also move. Reviewed-by: thiago
| * test that activation and this-object can be inherited from parent contextKent Hansen2009-07-311-0/+30
| |
| * Show open directory dialog for new gesture exampleRichard Moe Gustavsen2009-07-311-0/+3
| | | | | | | | RevBy: denis
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtAaron Kennedy2009-07-31139-3451/+4562
| |\
| * | Update QAbstractItemModel following reviewAaron Kennedy2009-07-311-2/+2
| | | | | | | | | | | | Reviewed-by: mbm
| * | Remove isDynamic property flagAaron Kennedy2009-07-313-16/+2
| | | | | | | | | | | | Reviewed-by: Roberto Raggi
| * | Reorder flag values in ascending orderAaron Kennedy2009-07-312-7/+8
| | | | | | | | | | | | Reviewed-by: Roberto Raggi
| * | Don't process input events while waiting for network response.Martin Jones2009-07-311-1/+1
| | | | | | | | | | | | | | | | | | (cherry picked from commit 4b84041c072325bd09bb7177d121330048133103) Reviewed-by: mbm
| * | QtScript must respect dynamic metaobject's when installedAaron Kennedy2009-07-311-1/+1
| | | | | | | | | | | | | | | | | | (cherry picked from commit f39ccc5ed802ee8461122b8b067c8faa9aae8f8a) Reviewed-by: Roberto Raggi
| * | Add NOTIFY attribute to QAction propertiesAaron Kennedy2009-07-311-15/+15
| | | | | | | | | | | | | | | Authored-by: Warwick Allison Reviewed-by: Henrik Hartz
| * | Export QTextControlAaron Kennedy2009-07-311-1/+1
| | | | | | | | | | | | | | | | | | This class is used in declarative. Reviewed-by: Andreas
| * | Dynamic meta object supportAaron Kennedy2009-07-316-22/+62
| | | | | | | | | | | | | | | | | | | | | This is an internal API used by declarative. Authored-by: mae Reviewed-by: Aaron Kennedy
| * | Add index methods to QMetaProperty and QMetaMethodAaron Kennedy2009-07-312-0/+22
| | | | | | | | | | | | | | | Authored-by: Kent Hansen Reviewed-by: Aaron Kennedy
| * | Fixing qml for QWidget support (crash)Thomas Hartmann2009-07-311-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | QWidget deletes its children in its own constructor so we have to cleanup before explicitly Reviewed-by: Aaron Kennedy (cherry picked from commit 59629ac728f2fdbc3047554d715e2f908b1844c4)
| * | Add a declarative data ptr to QObjectPrivateAaron Kennedy2009-07-312-1/+19
| | | | | | | | | | | | | | | | | | | | | This data ptr does not increase the size of the QObject, as we take advantage of space otherwise only used during destruction. Reviewed-by: Andreas
| * | Make QAbstractItemModel default rolenames reentrantAaron Kennedy2009-07-311-11/+17
| | | | | | | | | | | | | | | Reviewed-by: Martin Jones Reviewed-by: mbm
| * | Make setRoleNames() protected and improve docs.Aaron Kennedy2009-07-313-1/+50
| | | | | | | | | | | | | | | | | | | | | (cherry picked from commit 15be8a6b259a5cb4f528b1c765bfcddfc9edd044) Authored-by: Martin Jones Reviewed-by: mbm
| * | Autotest for QGuardAaron Kennedy2009-07-312-0/+352
| | | | | | | | | | | | Reviewed-by: Andreas
| * | Fixed missing forward declarations, which made gcc fail to compileErik Verbruggen2009-07-312-2/+9
| | | | | | | | | | | | | | | | | | | | | anything that included qobject.h Reviewed-by: Thomas Hartmann (cherry picked from commit cc287101308fa606eb4de2597b5309c8099654c3)
| * | removing Q_CORE_EXPORT for q_guard_addGuard() and q_guard_removeGuard()Aaron Kennedy2009-07-314-30/+26
| | | | | | | | | | | | | | | | | | | | | | | | I made the functions inline instead and moved them to qobject_p.h Authored-by: Thomas Hartmann Reviewed-by: Aaron Kennedy (cherry picked from commit fd27c5ac9670b56ccd60e8d8f6791237358f3633)
| * | Add non-threadsafe QGuard classAaron Kennedy2009-07-315-3/+200
| | | | | | | | | | | | | | | | | | Cherry pick of 4031c0f0613090d70cd1fcacfc5b8316b12eb14e Reviewed-by: Andreas
| * | Allow retrieval of interface IId from class type.Aaron Kennedy2009-07-312-0/+21
| | | | | | | | | | | | | | | | | | | | | This method is necessary for QML to support Qt interfaces, but probably shouldn't be used otherwise. Reviewed-by: Roberto Raggi
| * | extend the QObjectPrivate::connectedSignals bitfield to make spaceAaron Kennedy2009-07-316-22/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for all the required NOTIFY signals we need for QML bindings. An additional internal function QMetaObject::isConnected() allows to query the bits, or you use connectedSignals[0] if you know that the signal in question has a QMetaObject::indexOfSignal() < 32. Authored-by: mae Reviewed-by: Aaron Kennedy
| * | Add FINAL attribute to Q_PROPERTY()Aaron Kennedy2009-07-318-4/+50
| | | | | | | | | | | | | | | | | | This will be used by the declarative module to optimize property bindings. Reviewed-by: Roberto Raggi
| * | Add CONSTANT attribute to Q_PROPERTY()Aaron Kennedy2009-07-318-4/+86
| | | | | | | | | | | | | | | | | | This will be used by the declarative module to determine if a property lacking a NOTIFY signal is truly constant, or just missing a NOTIFY signal. Reviewed-by: Roberto Raggi
* | | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtWarwick Allison2009-07-312605-204646/+70134
|\ \ \ | | |/ | |/|
| * | Fixed corrupt testlogs on Windows and other places where vsnprintf isRohan McGovern2009-07-311-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | not C99-compliant. C99 says vsnprintf returns >= `size' when not enough memory was available. In practice, on Windows, glibc < 2.0.6, and probably plenty of other places it returns -1 instead. Reviewed-by: Rhys Weatherley
| * | Docs: Improve QGraphicsTransform and subclassesAndreas Aardal Hanssen2009-07-315-191/+327
| | | | | | | | | | | | | | | | | | | | | | | | Fix a few typos and add more descriptive documentation to the class itself and its subclasses. Reviewed-by: Volker Hilsheimer Reviewed-by: Martin Smith
| * | API documentation moved into the classes subdirectoryVolker Hilsheimer2009-07-301-0/+0
| | |
| * | Doc: there is no group of explicitly shared classes, only one class uses this.Volker Hilsheimer2009-07-304-116/+156
| | | | | | | | | | | | | | | Explain the implications in the QWebHistoryItem documentation, and get rid of the "group".