- Sep 16, 2010
-
-
Christian Kamm authored
Link now caches imports. That means importing the same library (say, Qt) from more than one file no longer creates an importing namespace for each one. Instead, a single one is created for the instance of Link. To make this work, the type environment in ScopeChain has been given its own type: Interpreter::TypeEnvironment. That has the added benefit of being able to carry meta-information about imports. You can use TypeEnvironment::importInfo(qmlComponentName) to get information about the import node that caused the import of the component.
-
Christian Kamm authored
-
Erik Verbruggen authored
-
- Sep 15, 2010
-
-
Friedemann Kleint authored
Rename 'QML standalone application' to 'QML application' and the 'old-style' QML applications to 'QML Viewer based applications'. For the QML renaming: Rubber-stamped-by:
Alessandro Portale <alessandro.portale@nokia.com>
-
Christian Kamm authored
This should make it easier to debug problems with Qml plugin type dumping. Reviewed-by: Roberto Raggi
-
- Sep 14, 2010
-
-
dt authored
Also introduce a indirection, modes have now types, edit and debug have the same type, and editors do have a prefered type of modes instead of a prefered mode. That fixes the bug that if the prefered qml editing mode was set to design, then in switching between qml editors would - in Edit Mode: stay in edit mode - in Debug Mode: switch to debug mode
-
Kai Koehne authored
Check in advance whether position is still valid. This can be false if the text has already changed, but the outline hasn't been yet updated.
-
Kai Koehne authored
Make sure all internal hashes for an item are initialized before inserting it into the tree.
-
- Sep 13, 2010
-
-
Leandro Melo authored
This affects how files are identified by the MIME database. Although this is a general improvement, it was triggered by the following bug report. Task-number: QTCREATORBUG-1793 Reviewed-by: Friedemann Kleint
-
- Sep 08, 2010
-
-
Christiaan Janssen authored
Reviewed by: Lasse Holmstedt
-
Christian Kamm authored
Reviewed-by: Roberto Raggi
-
Leandro Melo authored
The wizards already provide a default suffix for file creation. But since the user is still free to specify something else it's better to leave it to Creator to decide which one is the proper editor. After all, this reflects how the file will be treated by Creator (including the next time it's opened). Task-number: QTCREATORBUG-2006
-
Thomas Hartmann authored
The delay was increased to 500 ms and the marker only appears now, if the cursor is directly on the type name. This way the text marker creates less visual noise.
-
Thomas Hartmann authored
-
Christian Kamm authored
Task-number: QTCREATORBUG-2285 Reviewed-by: Roberto Raggi
-
Christian Kamm authored
Task-number: QTCREATORBUG-2295
-
Roberto Raggi authored
Reviewed-by: Christian Kamm
-
Roberto Raggi authored
-
Roberto Raggi authored
-
- Sep 07, 2010
-
-
Friedemann Kleint authored
-
- Sep 03, 2010
-
-
Kai Koehne authored
Fixes a regression.
-
Roberto Raggi authored
-
Kai Koehne authored
Hopefully fixes crash when opening a .qml file from the command line (mac os x).
-
Kai Koehne authored
-
Kai Koehne authored
Select parent element if the property isn't shown in outline (due to filter).
-
- Sep 01, 2010
-
-
Thomas Hartmann authored
If we stay inside the node we keep the text marker
-
Thomas Hartmann authored
-
- Aug 31, 2010
-
-
Leandro Melo authored
-
Kai Koehne authored
Initialize e.g. m_itemToNode before the view calls back to the model.
-
Christian Kamm authored
Reviewed-by: Roberto Raggi
-
- Aug 30, 2010
-
-
Christian Kamm authored
-
Christian Kamm authored
It's used very often, so lazy computation (potentially in the gui thread) was too expensive. Reviewed-by: Kai Koehne
-
Christian Kamm authored
-
Christian Kamm authored
updateUses() has to be called for cursor position changes. Done-with: Kai Koehne
-
hjk authored
-
- Aug 27, 2010
-
-
Lasse Holmstedt authored
-
Lasse Holmstedt authored
-
Tobias Hunger authored
* Fix all warnings about non-explicit constructors except for those in 3rdparty code.
-
- Aug 26, 2010
-
-
Kai Koehne authored
updateUses() is already called after each text change.
-
Christian Kamm authored
* If possible, create LookupContexts through SemanticInfo; it caches the linked Context and will be faster. * Contexts now own their Engine. Reviewed-by: Lasse Holmstedt
-