summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Debugger[TRK]: Warn about suspicious code segment addressesFriedemann Kleint2010-08-272-4/+20
| | | | | Task-number: QTCREATORBUG-2158 Reviewed-by: hjk
* Wizards: Delay parsing of custom wizards.Friedemann Kleint2010-08-276-13/+27
| | | | | | ... by introducing signal ICore::showNewItemsDialog(). Reviewed-by: Kai Köhne <kai.koehne@nokia.com>
* QmlJS: Fix crash when opening JS files.Christian Kamm2010-08-273-11/+15
| | | | | | | | | | | | Now that Contexts are cached, it needs to be copyable. However, the ScopeChain has a QmlComponentChain member that owns resources and didn't have a correct copy constructor or copy assignment operator. I've made QmlComponentChain non-copyable and store a shared pointer to an instance instead, as it will generally not change for a given context. Reviewed-by: Lasse Holmstedt
* Add Qt DevNet to link page, dropped QtCentre instead.Daniel Molkentin2010-08-261-3/+3
| | | | Task-number: QTCREATORBUG-2071
* Fix crash after unloading project and changing qt versionsdt2010-08-261-1/+3
| | | | | | | | Unloading a project must always remove the configuration widgets, since otherwise they might be accessed after the project was deleted. So remove them even if we have no other project widget to show. Reviewed-By: Tobias Hunger
* Implement adding new project into opened subdirs projectJarek Kobus2010-08-2630-46/+271
| | | | Reviewed-by: dt <qtc-committer@nokia.com>
* Qml Javascript Debugger: add a script console widget.Olivier Goffart2010-08-267-6/+396
| | | | The scriptconsole layout come from the old qmlinspector
* Increase the timeout waiting for qmake to finish from 2 to 10 seconds.dt2010-08-261-1/+1
|
* QmlInspector: Added reparenting of items in the Qml Live Preview. Reviewed ↵Christiaan Janssen2010-08-2613-2/+65
| | | | by: Lasse Holmstedt
* debugger: don't show format options for 'bool'hjk2010-08-261-1/+1
| | | | http://bugreports.qt.nokia.com/browse/QTCREATORBUG-2126
* Reduced the number of ambiguous C++ initializers.Roberto Raggi2010-08-261-1/+19
|
* QML Observer: Enter context when context menu item is selectedLasse Holmstedt2010-08-266-1/+24
| | | | | | Right-clicking on an item in qml observer presents a context menu as before, but instead of just selecting the item, the user enters its context if it's possible.
* Added a trivial Visitor generator.Roberto Raggi2010-08-264-0/+495
|
* Get rid of deprecated forward class declarations.Roberto Raggi2010-08-261-1/+0
|
* debugger: fix fancy QImage displayhjk2010-08-262-4/+6
| | | | Task-number: QTCREATORBUG-2123 QTCREATORBUG-2122
* QML Inspector: Disabled rubberband selection toolLasse Holmstedt2010-08-265-44/+6
| | | | It was not very useful without being able to e.g. move things around.
* Renamed Symbol::scope() to Symbol::enclosingScope().Roberto Raggi2010-08-2621-65/+65
|
* Some cleanup in the C++ AST.Roberto Raggi2010-08-2613-89/+92
|
* Make ASSERT information clickableTobias Hunger2010-08-262-5/+21
| | | | | | | * Make information raised by Qt assert clickable. Task-number: QTCREATORBUG-2175 Reviewed-by: Olivier Goffart
* debugger: fix for non-7bit chars on WindowsTobias Hunger2010-08-261-1/+14
| | | | | Task-number: QTCREATORBUG-2136 (ported from commit 02c331e0c4e8edcbe2c9402efe91c202ac521a04)
* Auto relase TaskFileFactory.Tobias Hunger2010-08-261-1/+1
|
* Skip tasks without files in buildissue viewTobias Hunger2010-08-261-16/+40
| | | | | Skip tasks withtou file information in build issue view when going back/forward.
* Add TaskList pluginTobias Hunger2010-08-2612-0/+523
| | | | | | | | | | | | | | | | | This plugin enables loading of .tasks files into the Build Isssue list. This is really nice if you need to e.g. browse results from static codecheckers in creator. Tasks files are simple tab-separated lists of one of the following forms: description type\tdesciption file\ttype\description file\tline\ttype\tdescription The strings may contain escape codes: \n for newline, \t for tab and \\ for a backslash
* VCS[git]: Environment settings.Friedemann Kleint2010-08-266-4/+55
| | | | | | | | | Make GitClient::synchronousGit use the process environment. Windows: Add a setting to fake a 'HOME' environment variable (%HOMEDRIVE%%HOMEPATH%) to make msysgit look for its SSH-keys there not only when run from git bash, but also from Qt Creator. Useful in MinGw-setups, where git must not be in the path.
* Don't update uses highlight in when updating outlineKai Koehne2010-08-261-2/+0
| | | | updateUses() is already called after each text change.
* Compare the scope pointers for local scopes.Roberto Raggi2010-08-262-1/+12
|
* debugger: replace \n by \\n in locals & watchershjk2010-08-263-2/+6
| | | | http://bugreports.qt.nokia.com/browse/QTCREATORBUG-2144
* Prefer declaration statements.Roberto Raggi2010-08-261-58/+61
|
* Get rid of the old Parser::parseExpressionOrDeclarationStatement().Roberto Raggi2010-08-261-33/+0
|
* Renamed Symbol::identity() to Symbol::unqualifiedName().Roberto Raggi2010-08-268-25/+25
|
* Pass the enclosing ClassSpecifierAST node.Roberto Raggi2010-08-262-68/+56
|
* Fix build without webkit.kh12010-08-261-0/+8
|
* Maemo: Delay UTFS server start a bit.Christian Kandeler2010-08-262-2/+5
| | | | | | | | We have no way to know when the client is actually opening its ports, so we wait until we are reasonably sure it's done. This is not 100% safe, but should generally suffice. (The UTFS server seems to have this logic already built in, but it does not seem to work on Mac.)
* Maemo: Display UTFS server stderr output.Christian Kandeler2010-08-268-0/+33
| | | | This will help us diagnose errors.
* Maemo: Fix deployables update after toolchain switch.Christian Kandeler2010-08-262-5/+7
|
* Maemo: Clarify user string.Christian Kandeler2010-08-261-3/+3
|
* SSH: Lower SFTP data size so it doesn't go above allowed packet size.Christian Kandeler2010-08-261-1/+1
|
* Botan: Add some #defines potentially increasing performance.Christian Kandeler2010-08-261-0/+7
|
* QmlJS: Fix possible segfaults with null documents.Christian Kamm2010-08-261-0/+4
|
* QmlJS: Refactor LookupContext creation for speed.Christian Kamm2010-08-2615-94/+139
| | | | | | | | * If possible, create LookupContexts through SemanticInfo; it caches the linked Context and will be faster. * Contexts now own their Engine. Reviewed-by: Lasse Holmstedt
* qml debugger: make the application output workOlivier Goffart2010-08-264-2/+24
|
* Reduced the number of ambiguous ExpressionOrDeclarationStatementAST nodes.Roberto Raggi2010-08-265-146/+268
|
* Fixes: Make compileBill King2010-08-261-1/+2
|
* Find wizard templates in newly introduced userResourcePath(), too.Daniel Molkentin2010-08-251-1/+17
|
* Refactor: add userResourcePath() accessor to ICore.Daniel Molkentin2010-08-257-8/+32
| | | | | | | | Access to the users private resource path (derived from the settings path) has been used in quite some places, so it's worth moving it to the core interface centrally. Reviewed-By: Thorbjorn Lindeijer
* Improved (and simplified) the stub directory structureAlessandro Portale2010-08-259-106/+99
| | | | | | | | | | | - Removed the "cpp/" dir - Moved main.cpp and symbianicon.svg next to the main .pro. This also reduces the dir depth in the project view. - Introduced "qmlapplicationviewer/" dir, which will contain the files which the user should not modify. All the files there have the base name "qmlapplicationviewer" - Moved/renamed "qmlapplication.pri" to "qmlapplicationviewer/qmlapplicationviewer.pri"
* Should have been part of fc6c2aa9980e8e5d37860d8844c18e5c21929e3d .kh12010-08-251-2/+0
|
* Small refactoring.kh12010-08-251-3/+5
|
* The backward menu logic was still broken.kh12010-08-251-3/+3
|
* Doc - Add information about Generic Highlighter. Add screen shots.Leena Miettinen2010-08-255-2/+63
| | | | Reviewed-by: Leandro T. C. Melo