summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Doc: Obsolete QMatrix and QPainter APIs using it.Volker Hilsheimer2009-07-274-38/+58
| | | | | | | | | QTransform and respective APIs should be used. Still some changes required - Some references to QMatrix left in documentation - Qt code uses QMatrix APIs (ie translationX) Reviewed-by: Samuel
* Doc: QTextLayout is the class to use in interactive text controls.Volker Hilsheimer2009-07-271-1/+1
|
* Doc: QTextLayout is the class to use in interactive text controls.Volker Hilsheimer2009-07-272-12/+10
|
* QHttpNetworkConnectionPrivate: Removed wrong commentMarkus Goetz2009-07-271-6/+0
| | | | | | | The comment was speaking about upload progress, however the code is about download progress. Reviewed-by: TrustMe
* Doc: replace links to obsolete APIsVolker Hilsheimer2009-07-272-2/+2
|
* Doc - fixed a typo [describles->describes]Kavindra Devi Palaraja2009-07-271-2/+2
| | | | | | Task: 258573 Reviewed-By: TrustMe
* Mac/Cocoa: Remove separator line for "unified document tabs"Morten Sørvig2009-07-273-3/+19
| | | | | | | | Call [NSToolbar setShowsBaselineSeparator] on the (unified) toolbar if the window contains tabs in document mode. Task-number: 252660 Reviewed-by: Richard Moe Gustavsen
* Really, really fix HPUX this timeTom Cooksey2009-07-271-1/+1
| | | | | | The conditionals were the wrong way round. Reviewed-By: Samuel
* Add QGraphicsItem::ItemAutoDetectsFocusProxy and improve subfocus support.Andreas Aardal Hanssen2009-07-278-73/+243
| | | | | | | | | | | | | | | | | If you set this flag on an item, and descendant item that gains input focus will become this item's focus proxy. This simplifies how focus proxy items are assigned from QML; instead of binding the possible focusProxy property to a named child widget, this assignment happens automatically as you set the focus property of a descendant to true. As part of this change, QGraphicsWidget::focusWidget behavior has been improved and moved into QGraphicsItem. For example, if you set focus on an item that it's part of a scene, it can gain focus once the parent has been assigned (which is how object trees are built in QML). Autotests are included. Reviewed-by: Michael Brasser
* Doc: Remove more links to obsolete functions.Volker Hilsheimer2009-07-252-5/+5
|
* Doc: Replace QMatrix with QTransform and respective functions in various places.Volker Hilsheimer2009-07-257-32/+33
|
* Doc: Document that coordinates are dropped.Volker Hilsheimer2009-07-252-4/+8
|
* Doc: Replace more links to obsolete APIs.Volker Hilsheimer2009-07-254-36/+18
|
* Doc: Replace links to obsolete APIs.Volker Hilsheimer2009-07-2515-40/+36
|
* Using QNetworkAccessManager, so need to pull in QtNetworkVolker Hilsheimer2009-07-252-0/+2
|
* Revert "Doc: Clarified that the format used in QImage::fromData() is the image"Volker Hilsheimer2009-07-251-31/+27
| | | | | This reverts commit 1368c210ef9976f68eb9fb1c3e4dc14f4fa4edd2, which accidentially reverted previous commits.
* Doc: \em is not a qdoc command, \e is correctVolker Hilsheimer2009-07-251-2/+2
|
* Compile from repo checkoutVolker Hilsheimer2009-07-251-0/+2
|
* Build without Qt3SupportVolker Hilsheimer2009-07-251-1/+1
|
* No link-errors when building from repositoryVolker Hilsheimer2009-07-252-0/+6
|
* Fix compilation with older GCC versions: need a constructor.Thiago Macieira2009-07-251-0/+5
| | | | | I don't know exactly why this is needed, but otherwise GCC complains that there is no default constructor.
* Fix a running external tests: user program headers must come first.Thiago Macieira2009-07-251-2/+2
| | | | | No wonder QT_SHAREDPOINTER_TRACK_POINTERS was having no effect: there was an #include <QtCore/QtCore> before it.
* Add support for debugging and valgrinding external testsThiago Macieira2009-07-251-10/+74
| | | | This requires modifying slightl QProcess on Unix to forward stdin too.
* Fix warnings when compiling Qt (tst_warnings).Thiago Macieira2009-07-253-6/+6
| | | | | Don't use old-style casts in Qt code. And avoid signed/unsigned comparisons (sizeof returns size_t, which is unsigned).
* Apply the script I added to gen.sh to existing files: remove template classesThiago Macieira2009-07-25174-167035/+779
|
* Add Perl code to remove template classes from the listing.Thiago Macieira2009-07-251-0/+4
| | | | | | It is possible to export symbols in template classes, but I don't think we use any such cases now (template specialisation). It only works properly with C++0x anyway (extern template).
* Update the test to work with GCC 4.4 tooThiago Macieira2009-07-251-15/+11
|
* Adapt the contiguous-creator code to use the new custom deleter code.Thiago Macieira2009-07-241-26/+27
| | | | | | | | | | | | | We use the same trick as the custom deleter: we allocate memory for an object of class ExternalRefCountWithContiguousData<T>, but we do that only to be certain of the alignment requirements for T. We initialise the d-pointer via placement new and the T object is left for initialisation by the outermost function. The reason for that last trick is to support passing parameters in the future with the least amount of template functions necessary. I still plan on supporting arguments only with C++0x (maybe up to one without).
* Revert "Revert "Add support for creating the object alongside the Data ↵Thiago Macieira2009-07-242-2/+147
| | | | | | | structure in QSharedPointer"" This restores the original implementation of the creating function. The next commit will make it suitable for use.
* Remove the old specialised deleter implementation from QSharedPointer.Thiago Macieira2009-07-241-12/+0
| | | | | | | | | | This should be binary- and source-compatible, since these QSharedPointer internal classes aren't exported. The compiler should generate the symbols in all libraries and applications that used it, which means removing it from Qt won't affect them. (In fact, these symbols shouldn't be in QtCore at all, since we don't use QSharedPointer in it)
* Implement a new custom deleter implementation for QSharedPointerThiago Macieira2009-07-241-1/+54
| | | | | | | | | | | | | | | | | | Instead of using a template class derived from QtSharedPointer::ExternalRefCountData, use a non-template class that has a function pointer. This avoids generating a virtual table for each QSharedPointer type and custom deleter. The trick here is that we don't "new" the d pointer anymore, but we simply allocate memory (via ::operator new, so it may throw an exception), then we use the placement new to initialise the non-template d-pointer and the template deleter sub-objects. Then we store the pointer to a regular function which will execute the user's custom deleter. I also added operator delete() to the class to make sure no smarty compiler decides to delete the d-pointer with a fixed size (I don't think that happens, but just to be on the safe side).
* Re-disable QtConcurrent build with Sun CC 5.9.Thiago Macieira2009-07-241-0/+2
| | | | | | | | | | | | | QtCore compiled, but of course that means very little since most of QtConcurrent's problems are in the template code, which isn't instantiated inside QtCore. Examples and tests all failed to build... I'm almost done getting it to work with that compiler, but it will take me a little more time. I'm refactoring a bit of the QtConcurrent code, so that things compile more smoothly, using partial template specialisation. To be on the safe side, re-disable for xlC 7 too.
* Fix QSystemTrayIcon causing three activated signals on doubleclickJens Bache-Wiig2009-07-241-2/+9
| | | | | | | | | | | The problem was that on Windows, we would activate on WM_LButtonUp, but a double click after activating will also generate a second WM_LButtonUp. Hence we get three activations. The fix was basically to filter out the second WM_LButtonUP, something we also do in qapplication_win.cpp. Task-number: 205499 Reviewed-by: denis
* Add an ARGB check for EGL-provided X visualsTom Cooksey2009-07-241-3/+20
| | | | | | | | Don't just assume they're going to be ARGB just because the config has an alpha channel. This makes QGLWidgets with WA_TranslucentBackground set work again on the rx71 when running under xcompmgr. Reviewed-By: Trustme
* Make the internal testcase more robust on Windows FS as wellVolker Hilsheimer2009-07-241-0/+5
|
* Fix missing mnemonics when triggering menus by shortcutJens Bache-Wiig2009-07-241-0/+3
| | | | | | | | | | | | When opening a menu by shortcut on Windows, we would loose the keyboard mnemonic when navigating around. This is incorrect compared to native applications and somewhat inconvenient. The fix is basically to enable the keyboard mode when shortcuts are triggered, not only when the alt-key is pressed. Task-number: 254496 Reviewed-by: denis
* Specify widget when calling QToolTip::showText() to make sure the tool tip ↵Thomas Sondergaard2009-07-242-6/+5
| | | | | | | ends up on the right X11 screen. Merge-request: 987 Reviewed-by: Olivier Goffart <ogoffart@trolltech.com>
* Nested classes need to be exported as well.Volker Hilsheimer2009-07-241-1/+1
| | | | | | This makes the QPixmapCache autotest link and pass on Windows. Reviewed-by: Trustme
* Make test more robust against the case-insensitive file system on Windows,Volker Hilsheimer2009-07-241-0/+6
| | | | | | and link against a regular Qt build. Reviewed-by: Trustme
* improve qfileinfo autotest a bitRitt Konstantin2009-07-241-13/+29
| | | | | | | | add a few more subtests; fix fileTimes_oldFile test for non-UTC time Merge-request: 966 Reviewed-by: Joerg Bornemann <joerg.bornemann@trolltech.com>
* fix minor issue introduced in 6ca14dcRitt Konstantin2009-07-241-8/+4
| | | | | | | | GetFileAttributes call can fire at least one more error - ERROR_NOT_READY (21) since now the fallback code will be executed for basic cases only Merge-request: 984 Reviewed-by: Joerg Bornemann <joerg.bornemann@trolltech.com>
* qdoc: Fixed all references to obsolete QHttp classes.Martin Smith2009-07-2415-81/+87
|
* Remove all the last vestiges of QuickDraw in Qt/Mac.Norwegian Rock Cat2009-07-247-231/+3
| | | | | | | Panther was the last reason for having this around. We don't touch this code anywhere else in Qt. As a result it's orphaned and can be safely removed. It truly is the end of an era, but it's definitely worth celebrating. Quartz4Life!
* Document my new backend.Norwegian Rock Cat2009-07-241-3/+5
| | | | Also rephrase some sentences.
* Get collapsible menus working correctly.Norwegian Rock Cat2009-07-246-54/+74
| | | | | | | | | | There was an attempt to do this earlier, but it was a bit more complex than it needed to be. We now do the update on show in Cocoa. Carbon actually does it all for us, we just need to flip the bit. We may do the updates to often, but it's better than not enough. Task-Id: 195445 Reviewed-by: Denis
* Doc: Split qdoc file for various platform and compiler specificVolker Hilsheimer2009-07-243-342/+421
| | | | pages, and update with information relevant for Qt 4.6
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-07-242-1/+1
|\
| * Built configure.exe.Friedemann Kleint2009-07-241-0/+0
| |
| * Once enabled, the emulation engine never got switched back offGunnar Sletta2009-07-241-1/+1
| | | | | | | | | | | | The check in QPainter::checkEmulation was just plain wrong. Reviewed-By: Eskil
* | Merge branch '4.5' of scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-07-2413-363/+365
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/3rdparty/webkit/VERSION src/3rdparty/webkit/WebCore/ChangeLog src/3rdparty/webkit/WebCore/bridge/qt/qt_instance.cpp src/3rdparty/webkit/WebCore/bridge/qt/qt_instance.h src/3rdparty/webkit/WebCore/page/DragController.cpp src/3rdparty/webkit/WebKit/qt/Api/qwebframe.cpp src/3rdparty/webkit/WebKit/qt/ChangeLog src/3rdparty/webkit/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp src/gui/painting/qpaintengineex_p.h tools/linguist/lupdate/main.cpp