summaryrefslogtreecommitdiff
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Debugger: Fix importing plain dumpers with newer gdbshjk2014-01-071-1/+1
| | | | | | Change-Id: Id0441ed8bb4ca1a116157e033bd711ece0e2b2ed Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com>
* Debugger: Use more direct breakpoint setting in dumper auto testDavid Schulz2014-01-071-5/+0
| | | | | Change-Id: Ibb24ded55ba02b908b63d71f1f872c73ee7b011b Reviewed-by: Christian Stenger <christian.stenger@digia.com>
* Debugger: Fix std::{shared,unique}_ptr displayhjk2014-01-071-2/+2
| | | | | | | Regression in 3.0. Change-Id: I8772176dc6ed75fb0f9c976632defacebe9d3589 Reviewed-by: Christian Stenger <christian.stenger@digia.com>
* Debugger: Fix display of std::array<some_struct>hjk2014-01-071-1/+1
| | | | | Change-Id: Ib2aa41d6a059246e15d1f42831bdec96c235161e Reviewed-by: Christian Stenger <christian.stenger@digia.com>
* QmlDesigner.PropertyEditor: removing old legacy filesThomas Hartmann2014-01-06146-9207/+0
| | | | | | | | | I kept them as reference, but they are not needed anymore. The QtQuick 2.0 port is done. Change-Id: Ieb75d506a45636a17adc3c78d7beca6d5c1fd211 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Marco Bubke <marco.bubke@digia.com>
* Debugger: Fix off-by-one when displaying "plottable" datahjk2014-01-061-1/+1
| | | | | Change-Id: I93b3ba02e0d2ebde829ec8120a847429ca712450 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
* QmlDesigner.PropertyEditor: remove remaining transactions from controlsThomas Hartmann2014-01-022-15/+0
| | | | | | | | | Since there are issues with transaction we play safe. Task-number: QTCREATORBUG-11134 Change-Id: I2144f81f14046317d967d6644befeb74e8d27eb8 Reviewed-by: Marco Bubke <marco.bubke@digia.com>
* French translation fixesGuillaume Belz2013-12-191-25/+30
| | | | | | Change-Id: Iedc2c70e5744b196c62ea20e2769179a9a2e33f4 Reviewed-by: Guillaume Belz <guillaume.belz@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
* remove over-escaped non-breaking spacesOswald Buddenhagen2013-12-191-3474/+3474
| | | | | | | | | | linguist is not able to work with correct non-breaking spaces (cf. QTBUG-6300 and QTBUG-35652), so we'll have to do entirely without them for the time being. Change-Id: Icd36556e141125335899e458102ade5728c6fbaf Reviewed-by: Guillaume Belz <guillaume.belz@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
* Cache loaded itemsJens Bache-Wiig2013-12-172-17/+23
| | | | | | | | | | | This is a somewhat different solution for improving the performance of the welcome screen. It has the added benefit of caching loaded items while still retaining a decent performance. Change-Id: I9927a90f1b7de5bb06c43b16dc80cb2afec3f8ad Reviewed-by: Ulf Hermann <ulf.hermann@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
* LLDB: Fix display of bases with multiple inheritance.Eike Ziller2013-12-171-1/+2
| | | | | | | | | | | It was only showing the "last" one because the inames were the same (currentIName.None). Do not overwrite iname of sub item in 'enterSubItem' if it already was set. Task-number: QTCREATORBUG-11109 Change-Id: I74581f62d47ff0c33650769c3ed66e24124d1092 Reviewed-by: hjk <hjk121@nokiamail.com>
* Fix use of variable before initializationThiago Macieira2013-12-162-4/+4
| | | | | | | | | | | | | That's what you get for shadowing a variable... The "childItem" variable on the second part of the foreach refers to one declared on the first part, which is uninitialized. Found by ICC 14.0: graphicalnodeinstance.cpp(300): warning #592: variable "childItem" is used before its value is set Change-Id: I9079a428eda90f4bb06f9ccd1adf836fee119133 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com> Reviewed-by: Marco Bubke <marco.bubke@digia.com>
* Debugger: Fix display of multiple inheritance from std::listhjk2013-12-161-1/+1
| | | | | | | Task-number: QTCREATORBUG-11023 Change-Id: Ia195ff84f7928615b0df5732c6f1a1cd8b401001 Reviewed-by: Christian Stenger <christian.stenger@digia.com>
* Debugger: Fix QSharedDataPointer dumperhjk2013-12-161-2/+1
| | | | | Change-Id: Ie66044e0f5f71ecba509326081d93736e5d3d68a Reviewed-by: Eike Ziller <eike.ziller@digia.com>
* Debugger: Add dumper for QTimeZonehjk2013-12-162-0/+15
| | | | | Change-Id: I1b20529d7ecdcbf5480e95d6e7be89a2fdb6a8b7 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
* QmlDesigner.PropertyEditor: Fixing crashThomas Hartmann2013-12-161-0/+1
| | | | | | | | | The designer was crashing when trying to anchor the root item. The root item cannot be anchored. Task-number: QTCREATORBUG-11078 Change-Id: I1aec1ad5b15de8c2baf3b76358d02347fb3a124c Reviewed-by: Marco Bubke <marco.bubke@digia.com>
* QmlDesigner.PropertyEditor: Fixing expressions and tr checkboxThomas Hartmann2013-12-161-17/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The handling of expressions in states was broken in conjunction with states. This patch fixes a couple of related issues: * The notifier of isTranslated (PropertyEditorValue) has to be expressionChanged, since this property depends on the expression. * isTranslated() has to return also true if there is only an expression in the base state. If the string is translated in the base state it should be translated in other states, too. * In states the expression set in createPropertyEditorValue() has to be the expression of the current stateif there is one. We can not just fall back to instanceValue. * I did a couple of fixes in LineEdit.qml. We cannot bind checked directly, since the binding will be deleted when checked is changed by the control. I removed all code regarding transactions. We react to onEditingFinished, so it is not required. The translated state is properly preserved now, when setting the value. Task-number: QTCREATORBUG-10674 Task-number: QTCREATORBUG-10791 Change-Id: I95721711a37e63c4c7c38e275089d6de0bb92bec Reviewed-by: Marco Bubke <marco.bubke@digia.com>
* Updated czech translationPavel Fric2013-12-101-22/+4716
| | | | | Change-Id: Ie488f002d43cefc3cac2602aea258d49bb236260 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
* Update french translationGuillaume Belz2013-12-041-3458/+8106
| | | | | | | | Also, converted non-breakable spaces into &nbsp;. Change-Id: I3cf7f3b1bc3a5bd90219ea5ffa794411d5c8bc85 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com> Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
* Polish Polish translationsJarek Kobus2013-12-041-17/+34
| | | | | | Change-Id: I55ac136b63e389f5c433a401067dd2ea477632d3 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Jarek Kobus <jaroslaw.kobus@digia.com>
* Update Russian translationsSergey Belyashov2013-12-041-2/+2
| | | | | | Change-Id: I98caf7eb1f5fa1ea3ba21a296e42e8906e2541ab Reviewed-by: Sergey Shambir <sergey.shambir.auto@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
* WelcomeScreen: Avoid loading of invalid picturesUlf Hermann2013-12-031-2/+2
| | | | | | | | | | | | Apparently the QML engine also loads pictures for invisible Image objects. The pictures icons for examples and tutorials on the welcome screen thus always try to load an extra video icon, which always fails. By setting the URL to an empty string if the example or tutorial being loaded is no video we can avoid that. Change-Id: Ibafc11ed233f386bbbf1e7a4830fcb34bc1cd55d Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* Fix in German translationRobert Loehning2013-12-031-1/+1
| | | | | Change-Id: I8b69fa1dd1a68a8422bac4662dfa60e836cac18b Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
* Update Polish translationsJarek Kobus2013-12-031-1143/+5681
| | | | | | Change-Id: Ib405c0941b47453d1ae492055ceef91f369e2312 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Jarek Kobus <jaroslaw.kobus@digia.com>
* WelcomeScreen: Don't use clippingUlf Hermann2013-12-031-3/+2
| | | | | | | | Aparrently clipping is slow in QML, so we use elide and manually control visibility instead. Change-Id: Idb743a8daec04b028f103a075a5416729f0e2a16 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* WelcomeScreen: Scroll the example grid view with the main scroll viewUlf Hermann2013-12-031-3/+5
| | | | | | | | By tying the scroll offsets and visible areas of the two scrollable elements together we avoid excessive loading times for the examples. Change-Id: I6522ef3e6c0454e5bb05bef143953d8d1850ffdc Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* Remove wrong Qt Creator version number from Qt Quick template filesKai Koehne2013-12-033-3/+3
| | | | | | | Task-number: QTCREATORBUG-10975 Change-Id: I6eb87a789ce88b1f3f298ef65b8bb96ce2348501 Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: Jarek Kobus <jaroslaw.kobus@digia.com>
* Welcomepage: Is should not be possible to uncheck tabsThomas Hartmann2013-12-021-0/+1
| | | | | | | Unchecking a tab has no clear semantic. Change-Id: I9bb3d659a76655846c79cabbe23717119ed0cf08 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
* Debugger: Adjust QDateTime dumper for Qt 5.2hjk2013-12-022-6/+20
| | | | | | Change-Id: I53a5701c9d1791e2705eafb258ff440f97e53b87 Reviewed-by: John Layt <jlayt@kde.org> Reviewed-by: hjk <hjk121@nokiamail.com>
* LLDB: Autoselect thread that was stopped inEike Ziller2013-12-021-1/+6
| | | | | | | | | The integration was only doing that for breakpoints, but not for stepping etc. Task-number: QTCREATORBUG-10813 Change-Id: I4be7ec691e839bf062ab67587062cba00cc85e4f Reviewed-by: hjk <hjk121@nokiamail.com>
* WelcomePage: Remove outdated tutorial videosTopi Reinio2013-12-024-12/+0
| | | | | | | | | | | | Remove following videos that use outdated terminology: - Qt Quick Elements, Part 1 - Qt Quick Elements, Part 2 - Qt Quick Elements, Part 3 Task-number: QTBUG-35187 Change-Id: Iacecf06b4868ecbc71fa2b7d3cc3ad23533e88b4 Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
* Debugger: Fix QTextCursor dumperhjk2013-11-291-1/+1
| | | | | Change-Id: I9e26e4dcee19caa0b4292655efdfeda5f1232714 Reviewed-by: hjk <hjk121@nokiamail.com>
* Ukrainian translation update for 3.0Viktor Ostashevskyi2013-11-291-1475/+5570
| | | | | Change-Id: Ib81a3ca1bef70250e83dcf5f45bc145ff78cee32 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
* Debugger: Fix check for QObject-ness.hjk2013-11-281-1/+1
| | | | | Change-Id: Idd33e104e6e80f9b1f87af9409db810c2c37a4a2 Reviewed-by: hjk <hjk121@nokiamail.com>
* Debugger: std::vector<bool> re-fixhjk2013-11-281-3/+4
| | | | | Change-Id: Ia37f6a0ad0b9b59439f916e7ca93ee3bb9812fa1 Reviewed-by: hjk <hjk121@nokiamail.com>
* qmljs: update QtQuick2 bundleFawzi Mohamed2013-11-271-0/+14
| | | | | | | | This will need to be replaced with the results of the import scan, but that will be for 3.1. Change-Id: Icd398282142972421044c3b4d05fec9057cff95c Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* Debugger: Correctly identify derived classes from referencesUlf Hermann2013-11-271-1/+1
| | | | | | | | | | | | | Previously the correctly gdb-identified dynamic types were overwritten with the value's static type. This is probably because the dynamic type doesn't include the "&" for "reference". That, however, can easily be fixed by just appending "&". As we're only handling references there it should be safe to do so. Task-number: QTCREATORBUG-10888 Change-Id: I7310916ce662956e66491423ad26658c32c8776b Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com>
* Debugger: Fix std::string dumper on 64 bithjk2013-11-271-1/+1
| | | | | | Task-number: QTCREATORBUG-10925 Change-Id: Iec57515e8adca8bd2e638157b9c1f0d4d9310c68 Reviewed-by: Christian Stenger <christian.stenger@digia.com>
* Debugger: Fix std::vector<bool> dumper for LLDBhjk2013-11-261-7/+9
| | | | | Change-Id: I83788acb6cfa9a659482d64bead10dd27e71fade Reviewed-by: hjk <hjk121@nokiamail.com>
* QmlDesigner.PropertyEditor: TextField "Delete" should not delete itemsThomas Hartmann2013-11-251-0/+5
| | | | | Change-Id: I7434d1d9f8175cf2799ea4eea491cdcbaee40040 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* QmlDesigner.PropertyEditor: fix for gradient editingThomas Hartmann2013-11-251-0/+9
| | | | | | | We have to ensure that currentColor is not set to early. Change-Id: I243898e08adf2f68d037374cc6c8ff586b1d5d0d Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* Update Russian translationSergey Belyashov2013-11-251-5031/+5372
| | | | | | Change-Id: I6f49b83d6ab554b039f6a159b4520db5649d1e2d Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
* WelcomeScreen: Pass height of develop mode to outer elementUlf Hermann2013-11-253-29/+4
| | | | | | | | | | | | Previously the recent projects had an extra scrollview and the sessions had a fixed height. In addition, as there will never be any scrollbars around the recent projects anymore we don't need the borders around them anymore, either. Task-number: QTCREATORBUG-10731 Change-Id: I491265148a3ce777f15b8ba7d852248b583f2c83 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* QmlDesigner.PropertyEditor: using onEditingFinishedThomas Hartmann2013-11-251-2/+2
| | | | | Change-Id: I2e6097ebb1e6265eeef7ee6b65e34945fdc83213 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* Debugger: Fix editing of std::{string,vector} valueshjk2013-11-213-45/+54
| | | | | | Change-Id: I3ff3f032af9ca54f2c48fe6e611fee73691e5ea2 Reviewed-by: Ulf Hermann <ulf.hermann@digia.com> Reviewed-by: hjk <hjk121@nokiamail.com>
* ios: do not stop in debugger when debuggings an appFawzi Mohamed2013-11-211-2/+8
| | | | | | | | | | | the attached process is seen as still running just after the attach and continuing fails, immediately later a spontaneous stop is detected and on ios (where we set continueAfterAttach) we continue after the spontanous stop. This also work in the desktop case. Change-Id: I92fbcd3ba319da7d9e664f67c8cbbea00f0daa43 Reviewed-by: hjk <hjk121@nokiamail.com>
* WelcomeScreen: fix fuzzy fonts in the side barJ-P Nurmi2013-11-211-2/+2
| | | | | | | | Use native text rendering to get crisp fonts Change-Id: I75ca9ae323f2e4bd60e080cdcc2a6d90f0234c33 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com> Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* QmlDesigner: Change version for Qml1Puppet to 2Marco Bubke2013-11-201-2/+4
| | | | | Change-Id: I599598795fda265030c319f45329e1c67e6f5bfa Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
* Debugger: Disable theadname extraction (again)hjk2013-11-201-0/+4
| | | | | | | | | | | | This only affects MinGW where the feature triggered QTCREATORBUG-5200 in the past. Right now the performance impact of c9c0f80 (fixing QTCREATORBUG-10826) is unclear and no time to investigate. Trading the feature for robustness seems in order. Power-users can remove the return line in the script to get it back. Change-Id: If5a30808b72969493e5f40dd0fcbafdcccec343e Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Remove unused codejkobus2013-11-201-5/+0
| | | | | Change-Id: Ie7e2db1416ec2eb51339a05b8af408c18a0cdbf3 Reviewed-by: Kai Koehne <kai.koehne@digia.com>