- 07 Nov, 2014 - 1 commit
-
-
Pierre Rossi authored
We can use the new application attribute for this now. Change-Id: Ia0a6d13d36316ec9becfb5d3251b8461ac73a2d0 Reviewed-by:
Laszlo Agocs <laszlo.agocs@digia.com>
-
- 31 Oct, 2014 - 1 commit
-
-
Thiago Macieira authored
They are not meant to be used like that. If you want formatted output to the console, use stdio.h functions or std::cout. Otherwise, you get something like: $ qmlscene -h [233103.196] (126848)(usage|?qmlscene?|__libc_start_main|?qmlscene?): Usage: qmlscene [options] <filename> [233103.197] (126848)(usage|?qmlscene?|__libc_start_main|?qmlscene?): [233103.197] (126848)(usage|?qmlscene?|__libc_start_main|?qmlscene?): Options: [233103.198] (126848)(usage|?qmlscene?|__libc_start_main|?qmlscene?): --maximized ............................... Run maximized [...] I've replaced all qDebug with puts/printf and most qWarning with fprintf to stderr. In my opinion, some of the qWarnings aren't errors, so I replaced those with puts/printf too. Change-Id: I3e493950bc4a588059fec6c7441b010c2780dffd Reviewed-by:
Simon Hausmann <simon.hausmann@digia.com>
-
- 28 Oct, 2014 - 1 commit
-
-
Shawn Rutledge authored
This reverts commit 427646b8 . It seems that it should have been more correct, but we are still not shipping English translations, and static QString find_translation() in qtranslator.cpp will return any language which is in QLocale::uiLanguages() for which the translation file is found. That is a long list on OSX. Reverting the patch means find_translation() is not called in such cases. This change can be re-done whenever we are more sure that the attempt to find a translation will succeed in finding a sensible one, or fall back to not translating, rather than choosing a language that the user didn't intend. Task-number: QTBUG-41977 Change-Id: I425946cc71cec96b4f38629eb2b7e80220c5236d Reviewed-by:
Jan Arve Sæther <jan-arve.saether@theqtcompany.com>
-
- 01 Oct, 2014 - 1 commit
-
-
Shawn Rutledge authored
As the docs explain, the variant of QTranslator::load() taking a const QLocale& is better because it "uses QLocale::uiLanguages() and not simply the locale name, which refers to the formatting of dates and numbers and not necessarily the UI language." And, using a default-constructed QLocale permits QLocale::setDefault() to override the system locale, so for example an application's main.cpp can do that before constructing a QQmlApplicationEngine. Task-number: QTBUG-7329 Change-Id: Ia29a4c894087c92b071c0fe484728866f2660fe6 Reviewed-by:
Jan Arve Sæther <jan-arve.saether@digia.com>
-
- 04 Sep, 2014 - 1 commit
-
-
Shawn Rutledge authored
It was giving up too early because qmlscene_??.qm doesn't exist. The file qt_??.qm links to all existing Qt-provided translation files, so it is enough by itself unless there are application-specific translations besides. Change-Id: Iebedf54ddb4eef4f4d7da8a7fade1850a366aee8 Reviewed-by:
Jan Arve Sæther <jan-arve.saether@digia.com>
-
- 25 Aug, 2014 - 1 commit
-
-
Jani Heikkinen authored
- Renamed LICENSE.LGPL to LICENSE.LGPLv21 - Added LICENSE.LGPLv3 & LICENSE.GPLv2 - Removed LICENSE.GPL Change-Id: I84a565e2e0caa3b76bf291a7d188a57a4b00e1b0 Reviewed-by:
Jani Heikkinen <jani.heikkinen@digia.com>
-
- 05 Aug, 2014 - 1 commit
-
-
Jocelyn Turcotte authored
Change-Id: I438c33a1dc83fd0cd1ec08bb4e4a1257a3216ca2 Reviewed-by:
Laszlo Agocs <laszlo.agocs@digia.com>
-
- 02 Jul, 2014 - 1 commit
-
-
Shawn Rutledge authored
This affects the location of the QSettings files or registry entries. Other parts of Qt are using this organization name so it's good to have all the settings in the same place. [ChangeLog][QtQuick] tools and examples consistently use the QtProject organization name Change-Id: I1fae4eaed0248411fe95dda9572d38006648b162 Reviewed-by:
J-P Nurmi <jpnurmi@digia.com>
-
- 04 Apr, 2014 - 1 commit
-
-
Jocelyn Turcotte authored
This removes QSGContext::sharedOpenGLContext and replace its uses with QOpenGLContextPrivate::globalShareContext, which is also going to be used by QOpenGLWidget and QQuickWidget. Change-Id: I1e296c3e6832f717caaf31ba7d7b27c06249219b Reviewed-by:
Laszlo Agocs <laszlo.agocs@digia.com>
-
- 29 Mar, 2014 - 1 commit
-
-
Simon Hausmann authored
This is required for running QWebEngine inside qmlscene. It can be disabled with --disable-context-sharing and it remains off in QtQuick. Instead apps have to use QWebEngine API to enable this, where this patch here is merely convenience. Change-Id: I123893a7c8c644c49c66fe2b42d2b7b2e03622d9 Reviewed-by:
Jocelyn Turcotte <jocelyn.turcotte@digia.com> Reviewed-by:
Gunnar Sletta <gunnar.sletta@jollamobile.com>
-
- 13 Mar, 2014 - 1 commit
-
-
Erik Larsson authored
When using the tools qml and qmlscene with dummy-data it will crash or behave wrong, due to the dummy-data component will get the state not ready, if the dummy-data qml-files does an import of another folder or a js-file. By changing the way of loading dummy-data, by letting QQmlComponent handle the file opening instead of using the setData() method, qmlscene and qml will be able to handle this type of dummy-data. The tool qml also needed to load the dummy data before loading the regular components, otherwise the dummy-data would not be ready for the other components to use. Task-number: QTBUG-32721 Change-Id: Ia1cc2b2626187e23c7d7313be788202d91b12471 Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
- 08 Sep, 2013 - 1 commit
-
-
Simon Hausmann authored
Propagate error conditions from createVMEMetaObjectAndPropertyCache to the caller and properly clean up refcounts (using QQmlRefPointer) Also fixed qmlscene to report errors if create() failed. Change-Id: I75d984798a197c102078e5d5638ed92f167ab49f Reviewed-by:
Lars Knoll <lars.knoll@digia.com>
-
- 04 Jul, 2013 - 1 commit
-
-
J-P Nurmi authored
Task-number: QTBUG-32207 Change-Id: Ic7c45228cbdc049d3dfdb3482296d0e8c89a930c Reviewed-by:
Gunnar Sletta <gunnar.sletta@digia.com>
-
- 04 Jun, 2013 - 1 commit
-
-
Shawn Rutledge authored
The necessity for this is documented in the QQuickWindow::incubationController() accessor. Bug 31203 is about writing a custom main() with a QQmlApplicationEngine, not about qmlscene, but the same workaround is necessary for both. Hopefully soon we find a way to make it unnecessary, but for now it is. This fix also doesn't take care of the QtObject { Window { } } use case. Task-number: QTBUG-31203 Change-Id: Ic9a5e4a23ac918593138dc9cab3de6cd36453eaf Reviewed-by:
Jens Bache-Wiig <jens.bache-wiig@digia.com> Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
- 23 May, 2013 - 1 commit
-
-
Friedemann Kleint authored
Task-number: QTBUG-31258 Change-Id: I13dfc17c75075de155505d20c57400753de0a71d Reviewed-by:
Shawn Rutledge <shawn.rutledge@digia.com>
-
- 22 May, 2013 - 1 commit
-
-
Shawn Rutledge authored
That way Component.onCompleted() can optionally do showMaximized() without being overridden. Task-number: QTBUG-31260 Change-Id: I6f5c3025efd3b38809be85da4172241695168a6c Reviewed-by:
Nikita Krupenko <krnekit@gmail.com> Reviewed-by:
Alan Alpert <aalpert@blackberry.com>
-
- 02 Apr, 2013 - 1 commit
-
-
Gunnar Sletta authored
Change-Id: I3202e8e7461f457eeb73a82b7a8da40a11e4f76d Reviewed-by:
Morten Johan Sørvig <morten.sorvig@digia.com>
-
- 05 Feb, 2013 - 1 commit
-
-
Gunnar Sletta authored
Change-Id: I080c25ed8b8cc8b743043b5aa348927749c1f0eb Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 10 Jan, 2013 - 1 commit
-
-
Sergio Ahumada authored
Change-Id: I6c3bd7bebe3d62d1cfd0fa6334544c9db8398c76 Reviewed-by:
Akseli Salovaara <akseli.salovaara@digia.com> Reviewed-by:
Sergio Ahumada <sergio.ahumada@digia.com>
-
- 04 Jan, 2013 - 1 commit
-
-
Richard Moe Gustavsen authored
- last line was not aliged correctly with the previous lines. - usage of capital letter was inconsistent. Change-Id: Ied7caab8296a635e105764bc2e95aa9e78f1cfcb Reviewed-by:
Alan Alpert <aalpert@rim.com>
-
- 11 Dec, 2012 - 1 commit
-
-
Gunnar Sletta authored
Change-Id: I9ec8961342c23ea2c116c970e84aa412365412a9 Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 06 Dec, 2012 - 1 commit
-
-
Alan Alpert authored
While the process should terminate immediately with a non-zero exit code on component error, it does that in the next line already. The main difference is dropping the backtrace, which is not useful in this case. Change-Id: I866ea00e62cb9d1b7c506b9819cd9bb2750ac81f Reviewed-by:
Jens Bache-Wiig <jens.bache-wiig@digia.com>
-
- 30 Nov, 2012 - 1 commit
-
-
Shawn Rutledge authored
Change-Id: I146e7b8e3ae0ee74f5f4e3ef85f59d50a639c0f5 Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 26 Nov, 2012 - 1 commit
-
-
Tasuku Suzuki authored
Change-Id: Id7aeef0d499f48ddc64b4ea3e4dc713db8458c38 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by:
Alan Alpert (RIM) <aalpert@rim.com>
-
- 22 Nov, 2012 - 1 commit
-
-
Friedemann Kleint authored
Change-Id: I7ea8ff54d24fe0818cd216d4aac0e8970461306e Reviewed-by:
Jędrzej Nowacki <jedrzej.nowacki@digia.com>
-
- 09 Nov, 2012 - 1 commit
-
-
Shawn Rutledge authored
Setting Window.color in QML takes effect immediately. It was only possible to set the property at startup. Examples demonstrate new Window property features. Change-Id: Ic5b43d0d84371f3fe5c42223ccc98e6de27aed10 Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 08 Nov, 2012 - 1 commit
-
-
Shawn Rutledge authored
Depends on patch Ie4424ec15fbdef6b29b137f90a2ae33f173edd21 in qtbase. Change-Id: I9614cc2c7ed119c663b3f6f99267483e291e529c Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 05 Nov, 2012 - 1 commit
-
-
Shawn Rutledge authored
Before, it assumed that the root is an Item and needs to have a Window created. But it's useful for an application to have a Window as the root, and it was already possible by writing a different C++ main function (see qtdeclarative/examples/window/window/window.cpp). It doesn't take much to give qmlscene this flexibility too. Change-Id: Ie808e78a42074e13aa9d3c87723ec9ac8fdbaf4a Reviewed-by:
Samuel Rødal <samuel.rodal@digia.com>
-
- 25 Oct, 2012 - 1 commit
-
-
Frederik Gladhorn authored
Change-Id: Ia55cf3cff4f019c82588d44c0b9c63cb97d965be Reviewed-by:
Lars Knoll <lars.knoll@digia.com>
-
- 23 Sep, 2012 - 1 commit
-
-
Iikka Eklund authored
Change copyrights and license headers from Nokia to Digia Change-Id: Ie7f5d49ed8235d7a7845ab68f99ad1c220e64d5c Reviewed-by:
Lars Knoll <lars.knoll@digia.com>
-
- 30 Jul, 2012 - 1 commit
-
-
Rohan McGovern authored
Don't unnecessarily refer to QApplication for installTranslator(); this is a static member of QCoreApplication. Change-Id: I7b0e0e30abe1f3a5c114136f1107de3fd7dbc815 Reviewed-by:
Alan Alpert <alan.alpert@nokia.com>
-
- 26 Jul, 2012 - 1 commit
-
-
Marc Mutz authored
Change-Id: Ibf1f9a451164982bcd50195b210c5b59e684937e Reviewed-by:
Rohan McGovern <rohan.mcgovern@nokia.com>
-
- 25 Jul, 2012 - 1 commit
-
-
Marc Mutz authored
Change-Id: Ic83e5fdaa7ef289f40cbeb4633a75d93d38c0bdb Reviewed-by:
Stephen Kelly <stephen.kelly@kdab.com>
-
- 17 Jul, 2012 - 2 commits
-
-
Charles Yin authored
Task-number: QTBUG-22391 Change-Id: Id567d4aabf47ce4790cf33979c4e464ba4f09357 Reviewed-by:
Yunqiao Yin <charles.yin@nokia.com>
-
Alan Alpert authored
QQuickCanvas is now called QQuickWindow QQuickCanvas::rootItem is now QQuickWindow::contentItem QQuickItem::canvas is now QQuickItem::window QQuickItem::ItemChangeData::canvas is also renamed window QQuickCanvas::grabFrameBuffer is now QQuickWindow::grabWindow The functions related to the color property have dropped the clear from their names. The first three changes have interim compatibility measures in place to ease the transition. Change-Id: Id34e29546a22a74a7ae2ad90ee3a8def6fc541d2 Reviewed-by:
Martin Jones <martin.jones@nokia.com>
-
- 25 Jun, 2012 - 1 commit
-
-
Robin Burchell authored
There's no need to heap allocate our QQuickView, and there's no need to have a seperate pointer to QWindow when we can just use the QQuickView directly. Change-Id: Ia2bc83c9dc83d1df1ec793836793f752d67e9415 Reviewed-by:
Alan Alpert <alan.alpert@nokia.com>
-
- 19 Jun, 2012 - 2 commits
-
-
Girish Ramakrishnan authored
The option makes qmlscene request a format with alpha for the QQuickView. Change-Id: I6490e606dd0af534147de95783f3a2ddfa8c52c8 Reviewed-by:
Gunnar Sletta <gunnar.sletta@nokia.com>
-
Robin Burchell authored
Change-Id: I20588ad0634aebec8374a570179ee43dd1b1dd3b Reviewed-by:
Alan Alpert <alan.alpert@nokia.com>
-
- 09 Jun, 2012 - 1 commit
-
-
Tasuku Suzuki authored
Change-Id: I2112bc8c9fe58cda84f498f9062b4b32b9ef0c24 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- 28 May, 2012 - 1 commit
-
-
Robin Burchell authored
Sometimes it is useful to be able to resize a view from within QML, for example, when writing QML which must operate in both portrait and landscape conditions. Change-Id: I10564bb3c8661fae6c1d175985268a409dc3dafd Reviewed-by:
Alan Alpert <alan.alpert@nokia.com>
-