Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Doc: Explicitly declare the module for each namespace to prevent strange | David Boddie | 2009-07-13 | 4 | -1/+4 |
| | | | | | | | omissions when qdoc is used in certain Windows environments. Task-number: 256415 Reviewed-by: Trust Me | ||||
* | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt | David Boddie | 2009-07-08 | 49 | -492/+739 |
|\ | |||||
| * | Define M_PI in qmath.h if not defined by math.h (as is the case on Windows), ↵ | Volker Hilsheimer | 2009-07-08 | 3 | -8/+4 |
| | | | | | | | | and remove duplicate defines elsewhere. | ||||
| * | Make test pass when executed from debug/release directory. | Volker Hilsheimer | 2009-07-08 | 1 | -0/+3 |
| | | |||||
| * | QMainWindow: fix the use of animation and improve code quality | Thierry Bastian | 2009-07-08 | 3 | -52/+38 |
| | | |||||
| * | Compile fix for the qapplication autotest. | Denis Dzyubenko | 2009-07-08 | 1 | -25/+43 |
| | | | | | | | | Reviewed-by: TrustMe | ||||
| * | autotest compile fix for MacOSX | Thierry Bastian | 2009-07-08 | 1 | -1/+1 |
| | | |||||
| * | doc: Output a clearer "All functions in this class are..." statement. | Martin Smith | 2009-07-08 | 4 | -53/+156 |
| | | | | | | | | Task-number: 189232 | ||||
| * | QMenuBar: the extension could be visible when it shouldn't | Thierry Bastian | 2009-07-08 | 1 | -2/+2 |
| | | | | | | | | | | If you had invisible actions in the menubar, it would always show the extension button | ||||
| * | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt | Volker Hilsheimer | 2009-07-08 | 19 | -134/+272 |
| |\ | |||||
| | * | Phonon: Fixed a possible race condition | Thierry Bastian | 2009-07-08 | 1 | -7/+13 |
| | | | | | | | | | | | | Task-number: 257495 | ||||
| | * | fast Windows version of QLocalSocket | Joerg Bornemann | 2009-07-08 | 3 | -120/+138 |
| | | | | | | | | | | | | | | | | | | | | | This commit removes the 100 ms polling timer from QLocalSocket and replaces it with proper overlapped IO handling. Reviewed-by: ossi | ||||
| | * | added auto test tst_QLocalSocket::readBufferOverflow | Joerg Bornemann | 2009-07-08 | 1 | -0/+33 |
| | | | | | | | | | | | | | | | | | | | | | This test handles the case when one limits the size of the socket's read buffer and more data than the buffer size is available. Reviewed-by: ossi | ||||
| | * | Phonon: Fixed a possible race condition | Thierry Bastian | 2009-07-08 | 1 | -1/+1 |
| | | | | | | | | | | | | Task-number: 257495 | ||||
| | * | Cocoa: Plain text from clipboard use '\r' as newline instead of '\n' | Prasanth Ullattil | 2009-07-08 | 3 | -2/+25 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The 'public.utf16-plain-text' clipboard type maps newlines to '\r' instead of '\n'. The NSStringPboardType from NSPasteboard does this correctly, so first try to get data through this type. Task-number: 257661 Reviewed-by: Norwegian Rock Cat | ||||
| | * | Animations: fix compilation with QT_NO_ANIMATION | Thierry Bastian | 2009-07-08 | 10 | -4/+63 |
| | | | |||||
| | * | QMainWindow: compile fix when defining QT_NO_DOCKWIDGET | Thierry Bastian | 2009-07-08 | 1 | -2/+1 |
| | | | |||||
| * | | Use current license header. | Volker Hilsheimer | 2009-07-08 | 2 | -4/+4 |
| |/ | |||||
| * | QMainWindow: fixed a crash in some cases when deleting the widget | Thierry Bastian | 2009-07-08 | 2 | -13/+6 |
| | | | | | | | | | | | | | | | | This happened because the rubberband used as a gapindicator was not allocated on the heap and might have been deleted by the QMainWindow destructor. Task-number: 257626 | ||||
| * | QMainWindow: made use of QPropertyAnimation for animations | Thierry Bastian | 2009-07-08 | 4 | -149/+59 |
| | | | | | | | | This required some refactoring as well. Now code is leaner and cleaner | ||||
| * | The offset of cropRect should not depend on the position of the window | Benjamin Poulain | 2009-07-08 | 1 | -1/+1 |
| | | | | | | | | | | The rect cropRect should be positioned with the offset to the top-level window, not the screen position. | ||||
| * | Tables aren't deleting properly. Send the correct name . | Bill King | 2009-07-08 | 1 | -4/+4 |
| | | |||||
| * | On Mac OS X, translate the wrect to the coordinates on screen | Benjamin Poulain | 2009-07-07 | 2 | -7/+51 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the following configuration, wrect was off-screen and the widget was not painted: -scroll area "A" -contains another scrollarea "B" with 2*WRECT_MAX < size < XCOORD_MAX -the widget contained in B has size > XCOORD_MAX -A is scrolled to the the bottom To fix the issue, wrect is moved to the area where the top level window is in the widget coordinate. Task-number: 144779 Reviewed-by: nrc | ||||
| * | ItemViews: _q_fetchMore now uses a timer instead of invokeMethod | Thierry Bastian | 2009-07-07 | 3 | -6/+9 |
| | | |||||
| * | Fixes a crash when scrolling a scrollarea with a mouse wheel. | Denis Dzyubenko | 2009-07-07 | 2 | -0/+2 |
| | | | | | | | | | | | | | | | | | | This fixes a crashed introduced in 60e965fd35037f4a27816d2aeccafdff0d6ae9d6 - those lines were removed by accident. Reviewed-by: João Abecasis Author: João Abecasis | ||||
| * | QColumnView: new uses QPropertyAnimation over QTimeLine | Thierry Bastian | 2009-07-07 | 2 | -22/+9 |
| | | |||||
| * | Getting rid of compiler warnings on windows | Thierry Bastian | 2009-07-07 | 3 | -9/+5 |
| | | |||||
| * | QColumnView: didn't react to addition of rows/cols in the current view | Thierry Bastian | 2009-07-07 | 9 | -28/+96 |
| | | | | | | | | Task-number: 246999 | ||||
* | | Doc: Post review fixes to the SQL data types table. | David Boddie | 2009-07-08 | 1 | -63/+60 |
| | | | | | | | | Reviewed-by: Trust Me | ||||
* | | Doc: Added information about newer Visual Studio libraries. | David Boddie | 2009-07-08 | 1 | -4/+6 |
|/ | | | | | Reviewed-by: Trust Me As-seen-on: #pyqt (freenode.net) | ||||
* | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt | David Boddie | 2009-07-07 | 1060 | -17655/+44558 |
|\ | | | | | | | | | Conflicts: src/network/socket/qlocalsocket.cpp | ||||
| * | try to fix the accept4 not being found in some older kernels | Thiago Macieira | 2009-07-07 | 1 | -4/+14 |
| | | |||||
| * | Updated docs to mention pattern matching in help project file lists. | ck | 2009-07-07 | 3 | -16/+11 |
| | | | | | | | | Reviewed-by: kh | ||||
| * | improve the QScriptEngine::importExtension() autotest | Kent Hansen | 2009-07-07 | 3 | -0/+15 |
| | | | | | | | | Error messages and __postInit__. | ||||
| * | doc: Explained that you can't add new Q3DockAreas to a Widget. | Martin Smith | 2009-07-07 | 1 | -14/+15 |
| | | | | | | | | | | | | They won't be shown. Task-number: 166508 | ||||
| * | QMainWindow: layout private API cleanup | Thierry Bastian | 2009-07-07 | 2 | -35/+35 |
| | | | | | | | | using const references to pass parameter | ||||
| * | Make sure we send a ValueChanged event if the spinbox value has changed | Jan-Arve Sæther | 2009-07-07 | 2 | -0/+16 |
| | | | | | | | | | | | | | | | | | | Unfortunately the codepath for keyPressEvent does not call updateState, so we have to add the same line in two places. Note that updateState() is only called from mousePressEvent() and mouseMoveEvent(). Task-number: 254053 | ||||
| * | ItemViews: it would go into DraggingState even without clicking an item | Thierry Bastian | 2009-07-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | We now just make sure that we start the drag if there was a pressed index. Task-number: 252643 | ||||
| * | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt | ck | 2009-07-07 | 4 | -21/+16 |
| |\ | |||||
| | * | QMenu: with tearoff handle, it would reserve the space for it twice | Thierry Bastian | 2009-07-07 | 1 | -8/+5 |
| | | | | | | | | | | | | sizeHint is now fixed | ||||
| | * | QToolBar: better management of positions when hiding/unhiding | Thierry Bastian | 2009-07-07 | 1 | -11/+5 |
| | | | | | | | | | | | | | | | | | | | | | The toolbar that one would unhide could be packed at the right of the screen. This was because the last toolbar always has a size that fills the space. So if you unhide a toolbar situated after this one, it got "compressed". | ||||
| | * | QFontComboBox: used to emit currentFontChanged twice when setting it. | Thierry Bastian | 2009-07-07 | 2 | -2/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setting the current font would change the current font and then it would try to select the right model index and get the font only from the text of the combobox. This was resetting the point size of the font, resulting in emitting the signal a second time. In the case of the user, it was also causing signals to be called in a loop. Task-number: 229731 | ||||
| * | | Added wildcard support for file lists in help projects. | ck | 2009-07-07 | 2 | -7/+22 |
| |/ | | | | | | | | | | | The qhelpgenerator auto test was also updated to test the new feature. Reviewed-by: kh | ||||
| * | QMenu: the scroller now takes the qapp's global strut into account | Thierry Bastian | 2009-07-06 | 2 | -25/+25 |
| | | | | | | | | Task-number: 257118 | ||||
| * | QMenu: scrolling in menus was broken | Thierry Bastian | 2009-07-06 | 2 | -16/+24 |
| | | |||||
| * | Doc - beautified some of the existing sentences in Part 6 | Kavindra Devi Palaraja | 2009-07-06 | 1 | -8/+8 |
| | | | | | | | | Reviewed-By: TrustMe | ||||
| * | doc: Included note about the effect of WA_NoMousePropagation. | Martin Smith | 2009-07-06 | 1 | -0/+4 |
| | | | | | | | | Task-number: 162945 | ||||
| * | Phonon: take advantage of more modern compiler to initialize struct | Thierry Bastian | 2009-07-06 | 4 | -80/+27 |
| | | | | | | | | This was not supported before by MSVC6 and MSVC2002 | ||||
| * | Phonon: Some work done on binary size | Thierry Bastian | 2009-07-06 | 13 | -105/+88 |
| | | | | | | | | removing foreach seems to help on Windows | ||||
| * | QHeaderView::sizeHint: small bug fix and refactor | Thierry Bastian | 2009-07-06 | 1 | -5/+5 |
| | |