summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* compile fixesLars Knoll2011-05-061-1/+1
|
* Get rid of qt_qpa_set_cursor from QGuiApplication for now.Samuel Rødal2011-05-063-5/+2
|
* Fixed compilation of Wayland plugin.Samuel Rødal2011-05-063-9/+13
|
* Get rid of stale QWidget-stuff from QGuiApplication.Samuel Rødal2011-05-063-226/+10
|
* compile fixesLars Knoll2011-05-051-16/+0
|
* compile fixesLars Knoll2011-05-054-1/+3
|
* remove qwidget dependencies from keymapperLars Knoll2011-05-056-6/+7
| | | | | Remove the QWidget dependencies from keymapper and move it back into guikernel.
* move gesture event into qgesture.*Lars Knoll2011-05-056-415/+412
| | | | | Since QGesture stays in QtWidgets for now, move the event there as well.
* compile fixesLars Knoll2011-05-052-1/+4
|
* remove some more qapp dependenciesLars Knoll2011-05-059-32/+20
|
* special directory for stuff we want to move from widgets to guiLars Knoll2011-05-0521-12/+34
| | | | | | | Create a special to_be_moved directory, that will contain files that are to be moved from QtWidgets to QtGui. This will allow us to do a first split of the libraries rather fast and we can then start pulling in these classes one by one.
* move some more files into proper placesLars Knoll2011-05-0514-6/+2
|
* remove some dependencies to QTextEditLars Knoll2011-05-054-17/+15
| | | | | | | QSyntaxHighlighter is now free of dependencies to QtWidgets. QTextImageHandler still needs some work to get the url resolving to work again.
* remove some QApplication dependenciesLars Knoll2011-05-053-27/+3
|
* QPixmapFilter will live in QtWidgetsLars Knoll2011-05-055-4/+5
| | | | | | | | The class is only used for QGraphicsEffect. When merging QtOpenGL into Gui and Widgets, the GL nased pixmap filters will also need to be moved into effects/ and the pixmapFilter() method in QPaintEngineEx can get removed.
* remove OpenVG supportLars Knoll2011-05-0518-7931/+0
| | | | | Qt5 will require OpenGL, so there's no need for supporting OpenVG anymore.
* XCB plugin compile fix.Samuel Rødal2011-05-042-1/+3
|
* Get rid of more QWidget / QApplication dependencies.Samuel Rødal2011-05-0414-66/+64
|
* remove QWidget dependencies.Lars Knoll2011-05-043-4/+0
|
* separate QPrinter and QPrintDialogLars Knoll2011-05-048-42/+32
| | | | Removed all dependencies QPrinter had on QPrintDialog.
* More QApplication prefixes changed.Samuel Rødal2011-05-046-10/+10
|
* qdrawutil is for QtWidgetsLars Knoll2011-05-046-6/+4
| | | | the methods don't make sense for QML based apps
* Use base-class prefix instead of QApplication:: where possible.Samuel Rødal2011-05-043-17/+17
|
* Move some cursor handling to QGuiApplication from QApplication.Samuel Rødal2011-05-049-311/+317
|
* that signal has moved to QGuiApplicationLars Knoll2011-05-041-1/+0
|
* remove some unused codeLars Knoll2011-05-043-57/+0
| | | | | QPaintDeviceRedirection is not being used any more. Remove all code related to it.
* QStylePainter belongs in QtWidgetsLars Knoll2011-05-044-3/+3
| | | | | Move it into the styles/ directory that will end up in the QtWidgets library
* Move KeyPlatform and currentPlatform() to QGuiApplicationPrivate.Samuel Rødal2011-05-046-182/+185
|
* Closing of popups in QWidgetWindow.Samuel Rødal2011-05-042-1/+5
|
* Remove unused variable.Samuel Rødal2011-05-043-6/+0
|
* move platform specific files out of the wayLars Knoll2011-05-04143-0/+0
| | | | | | | Keep the files as reference to implement the lighthouse plugins, but move them away from the main directory hierachy as they won't be part of Qt5 in any case.
* Implemented enter / leave events for QWidget.Samuel Rødal2011-05-043-10/+32
|
* More fixes...Samuel Rødal2011-05-042-0/+8
|
* XCB plugin compile fix.Samuel Rødal2011-05-044-8/+7
|
* Fix compilation of QtOpenGL.Samuel Rødal2011-05-042-4/+4
|
* Improved handling of child windows.Samuel Rødal2011-05-046-40/+44
| | | | Don't force-create QWindows until they're explicitly created or shown.
* forgot this fileLars Knoll2011-05-041-0/+94
|
* moving some more files around.Lars Knoll2011-05-0415-15/+15
|
* split kernel/ up according to the future library splitLars Knoll2011-05-04110-106/+28
| | | | | | | Create a guikernel/ directory that contains the files that'll go into libQtGui. What remains in kernel/ will go into QtWidgets. In addition to that image/, painting/ and text will end up int QtGui.
* remove constructorLars Knoll2011-05-041-3/+0
|
* Merge remote branch 'origin/master' into refactorLars Knoll2011-05-04131-818/+1819
|\
| * Merge branch 'master' of scm.dev.nokia.troll.no:qt/qtbase-stagingGunnar Sletta2011-05-041-0/+8
| |\
| | * Include pixel size of font in exported HTML from QTextDocumentEskil Abrahamsen Blomfeldt2011-05-041-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When you copy-pasted rich text in which the font size had been set using setPixelSize() the font size would be mysteriously forgotten. The pixel size property in QTextCharFormat was added ad hoc, and not integrated in the HTML exporter. Task-number: QT-4792 Reviewed-by: Gunnar (cherry picked from commit 5aa5c2e2935c1829cc6965198968699f17c24ec0)
| * | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qtbase-stagingGunnar Sletta2011-05-0438-85/+145
| |\|
| | * Move private headers into versioned subdirectoryMarius Storm-Olsen2011-05-0230-76/+87
| | | | | | | | | | | | | | | | | | | | | This will allow us to expose private headers in a controlled manner, and ensure that they are not used by accident. This also means that we internally will have to enable the private headers for the modules we wish to use in the project.
| | * Add module.prf, and install MODULE_PRI for each moduleMarius Storm-Olsen2011-05-0210-5/+41
| | | | | | | | | | | | Output warning if not present
| | * QNetworkConfigurationManager: Fix network polling.Martin Petersson2011-05-022-2/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | startPolling() is called by each engine, so before it would start multiple singleshot timers. So I moved the timer to the class and check if it has already been started before it is activated again. So that we just use one timer. Task-number: QTBUG-17219 Reviewed-by: Iiro Kause Reviewed-by: Kranthi Kuntala (cherry picked from commit 2506b86828ca8140c2f22d85a4378df40899b132)
| | * QAbstractSocket: Fix waitForReadyRead infinite loop.Martin Petersson2011-05-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Make sure that waitForReadyRead times out if the read buffer is full. Task-number: QTBUG-16123 Reviewed-by: Peter Hartmann (cherry picked from commit 8d4cd52b6981a4e6deea7fdb77f56e40c4f3e6ba)
| | * Fix compile warning on WindowsMartin Petersson2011-05-021-0/+1
| | | | | | | | | | | | | | | Reviewed-by: Prasanth Ullattil (cherry picked from commit 800ad68e4f000e65b0a83ef1da2a29d595964156)
| * | Merge branch 'qtquick2' of scm.dev.nokia.troll.no:qt/qtbase-staging into ↵Gunnar Sletta2011-05-0430-144/+224
| |\ \ | | | | | | | | | | | | qtquick2