Daniel Molkentin
6efe7d33c1
Find wizard templates in newly introduced userResourcePath(), too.
2010-08-25 19:12:53 +02:00
Daniel Molkentin
460cbadc82
Refactor: add userResourcePath() accessor to ICore.
...
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
2010-08-25 19:12:53 +02:00
Alessandro Portale
071400d6bb
Improved (and simplified) the stub directory structure
...
- 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"
2010-08-25 19:08:15 +02:00
kh1
053721ea22
Should have been part of fc6c2aa998 .
2010-08-25 17:35:42 +02:00
kh1
fc6c2aa998
Small refactoring.
2010-08-25 17:34:36 +02:00
kh1
0cf36e2dc0
The backward menu logic was still broken.
2010-08-25 17:15:58 +02:00
Leena Miettinen
84a23314cc
Doc - Add information about Generic Highlighter. Add screen shots.
...
Reviewed-by: Leandro T. C. Melo
2010-08-25 16:44:42 +02:00
kh1
ffdd1765ca
Better naming.
2010-08-25 16:18:52 +02:00
kh1
1b7a92925d
Make next/ previous button work for external help.
...
Task-number: QTCREATORBUG-2074
2010-08-25 15:51:56 +02:00
kh1
e9305eef3f
Better naming.
2010-08-25 15:51:55 +02:00
Kai Koehne
3a87261193
QmlOutline: Don't scroll to (horizontal) center when auto-selecting
2010-08-25 15:32:02 +02:00
Alessandro Portale
58892081de
Set added item as current item. Much more intuitive.
2010-08-25 15:11:28 +02:00
hjk
3ef657cc03
debugger: make boost::optional dumper work for references
2010-08-25 14:57:15 +02:00
Alessandro Portale
299be71afc
Make sure that the last added uri is in edit mode
2010-08-25 14:55:11 +02:00
Alessandro Portale
6ffdf15f3b
Added an example to the URI label
2010-08-25 14:55:11 +02:00
Alessandro Portale
7b185fc37d
Fixed layout, took error label outside of splitter.
2010-08-25 14:55:10 +02:00
Christian Kamm
b79fe7e711
C++: Fix indenting of QML_* macros.
...
Task-number: QTCREATORBUG-2111
2010-08-25 14:55:16 +02:00
Christian Kamm
7a8c07a1f8
QmlJS: The Script type is no longer implicitly available.
2010-08-25 14:55:16 +02:00
Olivier Goffart
6ba643516b
qmlobserver: workaround crash if an item has an infinite scale
...
infinite scale may occours if the qml scale binding sets an infinite scale.
2010-08-25 14:36:50 +02:00
Christian Kamm
726985303b
TextEditor: Fix extra selection for snippets to match the editable area.
...
Task-number: QTCREATORBUG-2099
Reviewed-by: mae
2010-08-25 14:34:13 +02:00
Alessandro Portale
46c7d8f1d2
Moving the "Qml standalone" wizards from qmlpm to qt4pm
2010-08-25 14:25:35 +02:00
hjk
80dc54acff
debugger: add dumper for boost::optional
2010-08-25 14:20:46 +02:00
Christian Kamm
36e8b65d59
QmlJS: Fix running qmldump on plugins that require a specific uri.
...
The builtin QML plugins require to be imported with the full uri, i.e.
import Qt.labs.particles 1.0
so setting the import path to imports/Qt/labs and doing
import particles 1.0
is not supposed to work. (see QTBUG-11139)
This change adjusts qmldump to take an import path *and* the import uri,
so it will be able to dump the type information for these plugins.
Reviewed-by: Erik Verbruggen
2010-08-25 14:19:44 +02:00
Kai Koehne
6cf563bb25
QmlOutline: Cut down update times considerably
...
Cut down update times of Outline by a magnitude by only emitting
itemChanged signal if absolutely needed. This doesn't include the change
of the icon, because QIcon is missing a comparison operator ...
2010-08-25 13:28:04 +02:00
Tobias Hunger
22fe4f584d
Set id of buildstepslist in fromMap() asap
...
* This unbreaks restoration of some steps.
2010-08-25 13:11:29 +02:00
Kai Koehne
8346e354ee
QmlOutline: Always reset views
...
The incremental update is not working as expected.
2010-08-25 12:25:22 +02:00
Robert Loehning
0166f49983
Fixed German translation of new git menus
2010-08-25 12:19:48 +02:00
Jarek Kobus
351beb8697
Change the shortcut for ui form preview
...
Reviewed-by: dt <qtc-committer@nokia.com >
Task-number: QTCREATORBUG-1911
2010-08-25 11:57:02 +02:00
dt
ece749c30e
Fix context menu for the QML virtual folder.
...
That is: a) Figure out a suitable default location for Add New on a
virtual folder.
b) If that default location is deployed, don't show a Add Existing Files
option, since that is confusing.
2010-08-25 11:54:57 +02:00
dt
e5f8a31b9e
Fix File/New in the deployment folders.
...
That is tell the user that those files need not be added to any project,
and show "<Implicitly Add>" for them on the last wizard page.
This fixes Add/New for the QML/OTHER_FILES folder structure, except for
the virtual folder itself.
Reviewed-By: Jarek Kobus <jaroslaw.kobus@nokia.com >
2010-08-25 11:53:43 +02:00
dt
6bc346443a
Fix hangs on trying to cdUp through not longer existing directories
2010-08-25 11:52:41 +02:00
Christian Kamm
898098c1f2
QmlJS: Allow lookups on const Contexts. Pass const Contexts where ok.
...
In preparation for caching Contexts.
Reviewed-by: Erik Verbruggen
2010-08-25 11:53:23 +02:00
kh1
44f4db7a39
Add navigation menus to the back and forth history buttons.
...
Task-number: QTCREATORBUG-347
Reviewed-by: ck
2010-08-25 11:46:04 +02:00
Lasse Holmstedt
86d0eb0830
Debugger UI: Don't write QML settings if QML debugging is disabled
2010-08-25 11:26:12 +02:00
Robert Loehning
78658cb3d7
doc: Fixed URL in GettingStartedWelcomePageWidget
...
(cherry picked from commit c3649d4fc5 )
2010-08-25 11:15:59 +02:00
Lasse Holmstedt
9e28e72b75
Debugger UI: Fix crash if QML plugin is not present
2010-08-25 11:08:44 +02:00
Lasse Holmstedt
f547fc1618
Debugger: Fixed missing variable init
...
Got lost in a merge.
2010-08-25 09:59:33 +02:00
Olivier Goffart
792eb84fe4
Fix warning about suggested parentheses
...
The intended meaning is to toggle the DebugBuild flag, so the & was too much
Reviewed-by: Tobias Hunger
2010-08-25 09:56:19 +02:00
Christian Kandeler
26aec74359
Maemo: Some adaptations for Harmattan.
...
Reviewed-by: kh1
2010-08-25 09:53:42 +02:00
Lasse Holmstedt
0a85b90d98
Debugger UI: Don't check "C++" language if active project is .qmlproject
2010-08-25 09:46:00 +02:00
Lasse Holmstedt
adab5f0e07
Debugger UI: create initial settings for mainwindow
2010-08-25 09:39:33 +02:00
Lasse Holmstedt
65e79d0d51
QML Observer & Inspector: Improved toolbars
...
Animation play/pause buttons are now merged on observer toolbar. Also, a
bugfix to inspector toolbar.
2010-08-25 09:39:33 +02:00
hjk
9e8f6cf860
debugger: don't test the gcc RVO bug too often
2010-08-25 07:45:01 +02:00
Alessandro Portale
0d7322c48c
Version and checksum checking of stub files. (Ui pending).
2010-08-24 21:24:22 +02:00
Robert Loehning
dccb56d214
ssh: Avoid warnings from MSVC
2010-08-24 20:53:15 +02:00
Tobias Hunger
ab4c16a517
Setup debug and release build configurations again
...
* Default to the type used to create the makefile when importing
* Default to the default type of the Qt version otherwise
2010-08-24 18:28:53 +02:00
Tobias Hunger
f3f6d642e5
Properly detect Qt versions of directories
...
* Detection of Qt versions from a makefile failed on windows
when calling qmake without the drive letter. Make this work.
2010-08-24 18:28:52 +02:00
Tobias Hunger
4fc6393ff2
Fix indention
2010-08-24 18:28:52 +02:00
Olivier Goffart
47db341b67
qmlobserver: Remove the changed() hack to get new object.
...
There is now a hook in QDeclarative itself for that.
Needs commit af2b28f9ca07057 of Qt
2010-08-24 18:16:23 +02:00
Olivier Goffart
ce134d37f7
QmlDebugger: use another way for detecting new objects
2010-08-24 18:16:23 +02:00