Commit Graph

21107 Commits

Author SHA1 Message Date
Thomas Hartmann
8e26fd31eb QmlDesigner.propertyEditor: fixes for Flickable 2011-05-06 18:10:51 +02:00
Thomas Hartmann
54dec95737 QmlDesigner.propertyEditor: remove title property for WebView
Task-Nr: QTCREATORBUG-4676
2011-05-06 18:10:50 +02:00
Thomas Hartmann
c60cfce88c QmlDesigner.propertyEditor: enlarge labels 2011-05-06 18:10:50 +02:00
Thomas Hartmann
41d2e661b1 QmlDesigner.propertyEditor: fix eliding in property editor 2011-05-06 18:10:49 +02:00
Tobias Hunger
f90a4d2ee1 Fix ABI detection of static mingw libraries on windows
Task-number: QTCREATORBUG-4771
(cherry picked from commit fcf82b74b6)
2011-05-06 18:10:09 +02:00
Tobias Hunger
fcf82b74b6 Fix ABI detection of static mingw libraries on windows
Task-number: QTCREATORBUG-4771
2011-05-06 17:57:22 +02:00
Friedemann Kleint
4d113c9b4b Analyzer: Introduce delayed initialization of docks.
Introduce AnalzyerTool::initializeDockWidgets to do that.
Work around exit crash in callgrind.
2011-05-06 17:26:01 +02:00
Leena Miettinen
1cedb84bc2 Doc: initial draft of UI text guidelines 2011-05-06 17:07:00 +02:00
Leena Miettinen
583c848adc Doc: edit for style and consistency. 2011-05-06 17:06:59 +02:00
Leena Miettinen
a9e085d6b8 Doc: remove redundant paragraph 2011-05-06 17:06:58 +02:00
Leena Miettinen
7604cd755a Doc: change link target from Gitorious to Qt developer wiki 2011-05-06 17:06:55 +02:00
Leena Miettinen
3515a91844 Doc: edit grammar and style 2011-05-06 17:06:54 +02:00
Leena Miettinen
cea0678bce Doc: edit grammar and style 2011-05-06 17:06:53 +02:00
dt_
4a54ac4570 Correctly restore disabled shadow building setting
Task-Nr: QTCREATORBUG-4781
2011-05-06 15:49:28 +02:00
Tobias Hunger
aa2acec14c Fix/add copyright headers
Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
2011-05-06 15:17:05 +02:00
Tobias Hunger
f8ef0fac13 Fix hasCopyright.sh script to work with latest copyright statement
Change-Id: I71b41d7837a0901c5d1ab718dc8f93e4122231fa
2011-05-06 15:16:59 +02:00
Tobias Hunger
73864ebefc Add missing headers to the project
Change-Id: I2909a4610afa074e7ace56406b176336b43f7b3f
2011-05-06 15:16:57 +02:00
Tobias Hunger
4f146f6587 Use Core::FileChangeBlocker
Remove class that does something similar.

Reviewed-by: Christian Kandeler
Change-Id: I7acfa119cf18d96c22d1873a464b1c004c78e132
2011-05-06 15:16:43 +02:00
Tobias Hunger
72e01313b6 Qt: Add invalidReason 2011-05-06 15:14:51 +02:00
Thomas Hartmann
ed1fbc940e QmlDesigner.textToModelMerger: fix for link
Fixes: d05992d0fa

Reviewed-by: Christian Kamm
2011-05-06 15:04:19 +02:00
Friedemann Kleint
74d65c7e18 Analyzer: Do not make each tool current on startup.
Avoid adding all dock widgets of all tools to the mainwindow
to save the default settings during initialization.
2011-05-06 14:37:26 +02:00
Daniel Molkentin
0c27e12824 Fix compilation 2011-05-06 14:25:34 +02:00
dt_
9a924aed44 Export Qt4BuildConfiguration(Factory), Qt4BaseTarget and Qt4Project
Those classes are needed to implement a custom Qt4BaseTarget derived
class.
2011-05-06 13:56:15 +02:00
dt_
ee5b2a7dd0 Fix adding buildconfigurations for symbian emualator
Really fixes
Task-Nr: QTCREATORBUG-4649
2011-05-06 13:56:15 +02:00
Christian Kamm
d05992d0fa QmlJS: Stop doing significant work in constructors.
To avoid order-of-initialization problems.

