Commit Graph

8800 Commits

Author SHA1 Message Date
hjk
c2b77a2274 debugger: fix evaluation of complex watchers 2010-03-16 18:45:34 +01:00
hjk
2e72118663 debugger: close disassembler buffers at the end of editing 2010-03-16 18:45:34 +01:00
hjk
9db033f672 debugger: make python dumper more robust when python modules are missing 2010-03-16 18:45:34 +01:00
hjk
59429c1005 debugger: remove inclusion of unneeded python module 2010-03-16 18:45:34 +01:00
Robert Loehning
a12acc6290 Opening large text files in binary editor to avoid crashes.
Reviewed-By: dt
Task-number: QTCREATORBUG-876
2010-03-16 18:43:11 +01:00
dt
f1a719d4e3 Remove outdated comment 2010-03-16 17:45:08 +01:00
dt
0d4fdd291a Use a type enum instead of duplicating functions between build and clean
That is e.g. buildSteps() and cleanSteps() --> steps(type)
2010-03-16 17:45:08 +01:00
kh1
10c3240e40 Add some tooltips explaining how to use filters, documentation page. 2010-03-16 17:34:53 +01:00
Friedemann Kleint
2bb046642e Design mode switch: Bring back mode changed slot.
to update Bauhaus correctly.
Reviewed-by: Lasse Holmstedt <lasse.holmstedt@nokia.com>
2010-03-16 17:17:09 +01:00
Friedemann Kleint
2edcc7ef33 Design mode: Give IEditor a 'preferred mode'.
... and switch to it in EditorManager::activateEditor.
There no longer is a need for special currentEditorChanged()
handling in the editor that use a special mode.

QmlDesigner receives an additional setting specifying the
desired edit mode. QmlJSEditor detects whether QmlDesigner
is present by checking the registered mimetypes of the
Design mode and retrieves the settings via keys.

Remove some obsolete code and clean up includes
on qmldesignerconstants.h

Reviewed-by: con
2010-03-16 16:51:45 +01:00
kh1
3357458101 Some more refactoring, reuse existing code.
Reuse the core help engine in the settings pages. Do not setup the gui
help engine at all since any getter will do so. Split update documentation
into smaller pieces for better performance.

Reviewed-by: ck
2010-03-16 15:54:41 +01:00
kh1
37871bc43c Lazy reset the unfiltered filter.
Reviewed-by: ck
2010-03-16 15:54:40 +01:00
kh1
c06323032a Lazy instantiate the right side pane and reuse core engine.
Reviewed-by: ck
2010-03-16 15:54:39 +01:00
kh1
3cd98b3387 Make use of the core engine in the general settings page.
Reviewed-by: ck
2010-03-16 15:54:38 +01:00
kh1
24c36c172e Add some statics to retrieve a core help engine and the collection path.
Reviewed-by: ck
2010-03-16 15:54:37 +01:00
Roberto Raggi
4f03a8be53 Don't skip closing braces and Qt function specifiers. 2010-03-16 15:18:59 +01:00
dt
f71f837a74 Replace FancyLineEdit::setHintText by QLineEdit::setPlaceHolder
Reviewed-By: con
2010-03-16 12:18:40 +01:00
dt
41e0e38ed6 Remove left over signal connection that is no longer needed. 2010-03-16 12:18:07 +01:00
hjk
43b4129d60 debugger: add a hint to manual test. 2010-03-16 12:08:54 +01:00
hjk
aedf91604a utils: compile fix with namespaces 2010-03-16 12:08:33 +01:00
hjk
ed35ec3d5a debugger: use pseudo-enums instead of magical constants in python dumpers 2010-03-16 12:08:33 +01:00
hjk
e8936ad9d2 debugger: code cosmetics for custom displays 2010-03-16 12:08:33 +01:00
hjk
0cd06f55bc debugger: don't hard code typeformats except for ints and strings 2010-03-16 12:08:33 +01:00
Tobias Hunger
8ebe4e90cd Fix override color beeing saved
Reviewed-by: jbache
2010-03-16 10:29:16 +01:00
Tobias Hunger
9a51a37170 Make sure locale C gets marked as active in generalsettings
Reviewed-by: Daniel Molkentin
2010-03-16 09:54:55 +01:00
Robert Loehning
20ee66f86a Fixed parsing of git status so that one can check out a branch when not on a branch before. 2010-03-15 20:51:42 +01:00
Roberto Raggi
c9e50605dd Get rid of extra (non Creator-friendly) include paths. 2010-03-15 18:12:44 +01:00
Roberto Raggi
d1cb9feda7 Generate tags for the builtin QML extensions. 2010-03-15 18:10:25 +01:00
Tobias Hunger
204bf0bd91 Do not warn on make complaining about "Nothing to be done" 2010-03-15 18:04:57 +01:00
Thomas Hartmann
6d6904c4eb QmlDesigner: extend the area where an item can be droped 2010-03-15 17:40:01 +01:00
Thomas Hartmann
b50284477a QmlDesigner.propertyEditor: show widget once at startup 2010-03-15 17:40:01 +01:00
Thomas Hartmann
af90e21a38 QmlDesigner.propertyEditor: remove checks for undefined 2010-03-15 17:40:00 +01:00
Thomas Hartmann
5e10e69366 QmlDesigner.propertyEditor: avoid warnings about variant not beeing a QColor 2010-03-15 17:39:59 +01:00
Robert Loehning
8e21546009 Fixed parsing of Git branches when current checkout is not on a branch. 2010-03-15 17:14:24 +01:00
Jens Bache-Wiig
40aa17a2e2 Replace reflection by generated drop shadows in sidebar
The sidebar is a diffuse surface. Hence the reflection
does not really make sense there. Additionally, this
allows us to get more unified spacing and we can apply
the same shadow to system icons.
2010-03-15 17:11:12 +01:00
Robert Loehning
1ded9ce798 Compile fix. 2010-03-15 17:03:11 +01:00
Thorbjørn Lindeijer
c0b42868b0 Preserve the user-set build directory for Generic Projects
Previously it would be converted to an absolute path. Preserving the
original path allows it to be set as relative to the project.

