summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* adjust to qt_plugin.prf changesv5.0.0-beta2Oswald Buddenhagen2012-11-012-8/+4
| | | | | | | | DESTDIR and INSTALLS+=target are set up automatically now, but PLUGIN_TYPE needs to be defined. Change-Id: Ib813d8bc48dad023322c476ca6f93bae4effa62a Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
* Doc: Modularized Qt Svg documentationGeir Vattekar2012-10-258-8/+203
| | | | | | Change-Id: I2b503ec04a0a4bf800f62c8d3dc2bf1675293add Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
* make compile with -no-guiTasuku Suzuki2012-10-151-1/+1
| | | | | Change-Id: Ie19909aac156a0df4c1c07ed97b3c2fd3f678287 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
* Change copyrights from Nokia to DigiaIikka Eklund2012-09-2431-743/+743
| | | | | | | | Change copyrights and license headers from Nokia to Digia Change-Id: Ie28eae89f2ad032f174ff840cc6a44d8dd511eed Reviewed-by: Janne Anttila <janne.anttila@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* centralize load(qt_build_config)s in .qmake.confOswald Buddenhagen2012-09-113-6/+0
| | | | | Change-Id: I03f7850e1cda2766c19a7ed82f0de6577cca5210 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
* remove usage of QT_MAKEDLL from QtSvgJoerg Bornemann2012-09-111-3/+3
| | | | | Change-Id: I14170ebcf4605604c514f126bfa021208d49012d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* follow rename of qt_module_config.prf to qt_module.prfOswald Buddenhagen2012-08-111-1/+1
| | | | | Change-Id: Ibf8f013a89cf822a83883b2131f7503cffe7a206 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
* Fixed zlib build for WEC7.Janne Anttila2012-08-075-10/+232
| | | | | | | | | | | | | | | | | | | | | | errno in zutil.c is leftover, and not used anymore -> removed. In gzguts.h qsvgfunctions_wince.h are included. To use this header qglobal.h is needed. qsqvgfunctions_wince.h and .cpp contains implementation for missing wince functions etc. Task-number: QTBUG-22507 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com> This change is partially cherry picked from commit: 2fa9c829faae10f445fd580627114a8383b753ab Change-Id: Ifef46ab829d12600b967cc3aa87fe2b8342b4f77 Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
* Follow change in qtbase to remove additional scene parameters.Toby Tomkins2012-08-031-2/+2
| | | | | | | | Change 328550ff008da53d865f3a6f245aa4753d1b3527 in qtbase removes obsolete scene argument, make the same change here. Change-Id: I7cd6308f520929d79645eb367aad69cf5e0d8310 Reviewed-by: Kalle Lehtonen <kalle.ju.lehtonen@nokia.com>
* Remove obsolete use of Q_WS_QWS.Stephen Kelly2012-07-261-9/+2
| | | | | Change-Id: I9733a86f079ffde911840eb37136f2c02cb96c76 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Add qtsvgglobal.h containing the Q_SVG_EXPORT macro.Thiago Macieira2012-07-117-1/+76
| | | | | | | | No library other than the core libraries should depend on their export macros being in qglobal.h. Change-Id: Ia4b2c9645d27424c6f1c80163c27a8aad95cf076 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* Make qtsvg compile with -no-widgetsTasuku Suzuki2012-07-101-1/+1
| | | | | | | disable building all examples, almost all tests and a plugin Change-Id: I80f923dfe2c3cfa6e27b52db092a9770c3d9fbd4 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* Make qtsvg compile with QT_NO_CSSPARSERTasuku Suzuki2012-07-092-6/+60
| | | | | Change-Id: Iea4bb3433232e7350de8d68c504493cca3b34a3d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* build system cleanupsOswald Buddenhagen2012-06-233-13/+3
| | | | | | | | | | | | | | | - load(qt_module) => load(qt_build_config) - remove: - CONFIG+=module (obsolete) - setup of PKGCONFIG* variables (automated now) - code relating to module version headers (automated now) - %mastercontent assignment (automated now) - QT_BUILD_*_LIB defines (automated now) - pointless QPRO_PWD assignments - pointless and commented out include and depend paths Change-Id: I6397e2606f741de2d756886a029956682ab09161 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
* auto-generate module prisOswald Buddenhagen2012-06-231-2/+1
| | | | | Change-Id: Id45979da7bda207a5cff97516e8ba5f1bca03bd3 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
* Fixed MSVC compiler warning for zlib when compiling on WEC7.Janne Anttila2012-06-051-2/+6
| | | | | | | | | | | WEC7 mkspecs define _CRT_SECURE_NO_DEPRECATE globally. libpng redefined the same macro without checking if it is already defined. Added #ifdef guard to zlib when defining _CRT_SECURE_NO_DEPRECATE. Task-number: QTBUG-22512 Change-Id: I477b24b7bc0ebb4cd8a619b11668eceb0f5064d4 Reviewed-by: aavit <qt_aavit@ovi.com> (cherry picked from commit a0a970447d63e5c9afdb55d179d671d9c24e9061)
* Fix compilation for -no-widgets optionTasuku Suzuki2012-05-236-13/+18
| | | | | | | | | | Disable QSvgWidget and QGraphicsSvgItem when -no-widgets is set. The module doesn't depend on widgets when QT_CONFIG contains no-widgets. QT_NO_SVG* (which is removed in Qt5) is replaced to QT_NO_WIDGETS. Change-Id: I11457a40e96d193269dcc37ac7fdb86f3f7c1958 Reviewed-by: Donald Carr <donald.carr@nokia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* QIcon has been moved back to QtGuiOlivier Goffart2012-05-192-2/+2
| | | | | | Change-Id: I04aaa8ddf09b70e51357403ccad1d5acd08251b6 Reviewed-by: Lars Knoll <lars.knoll@nokia.com> Reviewed-by: Girish Ramakrishnan <girish.1.ramakrishnan@nokia.com>
* Change uses of {to,from}Ascii to {to,from}Latin1Thiago Macieira2012-05-051-1/+1
| | | | | | | | | | This operation should be a no-op anyway, since at this point in time, the fromAscii and toAscii functions simply call their fromLatin1 and toLatin1 counterparts. Task-number: QTBUG-21872 Change-Id: I6a7cd331d0fd76461a1e657675733420a75c46f1 Reviewed-by: Richard J. Moore <rich@kde.org>
* Fix incorrect indents in svg.proJanne Anttila2012-04-191-8/+8
| | | | | Change-Id: I884b472a2e5f2d726596be8d224c894603a0db7b Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
* Remove Symbian and Maemo code from QtSvgJanne Anttila2012-04-191-2/+0
| | | | | | Change-Id: Ib951c2d3878dc9533131ee6d3dae122c4bbec807 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
* Remove the usage of deprecated qdoc macros.qt-v5.0.0-alpha1Casper van Donderen2012-03-011-4/+4
| | | | | | | | | | QDoc now has support for Doxygen style commands for italics, bold and list items. This change applies that change in QDoc to the actual documentation. Task-number: QTBUG-24578 Change-Id: I1ec71bacd7cc75c327c4112c6587a91c3e0b37eb Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
* Use new plugin system in QtSvg.Friedemann Kleint2012-02-175-8/+17
| | | | | Change-Id: I9e588b7907f1d956d1f1feb018d61e375130b2d9 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
* QtSvg: Fix compile.Friedemann Kleint2012-02-013-7/+7
| | | | | | | | | | - Rename of QIconEngineV2 to QIconEngine. - Fix test to run (add column). Change-Id: Iea25847ef7e239927cf5bf1c0ea60454a8d6a158 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com>
* Remove "All rights reserved" line from license headers.Jason McDonald2012-01-3028-28/+28
| | | | | | | | | | | As in the past, to avoid rewriting various autotests that contain line-number information, an extra blank line has been inserted at the end of the license text to ensure that this commit does not change the total number of lines in the license header. Change-Id: I5f2eda9477944e22ec5f6dd07dcb53feaa9fc03b Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Update obsolete contact address.Jason McDonald2012-01-2328-28/+28
| | | | | | | | Replace Nokia contact email address with Qt Project website. Change-Id: Ia89ccb618e630103d60a6e2703e3fbedae0616a6 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Remove the use of QT_MODULE()Gunnar Sletta2012-01-194-4/+0
| | | | | | Change-Id: I28d4814eb4d91c8cca88cea206ad7737dc021f78 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
* Update copyright year in license headers.Jason McDonald2012-01-0528-28/+28
| | | | | | Change-Id: I2dda86020c6d4b3edf8461733b14a95b9e519afc Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Fixed compile for removal of Qt::escapeRohan McGovern2011-09-301-1/+1
| | | | | | | | | | Broken by source incompatible change in qtbase, b863df7de926448cf0057272c16da04b7cfb11ee Change-Id: Ie90a0cbb74f7208945ebcb5d8544c35be698fb36 Reviewed-on: http://codereview.qt-project.org/5818 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* Refactor branchGunnar Sletta2011-08-265-5/+5
| | | | Change-Id: Ib40cc3a98060dfbe1649af23f970afe542f9734c
* Fixed infinite loop when loading certain SVGs.Kim Motoyoshi Kalland2011-08-151-1/+1
| | | | | | | | | Task-number: QTBUG-16216 Change-Id: Ic382cf6dba43b3c08db43117e84620b272e5adb6 Reviewed-on: http://codereview.qt.nokia.com/2976 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: aavit <qt_aavit@ovi.com>
* Fixed compile.Rohan McGovern2011-08-121-1/+1
| | | | | | | | | | qtbase f2b3dfd1f17952627fce9fde1264207958f87f43 removed QtXml/qxmlstream.h. Change-Id: I536b42145011746291eab7240bc1f8275edec56d Reviewed-on: http://codereview.qt.nokia.com/2881 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kalle Lehtonen <kalle.ju.lehtonen@nokia.com>
* Add zlib to src/3rdparty for non-system-zlib buildsMarius Storm-Olsen2011-06-0946-1/+19010
| | | | Required for Windows to build under normal conditions
* Use feature profile loading instead of direct inclusion.axis2011-06-073-3/+3
|
* Hardcoded zlib linking options.axis2011-06-071-1/+7
| | | | | | This also removes support for non-system based zlib. If we want to support that, it needs some extra work, since it needs access to the source code of zlib.
* Fixed DESTDIR after modularization.axis2011-06-072-2/+2
|
* Update licenseheader text in source files for qtsvg Qt moduleJyri Tahtela2011-05-2428-476/+476
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Add QTSVG_VERSION macro for qtsvgLiang Qi2011-05-111-0/+2
| | | | | | | Provide version info for each library. Task-number: QTMODULARIZATION-44 Reviewed-by: axis
* Use private headersMarius Storm-Olsen2011-05-021-1/+1
|
* Add module.prf, and install MODULE_PRI for each moduleMarius Storm-Olsen2011-05-021-0/+4
| | | | Output warning if not present
* Corrected include.axis2011-04-271-1/+1
|
* Move QtSvg into a separate repositoryLiang Qi2011-04-273-8/+13
|
* Initial import from the monolithic Qt.Qt by Nokia2011-04-2735-0/+12360
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12