Reviewed-by: Thomas Hartmann
2011-05-06 13:48:55 +02:00
Thomas Hartmann
6ea355add1 QmlDesigner.instanceView: do not skip Models anymore
We only skip Model if they are the root node.
I kept the isSkippedNode since it might become useful again.
2011-05-06 13:28:21 +02:00
Thomas Hartmann
6c8a16128e QmlDesigner.instances: support QVariant properties as parent property
QVariants can store QObjects. The model property of ListView is
a QVariant for example.
2011-05-06 13:28:20 +02:00
Thomas Hartmann
c53f8a8611 QmlDesigner.instances: use QtQuick 1.0 instead of Qt 4.7 2011-05-06 13:28:19 +02:00
Thomas Hartmann
faa59b754f QmlDesigner.Model: add support for custom parser types
This patch enables us to create objects with custom parsers
like ListModel and XmlListModel.
2011-05-06 13:28:19 +02:00
Thomas Hartmann
749d559ac2 QmlDesigner.navigatorWidget: changing focus policy
Focus is needed to allow keyboard shortcuts and cursor navigation.
2011-05-06 13:28:18 +02:00
Thomas Hartmann
363883b555 QmlDesigner.rewriter: __model_data becomes an auxiliaryData
I also added __model_data and fixed some bugs.
Implicit components with Component {} e.g. delegate are now explicit
components in the model to avoid confusion.
2011-05-06 13:28:17 +02:00
Thomas Hartmann
77d6b5445f QmlDesigner.model: changing signature of setAuxiliaryData()
This should be const to be consistent with the rest.
2011-05-06 13:28:16 +02:00
Thomas Hartmann
4e0eddffe2 QmlDesigner.propertyEditor: Reset property editor when changing mode
When entering the design mode the property editor is reset.
This reduces complexity since the property editor is reset instead of
having to react to all the possible changes from text.

The same is done for the NodeInstanceView
2011-05-06 13:28:16 +02:00
Thomas Hartmann
134e41ee54 QmlDesigner.nodeInstances: crash fix
In some cases object() != m_nodeInstance->object().
Reading on the worng type of QObject can lead to very interesting
effects.  (e. g. decrementing the pointer to the vtable)

Task-Nr: QTCREATORBUG-4675
Reviewed-by: Marco Bubke
2011-05-06 13:28:09 +02:00
Thomas Hartmann
0515e73e31 QmlEditor.outline: adding icons for Extra Components 2011-05-06 13:14:44 +02:00
Thomas Hartmann
662d362e55 QmlDesigner.designModeWidget: adding a context for the navigator
Adding a context for the navigator + some cleanup
2011-05-06 13:14:43 +02:00
Thomas Hartmann
3cc491f45a QmlDesigner.navigator: add tool buttons for sliding/reparenting
This patch adds for tool buttons that allow
sliding and reparenting in the navigator.
2011-05-06 13:14:42 +02:00
Christian Kamm
10708af70f QmlJS: Quick fix for crash in designer.
Reviewed-by: Thomas Hartmann
2011-05-06 12:48:25 +02:00
Thorbjørn Lindeijer
b3e47623c6 Merged "Methods" and QML "Functions" locator filters
They're still separate filters, but by default they share the same
prefix, which will now make sure that only one entry shows up in the
list of filters.

Done-with: Christian Kamm
Task-number: QTCREATORBUG-4796
2011-05-06 12:41:15 +02:00
Christian Kandeler
6b5ce26bf6 Maemo: Adapt list of deployables for "aux" project. 2011-05-05 17:44:27 +02:00
Christian Kandeler
e751a135db Project File Parsing: Add support for new "aux" template.
Reviewed-by: dt
2011-05-05 17:44:27 +02:00
Christiaan Janssen
5e164ce1bf QmlDebugger: adding new PropertyChanges on Live Preview
Task-number: QTCREATORBUG-3391

Reviewed-by: Kai Koehne
2011-05-05 17:03:38 +02:00
Christiaan Janssen
89d9b83aa2 QmlDebugger: adding slots to items in Live Preview
Reviewed-by: Kai Koehne
2011-05-05 17:03:37 +02:00
Friedemann Kleint
5e543b2856 Compile Windows. 2011-05-05 09:14:41 +02:00
Kai Koehne
6d174080e9 QmlProfiler: Factor out logic to run apps from the engine into a separate runner
Reviewed-by: Christiaan Janssen
2011-05-04 17:17:32 +02:00
Kai Koehne
7b41c76d92 QmlProfiler: Fix crash in qWarning 2011-05-04 17:17:18 +02:00
Kai Koehne
b7f30ed9f3 QmlProfiler: Don't warn about using QmlProfiler in either Release or Debug mode 2011-05-04 17:17:13 +02:00
Friedemann Kleint
e7cb7471c0 Debugger: Fix Action enabling, implement breakOnMain for CDB. 2011-05-04 15:40:15 +02:00
Friedemann Kleint
2e1954ae47 Debugger: Pre-set memory address dialog in locals view. 2011-05-04 15:08:43 +02:00
Friedemann Kleint
ac18e2016c L10n: Fix German translation of the 'Add Library Wizard'. 2011-05-04 14:41:41 +02:00