Erik Verbruggen
3d2f704817
Changed qmldump to also output the default property when there is one.
2010-04-06 09:38:40 +02:00
Friedemann Kleint
dc197e743c
Remove QFontEnginePlugin from LibraryWizard
...
As it has a special constructor and is rarely used.
Task-number: QTCREATORBUG-1025
2010-04-06 09:29:35 +02:00
kh1
819aac149d
Change tooltips as suggested by Leena.
...
Reviewed-by: Leena Miettinen
2010-04-06 09:15:12 +02:00
kh1
19b75e912a
Fix broken link for key implementation since last changes to the filter.
...
The links have been taken before from the model, now we need to get
them out of the help files, since the help eninge core does not provide
(yet) such functionality. Also return a sensible amount of hits for the
first character, limited for now to 300 for speed reasons.
Reviewed-by: ck
2010-04-06 09:15:11 +02:00
Kai Koehne
e072f1c71d
Fix compiler warnings (gcc)
2010-04-06 08:33:35 +02:00
Christiaan Janssen
1a9b2dadcf
QmlDesigner.ProjectExplorer: New icons for qml file types
2010-04-01 17:21:41 +02:00
Oswald Buddenhagen
79fd001aff
fix memleak, part 2
...
the previous fix did not consider that ProFiles are a further
specialization of ProBlocks.
Reviewed-by: dt
Task-number: QTCREATORBUG-1003
2010-04-01 16:29:38 +02:00
Tobias Hunger
879f71c2a3
Fix some false positives in the build issues
...
* "In blah method " messages are informative, not errors.
* Be more picky about file names: Stops errors from ranlib, rm,
etc. being reported as build issues.
2010-04-01 16:19:24 +02:00
Friedemann Kleint
9b98df57b0
Wizards: Fix duplicate list of VCS in last page.
...
Triggered by going back and forth.
Reviewed-by: dt
Task-number: QTCREATORBUG-1022
2010-04-01 16:12:28 +02:00
Thomas Hartmann
a33654108a
QmlDesigner.propertyEditor: extend generated qml
2010-04-01 15:55:24 +02:00
Thomas Hartmann
ad05cb296a
QmlDesigner.propertyEditor: eliding for labels
2010-04-01 15:55:23 +02:00
con
1d66348438
Agree on a default sis package name.
...
Instead of renaming it first. We agree on always deploying
target.sis (where target is the qmake TARGET).
For older Qt for Symbian versions we rename to match this.
2010-04-01 15:49:31 +02:00
Christian Kamm
5ae67214a1
QmlJSEditor: Don't trigger a reparse when dependencies change.
...
A semantic rehighlight suffices. This should avoid some parsing cycles
introduced earlier.
Reviewed-by: Roberto Raggi
2010-04-01 15:49:02 +02:00
ck
9cbafa9696
Maemo: Use first device configuration as default.
...
Reviewed-by: kh1
2010-04-01 15:46:36 +02:00
Tobias Hunger
eca4c5aef0
Fix deletion of buildconfigurations
...
Hitting the remove button to delete buildconfigurations
resulted in the wrong buildconfiguration getting removed.
Reviewed-by: dt
2010-04-01 15:29:03 +02:00
Tobias Hunger
5ba4773892
Fix parsing of CMake progress indicators
...
Reviewed-by: con
2010-04-01 15:29:03 +02:00
Christian Kamm
8d70ab27dc
QmlJS: Clean paths in the Snapshot.
...
To solve import resolution issues on windows.
Reviewed-by: Roberto Raggi
2010-04-01 15:21:30 +02:00
Christian Kamm
80fa321609
Clean the BaseTextDocument filename.
...
Previously, it could contain multiple directory separators, . or ..
This makes using the filename safe for hashes like the ones used in the
C++ and Qml code models.
Reviewed-by: Roberto Raggi
Reviewed-by: mae
2010-04-01 15:21:30 +02:00
kh1
f1e5851257
Fix newline.
2010-04-01 14:52:41 +02:00
kh1
0628ca1957
Make the content item the default one.
...
To make the addition of the qml docs more prominent, make the content
item the default one as it shows all available documentation sets.
Task-number: QTCREATORBUG-1024
Reviewed-by: kkoehne
2010-04-01 14:52:40 +02:00
kh1
1eafca2011
Do not use a stack allocated ne7ssh object.
...
Since the ne7ssh implementation starts the select thread directly inside
the constructor, we would have it polling after initializing the project
manager. Still we should apply the fix Thiago proposed for polling.
Reviewed-by: ck
2010-04-01 14:52:39 +02:00
Tobias Hunger
4ebf9cb20e
Fix possible crash on project import
...
Fix possible crash on import of projects into creator with
only one valid Qt version set up.
Reviewed-by: dt
Task-number: QTCREATORBUG-1017
2010-04-01 13:53:52 +02:00
Tobias Hunger
f9db69b8ec
Make sure we always check the only possible option
...
... in the TargetSetupPage.
Make sure that if there is only one thing we can check that it is checked.
Reviewed-by: dt
2010-04-01 13:53:20 +02:00
Christian Kamm
9531e75188
Revert "QmlJS: Use the canonical paths for the Documents."
...
Using canonical paths breaks with symlinked components. Also the editor
filename isn't canonical, so comparing them breaks.
This reverts commit efcdadd2bb .
2010-04-01 12:43:15 +02:00
Tobias Hunger
3c34649a31
Make sure to not add debug BCs twice
...
Reviewed-by: Roberto Raggi
2010-04-01 11:35:00 +02:00
Tobias Hunger
745dc1c8a0
Fix logic to handle symbian special case
...
Reviewed-by: Roberto Raggi
2010-04-01 11:34:44 +02:00
Christian Kamm
49416fe888
QmlJS: Add a path->document list hash to Snapshot.
...
Also change the filename->document map to a hash.
Reviewed-by: Roberto Raggi
2010-04-01 11:28:56 +02:00
ck
cadd9a6a40
Fix compilation with namespaced Qt.
2010-04-01 11:18:13 +02:00
Friedemann Kleint
e632c9fcb2
Debugger/MinGW: Set environment correctly.
...
Extend the environment instead of clobbering
it with the Python setup.
Reviewed-by: dt
2010-04-01 11:18:02 +02:00
Oswald Buddenhagen
d86f7dcd68
plug huge memory leak
...
in my quest to de-virtualize the ProItems i also devirtualized their
d'tors without providing a replacement. whoops.
Reviewed-by: dt
Task-number: QTCREATORBUG-1003
2010-04-01 11:09:21 +02:00
Christian Kamm
efcdadd2bb
QmlJS: Use the canonical paths for the Documents.
...
Otherwise the paths may end up with ../ or /./ in them and confuse the
Qml import resolving.
Reviewed-by: Thomas Hartmann
2010-04-01 10:59:20 +02:00
Jens Bache-Wiig
97901302b3
Fix resizing of actionbar
...
We no longer allow it to collapse below it's size hint.
I also reduced the bottom margin.
2010-03-31 18:52:11 +02:00
Thomas Hartmann
a0a7d5c99b
QmlDesigner: register Pen and ScaleGrid in fxplugin
...
qmlRegisterType<QDeclarativePen>("Qt",4,6,"Pen");
qmlRegisterType<QDeclarativeScaleGrid>("Qt",4,6,"ScaleGrid");
Rectangle and BorderImage work now
2010-03-31 18:49:11 +02:00
Thomas Hartmann
2001622cc4
QmlDesigner.propertyEditor: adapt to qml changes
...
QDeclarativePropertyMap changed
void valueChanged(const QString &key, const QVariant &value);
==>
void valueChanged(const QString &key);
2010-03-31 18:49:09 +02:00
Thomas Hartmann
205f1c762f
QmlDesigner. propertyEditor - fix qDebug()
2010-03-31 18:49:08 +02:00
Thomas Hartmann
94270c43b2
QmlDesigner: propertyEditor - component editing
2010-03-31 18:49:08 +02:00
Thomas Hartmann
e0c5362241
QmlDesigner.propertyEditor extending WidgetLoader
2010-03-31 18:49:07 +02:00
Thomas Hartmann
6d52e6bcff
QmlDesigner: fixes handling of dot properties
2010-03-31 18:49:06 +02:00
kh1
cef244bc3e
Implement setting the maemo gdb debugger location using the prefs.
2010-03-31 18:34:08 +02:00
con
ded5ed975a
Version bump
2010-03-31 18:06:02 +02:00
Christiaan Janssen
1a0dd028eb
QmlDesigner.ItemLibrary: new icons
2010-03-31 17:16:39 +02:00
Friedemann Kleint
04509bcf0d
Custom wizards: Lower case all tags, prepare translations.
...
Prepare translations of wizards shipped by Nokia to be searched
in Qt Creator's qm-files.
2010-03-31 16:31:26 +02:00
con
609163c13c
Make it possible to react on close button of info bar, and use it for
...
Qt Quick Designer.
2010-03-31 16:27:47 +02:00
Christian Kamm
811da6e31a
Remove debug output that slipped into 5ed718a002
2010-03-31 15:58:23 +02:00
Kai Koehne
5ed718a002
Fix imported qml component names under Windows
...
Reviewed-by: ckamm
2010-03-31 15:50:02 +02:00
Roberto Raggi
fe46a750ed
Updated the QML/JS front-end.
2010-03-31 15:40:28 +02:00
Jarek Kobus
20c0817a3f
Replace QWizard with Utils::Wizard
2010-03-31 15:22:14 +02:00
Christian Kamm
9408378a24
QmlJSEditor: Fix file/directory imports for qml files not in a project.
...
Reviewed-by: Roberto Raggi
2010-03-31 14:55:35 +02:00
Kai Koehne
107ad1cadf
QmlDesigner: Remove 'variant' as qml type
...
'variant' has been removed from the qml grammar: d1f019567, it's now 'var' only.
2010-03-31 14:41:23 +02:00
Marco Bubke
1b04e490d3
Fix that feedback pane is shown on drag and drop from the item libarary
...
Reviewed-by: Thomas Hartmann
Task-Number: BAUHAUS-536
2010-03-31 14:41:22 +02:00