summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-03-1775-469/+2106
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (38 commits) Force qt-zlib to be used for host system when cross compiling. qmake: fix to create proper install target in Makefile at first run compile fix for Windows Fixed focus handling when Qt is embedded into Cocoa app. Do not beep on Mac when pressing some keys. Do not deliver the same key event multiple times in Cocoa. Implement Idle-priority threads for Linux. Improved qt_x11_wait_for_window_manager Doc: document QElapsedTimer Added missing "const" for mac. qdoc3: Fixed some ifdef typos and removed some whitespace. Manual test for QTBUG-8933. Cocoa: minisplitter has only 1px wide grab area "Strictly" Fullscreen Application in Mac OS Bugfix the Symbian implementation Add QDateTime::currentDateTimeUtc and QDateTime::currentMsecsSinceEpoch remove, fixup Change the 32-bit rollover on Windows and Symbian to be more efficient. Add a couple of extra functions to QElapsedTimer Autotest: Rename the test to match the new class name ...
| * Force qt-zlib to be used for host system when cross compiling.Zeno Albisser2010-03-172-2/+2
| | | | | | | | | | | | | | | | | | There is no possibility to define which zlib should be used for the bootstrapped tools when cross compiling. Therefor we will force qt-zlib to be used for bootstrapped tools. Reviewed-by: Marius Storm-Olsen Task-number: QTBUG-8678
| * qmake: fix to create proper install target in Makefile at first runZeno Albisser2010-03-171-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | Previously when qmake was executed the first time, or when no previously compiled binary target was available for some reason, qmake just created an empty install target in the Makefile. So in fact for a target to be installed properly you needed to run something like "qmake && make && qmake && make install". This should now be fixed with this patch. Reviewed-by: Marius Storm-Olsen Task-number:QTBUG-5558
| * compile fix for WindowsThomas Hartmann2010-03-171-0/+1
| | | | | | | | Reviewed-by: Kai Koehne
| * Fixed focus handling when Qt is embedded into Cocoa app.Denis Dzyubenko2010-03-171-3/+17
| | | | | | | | | | | | | | When a Qt widget gets focus we should call setFocus() on it to make sure the focus chain is properly set. Reviewed-by: Prasanth
| * Do not beep on Mac when pressing some keys.Denis Dzyubenko2010-03-174-4/+17
| | | | | | | | | | | | | | | | | | When a key event is delivered to widgets, we should accept the event if the widget reacted to it in any way - if either the current item has changed or if the widget scrolled. Task-number: QTBUG-6444 Reviewed-by: Prasanth
| * Do not deliver the same key event multiple times in Cocoa.Denis Dzyubenko2010-03-173-28/+19
| | | | | | | | | | | | | | | | | | | | | | When QCocoaView receives a keyDown or keyUp event, we translate it to QKeyEvent and deliver it to qt widgets, propagating if necessary. However if none of Qt widgets accepted the event we should propagate it back to cocoa - to get a beep from it, or for example if Qt widget is embedded into a native widget. Task-number: related to QTBUG-6444 Task-number: QTCREATORBUG-698 Reviewed-by: Richard Moe Gustavsen
| * Implement Idle-priority threads for Linux.Thiago Macieira2010-03-172-46/+65
| | | | | | | | | | | | | | | | I don't know of any other systems that define SCHED_IDLE, but if any do, they'll use this code too Task-number: related to QTBUG-9032 Reviewed-by: Bradley T. Hughes
| * Improved qt_x11_wait_for_window_managerDenis Dzyubenko2010-03-171-28/+10
| | | | | | | | | | | | | | | | | | | | | | | | We shouldn't really care about ReparentNotify when waiting for a window to be "managed" by the window manager. We only need to wait until the window is Mapped and Exposed for the first time, then we (most likely) can safely assume that the window manager has finished managing the window. Task-number: QTBUG-9097 Reviewed-by: Bradley T. Hughes
| * Doc: document QElapsedTimerThiago Macieira2010-03-174-0/+382
| | | | | | | | Task-Number: QT-2965
| * Added missing "const" for mac.Martin Smith2010-03-171-1/+1
| |
| * Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7Martin Smith2010-03-1763-342/+1584
| |\
| | * Manual test for QTBUG-8933.Carlos Manuel Duclos Vergara2010-03-176-0/+156
| | | | | | | | | | | | | | | | | | See the readme file. Reviewed-by: TrustMe
| | * Cocoa: minisplitter has only 1px wide grab areaCarlos Manuel Duclos Vergara2010-03-171-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | The problem was that in Cocoa we were ignoring the WA_MouseNoMask attribute, therefore the mask was being applied to the mouse movements. This in turn caused the cursor not to change accordingly. Task-number: QTCREATORBUG-361 Reviewed-by: Prasanth
| | * "Strictly" Fullscreen Application in Mac OSCarlos Manuel Duclos Vergara2010-03-171-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Full screen in OSX is achieved by using the Kiosk Mode. Therefore it is not a real full screen but an emulation since we basically disable the dock and the menubar. Previous to this patch we were autoshowing the menubar all the time even when we didn't have a menubar. The problem with that is the fact that in OSX there is always a system menubar, so the menubar appeared the moment somebody hovered over the menubar region. With this patch we check if we have created a menubar and if so we autoshow the menubar, otherwise the menubar will remain hidden in full screen mode. Task-number: QTBUG-8933 Reviewed-by: Richard Moe Gustavsen
| | * Bugfix the Symbian implementationThiago Macieira2010-03-174-6/+24
| | |
| | * Add QDateTime::currentDateTimeUtc and QDateTime::currentMsecsSinceEpochThiago Macieira2010-03-175-116/+328
| | |
| | * remove, fixupThiago Macieira2010-03-172-12/+3
| | |
| | * Change the 32-bit rollover on Windows and Symbian to be more efficient.Thiago Macieira2010-03-172-34/+27
| | | | | | | | | | | | | | | If it rolls over, then the newer value will be lower than the older one. So just add 2^32 to the value and we'll have proper calculations.
| | * Add a couple of extra functions to QElapsedTimerThiago Macieira2010-03-177-17/+103
| | |
| | * Autotest: Rename the test to match the new class nameThiago Macieira2010-03-172-13/+13
| | |
| | * Rename the files tooThiago Macieira2010-03-179-0/+0
| | |
| | * Rename QTimestamp to QElapsedTimerThiago Macieira2010-03-1744-153/+153
| | |
| | * Remove unnecessary functions from the QTimestamp API.Thiago Macieira2010-03-176-76/+0
| | | | | | | | | | | | | | | If necesary, we can add them back later. But let's not add functions we don't need right now.
| | * Add support for 32-bit rollovers on WindowsThiago Macieira2010-03-171-5/+21
| | |
| | * Port QTest::qWait also to use QTimestamp.Thiago Macieira2010-03-172-3/+3
| | | | | | | | | | | | | | | To avoid using QTimestamp to test QTimestamp, use QTest::qSleep in QTimestamp's own testcase.
| | * Port QtMultimedia uses of QTime as a stopwatch to QTimestamp (unix code only)Thiago Macieira2010-03-172-4/+6
| | |
| | * Port QtGui uses of QTime as a stopwatch to QTimestampThiago Macieira2010-03-1720-62/+60
| | |
| | * Port QtNetwork uses of QTime as a stopwatch to QTimestamp.Thiago Macieira2010-03-176-26/+26
| | |
| | * Port QtCore uses of QTime as a stopwatch to QTimestamp.Thiago Macieira2010-03-176-66/+14
| | | | | | | | | | | | tst_qtimeline improvement: from 56187446 to 53915928 (callgrind)
| | * Add a qtimestamp.cpp with some common functions.Thiago Macieira2010-03-178-16/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | Had to add invalidate() and isValid() functions because that's what QUnifiedTimer expects (QAbstractAnimation). Also move restart() to each implementation for efficiency. Task-number: QT-2965
| | * Make qcore_unix.cpp share code with QTimestampThiago Macieira2010-03-175-97/+68
| | |
| | * Add the Symbian version of QTimestamp.Thiago Macieira2010-03-171-0/+117
| | | | | | | | | | | | This code is disabled
| | * Add the Windows implementation of QTimestampThiago Macieira2010-03-172-0/+121
| | | | | | | | | | | | Task-number: QT-2965
| | * Add the non-Mac Unix implementation of QTimestamp.Thiago Macieira2010-03-172-0/+150
| | | | | | | | | | | | Task-number: QT-2965
| | * Add the Mac implementation of QTimestamp.Thiago Macieira2010-03-172-1/+111
| | | | | | | | | | | | Task-number: QT-2965
| | * Initial version of QTimestamp class.Thiago Macieira2010-03-176-0/+284
| | | | | | | | | | | | | | | | | | Only the generic, non-monotonic QTime-based version available right now Task-number: QT-2965
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-03-172-6/+4
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: Use a toolbar for the designer property editor Cleanup: Removed include file and comment.
| | | * Use a toolbar for the designer property editorJens Bache-Wiig2010-03-171-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the designer plugin a little bit more consistent. It also helps cosmeticaly in creator as we get a better separation between the tool bar and the treeview. Reviewed-by: thorbjorn
| * | | qdoc3: Fixed some ifdef typos and removed some whitespace.Martin Smith2010-03-172-10/+10
| | |/ | |/|
| * | Cleanup: Removed include file and comment.jasplin2010-03-171-5/+0
| | |
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-03-171-12/+13
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: add default values to parameter of virtual methods in QProxyModel
| * | add default values to parameter of virtual methods in QProxyModelThierry Bastian2010-03-171-12/+13
|/ / | | | | | | | | | | | | That makes it consistent with the other models. Task-number: QTBUG-8766 Reviewed-by: gabi
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-03-172-1/+4
|\ \ | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: Display the itemSendScenePositionChange properly when debugging.
| * | Display the itemSendScenePositionChange properly when debugging.Alexis Menard2010-03-172-1/+4
| | | | | | | | | | | | | | | | | | Also a harmless test added to check that the flag is actually set. Reviewed-by:TrustMe
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-03-17494-12171/+25150
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (83 commits) probably need to update user configurations once in a while too use dynamicstore instead Define JS_NO_EXPORT to avoid JSC C API functions being exported Don't use QScriptValueIterator to iterate over an array QtScript: Fix regression when calling newQObject() from native constructor Added note to OS X installation instructions. Keypress events ignored in listview on Cocoa (64 Bit) with Japanese IME Update only appropriate rectangles during update_sys(). Marked QTDS obsolete from Qt 4.7. QNetworkReply: Fix canReadLine() Abort waiting replies on session error. different approach to fixing "the other" aliasing issue fix aliasing issue in node_construct() detach in fewer cases, remove redundant calculation SSL: Fix memleak related to local certificate Improve keyboard layout detection on X11 Compile on ARM with -Werror -Wold-style-cast Use the vista-style native dialog for QFileDialog::getExistingDirectory Apply the stdset attribute for resource properties doc: Completed sentence about HideNameFilterDetails ...
| * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-03-17494-12171/+25150
| |\ \ |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (83 commits) probably need to update user configurations once in a while too use dynamicstore instead Define JS_NO_EXPORT to avoid JSC C API functions being exported Don't use QScriptValueIterator to iterate over an array QtScript: Fix regression when calling newQObject() from native constructor Added note to OS X installation instructions. Keypress events ignored in listview on Cocoa (64 Bit) with Japanese IME Update only appropriate rectangles during update_sys(). Marked QTDS obsolete from Qt 4.7. QNetworkReply: Fix canReadLine() Abort waiting replies on session error. different approach to fixing "the other" aliasing issue fix aliasing issue in node_construct() detach in fewer cases, remove redundant calculation SSL: Fix memleak related to local certificate Improve keyboard layout detection on X11 Compile on ARM with -Werror -Wold-style-cast Use the vista-style native dialog for QFileDialog::getExistingDirectory Apply the stdset attribute for resource properties doc: Completed sentence about HideNameFilterDetails ...
| * | probably need to update user configurations once in a while tooLorn Potter2010-03-171-1/+1
| | |
| * | use dynamicstore insteadLorn Potter2010-03-171-29/+14
| | |
| * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-03-16494-12171/+25165
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (81 commits) Define JS_NO_EXPORT to avoid JSC C API functions being exported Don't use QScriptValueIterator to iterate over an array QtScript: Fix regression when calling newQObject() from native constructor Added note to OS X installation instructions. Keypress events ignored in listview on Cocoa (64 Bit) with Japanese IME Update only appropriate rectangles during update_sys(). Marked QTDS obsolete from Qt 4.7. QNetworkReply: Fix canReadLine() Abort waiting replies on session error. different approach to fixing "the other" aliasing issue fix aliasing issue in node_construct() detach in fewer cases, remove redundant calculation SSL: Fix memleak related to local certificate Improve keyboard layout detection on X11 Compile on ARM with -Werror -Wold-style-cast Use the vista-style native dialog for QFileDialog::getExistingDirectory Apply the stdset attribute for resource properties doc: Completed sentence about HideNameFilterDetails Doc fix in QLocale Doc for for QGestureRecognizer::create. ...