Reviewed-by: dt
2010-03-15 16:27:39 +01:00
dt
7215c03369 Check for existince of the QMAKESPEC_ORIGINAL directory
Some mkspecs do have a QMAKESPEC_ORIGINAL and yet that directory doesn't
exist. In that case ignore it.

Task-Nr: QTCREATORBUG-586
2010-03-15 16:23:50 +01:00
dt
7f3f30c024 Remove Qt Creator 1.0 compability code
It's only the recent projects lists anyway.
2010-03-15 16:23:50 +01:00
ck
11152652a3 Maemo: Remove unneeded class member.
Reviewed-by: kh1
2010-03-15 16:17:52 +01:00
Lasse Holmstedt
1ce34736f7 Fixed toolbar for splitted editors 2010-03-15 16:03:00 +01:00
Friedemann Kleint
43f9c27b31 ProjectFileWizard/Add new: Handle profiles with identical basenames
correctly (disambiguate, add a tooltip indicating the path).
Task-number: QTCREATORBUG-819
2010-03-15 15:37:08 +01:00
Roberto Raggi
5b9d6614f2 Updated the QML/JS parser. 2010-03-15 15:29:37 +01:00
hjk
a47fa969cd debugger: speed up QImage dumper 2010-03-15 14:56:55 +01:00
Tobias Hunger
8894c040b1 Manage target add/remove buttons when new Qt versions change
Reviewed-by: con
2010-03-15 13:55:12 +01:00
Tobias Hunger
dceda9db70 Refresh ProjectMode when supported targets change
Reviewed-by: con
2010-03-15 13:55:11 +01:00
dt
6ecd9cc537 Add new on virtual folders adds to the wrong path.
The solution ain't great. Essentially we need to fix that path() needs
to be unique and a 1:1 mapping to the file system by introducing a
separate method for the first usage.

Task-Nr: QTCREATORBUG-828
Reviewed-By: con
2010-03-15 13:37:13 +01:00
dt
07372a0d22 Fix wrong en/disabling of actions
Reviewed-By: con
2010-03-15 13:37:13 +01:00
mae
f30627b48e Make persistent code folding and auto-collapse of the license header work together 2010-03-15 13:17:20 +01:00
Tobias Hunger
9ccd2f15e0 Report errors in Makefiles in gnumakeparser
* Report errors in Makefiles
 * Skip all but the first fatal error
2010-03-15 12:28:06 +01:00