OSDN Git Service

qt-creator-jp/qt-creator-jp.git
13 years agodebugger: add forgotten ignoreCount accessor implementation
hjk [Mon, 15 Nov 2010 11:32:51 +0000 (12:32 +0100)]
debugger: add forgotten ignoreCount accessor implementation

13 years agodebugger: tighten write accesss to BreakpointData
hjk [Mon, 15 Nov 2010 11:21:43 +0000 (12:21 +0100)]
debugger: tighten write accesss to BreakpointData

13 years agodebugger: fix display of shadowed variables again
hjk [Mon, 15 Nov 2010 10:37:15 +0000 (11:37 +0100)]
debugger: fix display of shadowed variables again

13 years agodebugger: Refactor breakpoint handling.
hjk [Wed, 10 Nov 2010 15:33:11 +0000 (16:33 +0100)]
debugger: Refactor breakpoint handling.

The breakpoints are now (fairly) tightly guarded by the BreakpointHandler.
Engines and Views are only supposed to refer to them by id. They also have
individual states now. The breakpoint data is split into a "user requested"
"fixed" part in BreakpointData and the engines' acknowledged data in a new
struct BreakpointResponse.

TODO: Move m_state and m_engine members to BreakpointResponse. Fix regressions
in the marker handling.

13 years agoDebugger: Suppress fetching of modules/registers in invalid states.
Friedemann Kleint [Mon, 15 Nov 2010 11:06:38 +0000 (12:06 +0100)]
Debugger: Suppress fetching of modules/registers in invalid states.

Reviewed-by: hjk
13 years agoVCS[git]: Fix change dialog.
Friedemann Kleint [Mon, 15 Nov 2010 11:06:09 +0000 (12:06 +0100)]
VCS[git]: Fix change dialog.

13 years agoSome menus where missing a setEmptyAction(EA_None) call.
con [Mon, 15 Nov 2010 11:01:50 +0000 (12:01 +0100)]
Some menus where missing a setEmptyAction(EA_None) call.

Was exposed by fixing the empty action mechanism in
d7e7c3427d878cadbdce26f12ef39aceafbff966.

13 years agoDebugger: Fix stack context menu.
Friedemann Kleint [Mon, 15 Nov 2010 10:20:39 +0000 (11:20 +0100)]
Debugger: Fix stack context menu.

Initial-patch-by: hjk
13 years agoQmlJS: Avoid infinite loop with recursive prototypes.
Christian Kamm [Fri, 12 Nov 2010 13:53:00 +0000 (14:53 +0100)]
QmlJS: Avoid infinite loop with recursive prototypes.

13 years agoCreate AST nodes for qualified GLSL types
Rhys Weatherley [Mon, 15 Nov 2010 05:02:21 +0000 (15:02 +1000)]
Create AST nodes for qualified GLSL types

13 years agoModeManager: Fix ordering of actions in modebar
dt [Fri, 12 Nov 2010 19:42:40 +0000 (20:42 +0100)]
ModeManager: Fix ordering of actions in modebar

The Target Selector wasn't accounted for.

13 years agoProjectExplorer + Debugger: Move Debug Action to the Debugger plugin
dt [Fri, 12 Nov 2010 19:18:29 +0000 (20:18 +0100)]
ProjectExplorer + Debugger: Move Debug Action to the Debugger plugin

Since all the debuggers are implemented in the debuggerplugin, that's a
natural place to put the action.

13 years agoProjectExplorer: runProjectImpl -> runProject and make it public
dt [Fri, 12 Nov 2010 17:31:07 +0000 (18:31 +0100)]
ProjectExplorer: runProjectImpl -> runProject and make it public

13 years agoProjectExplorer: Fix context menu actions
dt [Fri, 12 Nov 2010 16:25:39 +0000 (17:25 +0100)]
ProjectExplorer: Fix context menu actions

Disable/Enable them correctly and give them the correct context.

Task-Nr: QTCREATORBUG-3078

13 years agoInitial work on the code completion for GLSL files.
Roberto Raggi [Fri, 12 Nov 2010 16:11:20 +0000 (17:11 +0100)]
Initial work on the code completion for GLSL files.

13 years agodon't maintain (and save) m_userSetWorkingDirectory
Oswald Buddenhagen [Fri, 12 Nov 2010 13:36:54 +0000 (14:36 +0100)]
don't maintain (and save) m_userSetWorkingDirectory

there is no point in doing it, as it is equivalent with
m_userWorkingDirectory being non-empty.
this code is consistent with CMakeRunConfiguration.

13 years agoTweaks to the Inkpot style
Thorbjørn Lindeijer [Fri, 12 Nov 2010 14:32:51 +0000 (15:32 +0100)]
Tweaks to the Inkpot style

Added missing categories with customized colors for Field, Occurences,
Static and VisualWhitespace.

Removed highlighting for the 'Local' category, since at least I consider
the white names a little messy. In general we've considered the
highlighting of locals less useful than highlighting the members.

Task-number: QTCREATORBUG-2490

13 years agoObserver mode: Fix automatic selection of all instances
Kai Koehne [Mon, 25 Oct 2010 12:27:39 +0000 (14:27 +0200)]
Observer mode: Fix automatic selection of all instances

If the user clicks on an instance of an element in the running app
while in server mode, the cursor selection is automatically updated.
However, the change of the cursor then leads to all the other
instances of the element at the cursor position being selected too.

Prevent this 'call back' in the QmlInspector by checking whether one
of the newly selected items is the one just selected.

Simpler mechanisms (like a sequential blocking of updates) don't
work because the call back happens through a QTimer.

Task-number: QTCREATORBUG-2366

13 years agoQmlJSInspector: API cleanup
Kai Koehne [Mon, 25 Oct 2010 07:52:11 +0000 (09:52 +0200)]
QmlJSInspector: API cleanup

Rename setSelectedItemsByObjectReference slot to gotoObjectDefinition

13 years agoQmlJSInspector: Don't send update if selection hasn't changed
Kai Koehne [Mon, 25 Oct 2010 07:38:54 +0000 (09:38 +0200)]
QmlJSInspector: Don't send update if selection hasn't changed

13 years agoQmlJSInspector: API cleanup
Kai Koehne [Mon, 25 Oct 2010 07:37:15 +0000 (09:37 +0200)]
QmlJSInspector: API cleanup

Give m_client, m_designClient member variables more descriptive names.

13 years agoQmlJSInspector: API cleanup
Kai Koehne [Mon, 25 Oct 2010 06:56:25 +0000 (08:56 +0200)]
QmlJSInspector: API cleanup

Simplify method names.

13 years agoQmlJSObserver: API cleanup
Kai Koehne [Mon, 25 Oct 2010 06:05:13 +0000 (08:05 +0200)]
QmlJSObserver: API cleanup

Change signature of setSelectedItemsByObjectId to match the one from
signal currentObjectsChanged.

13 years agoQmlJSDebugger: Simplify selection handling code
Kai Koehne [Fri, 22 Oct 2010 14:12:59 +0000 (16:12 +0200)]
QmlJSDebugger: Simplify selection handling code

Avoids multiple calls singleSelectionManipulator.select().

13 years agoQmlJsDebugger: Avoid CURRENT_OBJECTS_CHANGED message flooding
Kai Koehne [Fri, 22 Oct 2010 10:41:39 +0000 (12:41 +0200)]
QmlJsDebugger: Avoid CURRENT_OBJECTS_CHANGED message flooding

13 years agoStarted the changes file for 2.2.0
Thorbjørn Lindeijer [Fri, 12 Nov 2010 13:19:08 +0000 (14:19 +0100)]
Started the changes file for 2.2.0

13 years agoAdded the Inkpot color scheme
Thorbjørn Lindeijer [Fri, 12 Nov 2010 13:18:37 +0000 (14:18 +0100)]
Added the Inkpot color scheme

This color scheme is based on the vim Inkpot color scheme, originally
created by Ciaran McCreesh:

 http://www.vim.org/scripts/script.php?script_id=1143

It was adapted for use by Qt Creator by Jan Kundrát and subsequently
updated by Campbell Barton.

Task-number: QTCREATORBUG-2490

13 years agoQmlJS: Remove ComponentVersion::major/minor.
Christian Kamm [Fri, 12 Nov 2010 13:15:21 +0000 (14:15 +0100)]
QmlJS: Remove ComponentVersion::major/minor.

They are unusable on linux as there are commonly-included macros
of the same name.

13 years agoEditors: Make block highlights go beyond the margin
Leandro Melo [Fri, 12 Nov 2010 10:31:12 +0000 (11:31 +0100)]
Editors: Make block highlights go beyond the margin

Block highlights should still be visible even outside the margin (when
margins are displayed naturally), since it acts only as indicator of
the character limit.

Apparently this had already been noticed before and recently there was
a merge request (no. 204) with an attempt to fix it. However, the
implementation was not handling it in a nice form. This is a small
patch that solves the issue and keeps the editor beautiful. (Check
the merge request for more details.)

Reviewed-by: Thorbjorn Lindeijer
13 years agoQmlJS: Enable file name completion in imports.
Christian Kamm [Fri, 12 Nov 2010 11:48:22 +0000 (12:48 +0100)]
QmlJS: Enable file name completion in imports.

Task-number: QTCREATORBUG-3067
Reviewed-by: Roberto Raggi
13 years agoQmlJS: Detect whether cursor is in an import.
Christian Kamm [Fri, 12 Nov 2010 10:57:44 +0000 (11:57 +0100)]
QmlJS: Detect whether cursor is in an import.

Reviewed-by: Roberto Raggi
13 years agoDon't show GLSL or QML tools menus while they don't offer anything
con [Fri, 12 Nov 2010 12:45:54 +0000 (13:45 +0100)]
Don't show GLSL or QML tools menus while they don't offer anything

13 years agoFix updating of menus with EA_Hide.
con [Fri, 12 Nov 2010 12:45:13 +0000 (13:45 +0100)]
Fix updating of menus with EA_Hide.

13 years agoParse GLSL code.
Roberto Raggi [Fri, 12 Nov 2010 11:44:55 +0000 (12:44 +0100)]
Parse GLSL code.

13 years agoFix generation of Info.plist on Mac.
con [Fri, 12 Nov 2010 11:28:50 +0000 (12:28 +0100)]
Fix generation of Info.plist on Mac.

Since the move to Info.plist.in, Mac builds were missing their
Info.plist, because the combination of QMAKE_INFO_PLIST and
QMAKE_SUBSTITUTES doesn't play well.
Moving to use QMAKE_SUBSTITUTES exclusively.

13 years agoAdd "New Subproject..." context menu action in project explorer
Jarek Kobus [Fri, 12 Nov 2010 11:07:52 +0000 (12:07 +0100)]
Add "New Subproject..." context menu action in project explorer

Reviewed-by: dt <qtc-committer@nokia.com>
13 years agoQmlJS: Add missing null check for completion in string literals.
Christian Kamm [Fri, 12 Nov 2010 10:12:34 +0000 (11:12 +0100)]
QmlJS: Add missing null check for completion in string literals.

13 years agoQmlJS: Don't autoinsert ' in string literals.
Christian Kamm [Fri, 12 Nov 2010 10:05:10 +0000 (11:05 +0100)]
QmlJS: Don't autoinsert ' in string literals.

Task-number: QTCREATORBUG-2155
Reviewed-by: Roberto Raggi
13 years agoQmlJS: Complete '{' instad of ':' at the end of 'A on b' bindings.
Christian Kamm [Fri, 12 Nov 2010 09:09:43 +0000 (10:09 +0100)]
QmlJS: Complete '{' instad of ':' at the end of 'A on b' bindings.

Task-number: QTCREATORBUG-2642
Reviewed-by: Erik Verbruggen
13 years agoQmlJS: Local-file completion for url properties.
Christian Kamm [Thu, 11 Nov 2010 15:08:32 +0000 (16:08 +0100)]
QmlJS: Local-file completion for url properties.

Task-number: QTCREATORBUG-2619
Reviewed-by: Erik Verbruggen
13 years agoQmlJS: Add a UrlValue.
Christian Kamm [Thu, 11 Nov 2010 15:04:55 +0000 (16:04 +0100)]
QmlJS: Add a UrlValue.

This will allow distinguishing mere strings from urls and allow
different completion.

Reviewed-by: Erik Verbruggen
13 years agoQmlJS: Determine whether cursor is inside a string literal.
Christian Kamm [Thu, 11 Nov 2010 13:22:30 +0000 (14:22 +0100)]
QmlJS: Determine whether cursor is inside a string literal.

Reviewed-by: Erik Verbruggen
13 years agoBuild AST nodes from within the parser.
Rhys Weatherley [Fri, 12 Nov 2010 00:23:46 +0000 (10:23 +1000)]
Build AST nodes from within the parser.

13 years agoMaking GLSL AST nodes while preserving lineno info
Rhys Weatherley [Thu, 11 Nov 2010 23:53:08 +0000 (09:53 +1000)]
Making GLSL AST nodes while preserving lineno info

Eventually we will need some way to locate an identifier's
definition, so add "lineno" to each AST node.  May want to
change this to "position" later.  The makeAstNode<T>() function
takes care of automatically decorating nodes with line numbers.

13 years agoConvert GLSL AST nodes into managed types
Rhys Weatherley [Thu, 11 Nov 2010 23:05:48 +0000 (09:05 +1000)]
Convert GLSL AST nodes into managed types

13 years agodon't save target path and working directory
Oswald Buddenhagen [Thu, 11 Nov 2010 19:30:52 +0000 (20:30 +0100)]
don't save target path and working directory

they are initialized from the build configuration upon construction

13 years agoless code duplicattion
Oswald Buddenhagen [Tue, 9 Nov 2010 10:55:04 +0000 (11:55 +0100)]
less code duplicattion

13 years agoAdded more build products to ignore.
Erik Verbruggen [Thu, 11 Nov 2010 15:25:52 +0000 (16:25 +0100)]
Added more build products to ignore.

13 years agoHandle parenthesized expressions.
Roberto Raggi [Thu, 11 Nov 2010 14:43:16 +0000 (15:43 +0100)]
Handle parenthesized expressions.

13 years agoAdded missing files
Roberto Raggi [Thu, 11 Nov 2010 14:26:08 +0000 (15:26 +0100)]
Added missing files

13 years agoCreate AST nodes for multiplicative expressions.
Roberto Raggi [Thu, 11 Nov 2010 14:25:19 +0000 (15:25 +0100)]
Create AST nodes for multiplicative expressions.

13 years agoThere's nothing to do for the chain rules.
Roberto Raggi [Thu, 11 Nov 2010 14:21:27 +0000 (15:21 +0100)]
There's nothing to do for the chain rules.

13 years agoCount the number of toplevel declarations.
Roberto Raggi [Thu, 11 Nov 2010 14:11:24 +0000 (15:11 +0100)]
Count the number of toplevel declarations.

13 years agoIntroduced a simple memory pool.
Roberto Raggi [Thu, 11 Nov 2010 14:05:42 +0000 (15:05 +0100)]
Introduced a simple memory pool.

13 years agoUse only interned (unique) strings.
Roberto Raggi [Thu, 11 Nov 2010 13:28:05 +0000 (14:28 +0100)]
Use only interned (unique) strings.

13 years agoFix compile on windows.
Christian Kamm [Thu, 11 Nov 2010 13:21:04 +0000 (14:21 +0100)]
Fix compile on windows.

13 years agoFix ui language for custom wizards.
con [Thu, 11 Nov 2010 11:53:02 +0000 (12:53 +0100)]
Fix ui language for custom wizards.

Introduces a ICore::userInterfaceLanguage method, which centralizes the
previous qApp property hack for help and designer integration.

Reviewed-by: Friedemann Kleint
13 years agoHelpPlugin: Compile fix for msvc2010
Kai Koehne [Thu, 11 Nov 2010 12:07:57 +0000 (13:07 +0100)]
HelpPlugin: Compile fix for msvc2010

Make sure that help/helpmanager.h is before coreplugin/helpmanager.h
in the INCLUDEPATH.

13 years agoDebugging/RemoteGdbAdapter: Add code to facilitate re-running.
Christian Kandeler [Thu, 11 Nov 2010 11:31:32 +0000 (12:31 +0100)]
Debugging/RemoteGdbAdapter: Add code to facilitate re-running.

13 years agoQt4Project: Notify the QmlJS code model even without QML files.
Christian Kamm [Wed, 10 Nov 2010 14:11:17 +0000 (15:11 +0100)]
Qt4Project: Notify the QmlJS code model even without QML files.

Reviewed-by: Erik Verbruggen
13 years agoQmlJS: Move plugin dumping code and redump on file change.
Christian Kamm [Wed, 10 Nov 2010 14:07:53 +0000 (15:07 +0100)]
QmlJS: Move plugin dumping code and redump on file change.

Task-number: QTCREATORBUG-3047
Reviewed-by: Erik Verbruggen
13 years agoGet rid of glsl.g.in and start working on the semantic actions.
Roberto Raggi [Thu, 11 Nov 2010 11:01:37 +0000 (12:01 +0100)]
Get rid of glsl.g.in and start working on the semantic actions.

13 years agoRetain id when creating a component from an object.
Erik Verbruggen [Thu, 11 Nov 2010 11:09:15 +0000 (12:09 +0100)]
Retain id when creating a component from an object.

Task-number: QTCREATORBUG-2666
Reviewed-by: Christian Kamm
13 years agoMaemo: Don't hold a reference to a run config in a run control.
Christian Kandeler [Thu, 11 Nov 2010 11:08:13 +0000 (12:08 +0100)]
Maemo: Don't hold a reference to a run config in a run control.

Save all relevant information at run control creation time, so we can
re-run even without a project.

Task-number: https://projects.maemo.org/bugzilla/show_bug.cgi?id=203698

13 years agoTest: Extend QmlJS code model test.
Thomas Hartmann [Thu, 11 Nov 2010 10:27:56 +0000 (11:27 +0100)]
Test: Extend QmlJS code model test.

13 years agoQmlObjectValue: bugifx for QmlObjectValue::propertyType()
Thomas Hartmann [Wed, 10 Nov 2010 15:38:41 +0000 (16:38 +0100)]
QmlObjectValue: bugifx for QmlObjectValue::propertyType()

We have to follow the prototype chain

Reviewed-by: Christian Kamm
13 years agoQmlJS: Resolve property types within package.
Thomas Hartmann [Thu, 11 Nov 2010 10:11:48 +0000 (11:11 +0100)]
QmlJS: Resolve property types within package.

Reviewed-by: Christian Kamm
13 years agoQmlObjectValue: Add convenience functionality.
Christian Kamm [Thu, 11 Nov 2010 09:46:19 +0000 (10:46 +0100)]
QmlObjectValue: Add convenience functionality.

Added
hasLocalProperty()
hasProperty()
keysForEnum()

Reviewed-by: Christian Kamm
13 years agoQmlJS: Adding IntValue and RealValue
Thomas Hartmann [Wed, 10 Nov 2010 15:31:20 +0000 (16:31 +0100)]
QmlJS: Adding IntValue and RealValue

This allows to distinguish between int an real numbers

Reviewed-by: Christian Kamm
13 years agoGetting the QmlJsModelManager working stand alone
Thomas Hartmann [Wed, 10 Nov 2010 15:21:05 +0000 (16:21 +0100)]
Getting the QmlJsModelManager working stand alone

Getting the QmlJsModelManager working stand alone
for auto testing

Reviewed-by: Christian Kamm
13 years agoQmlJSEditor: update of qml-builtin-types.xml
Thomas Hartmann [Wed, 10 Nov 2010 15:10:18 +0000 (16:10 +0100)]
QmlJSEditor: update of qml-builtin-types.xml

13 years agoQmlJS: Dump isWritable and isPointer for types.
Thomas Hartmann [Thu, 11 Nov 2010 09:29:32 +0000 (10:29 +0100)]
QmlJS: Dump isWritable and isPointer for types.

Reviewed-by: Christian Kamm
13 years agoQmlJS: Fixing type hierarchy for holes (non exported types)
Thomas Hartmann [Tue, 19 Oct 2010 14:15:32 +0000 (16:15 +0200)]
QmlJS: Fixing type hierarchy for holes (non exported types)

Done-with: Christian Kamm

13 years agoAdd simple stub non-functional autotest.
Christian Kamm [Thu, 14 Oct 2010 12:27:00 +0000 (14:27 +0200)]
Add simple stub non-functional autotest.

Done-with: Thomas Hartmann

13 years agoMove shared code to a new QmlJSTools plugin.
Christian Kamm [Thu, 11 Nov 2010 09:05:05 +0000 (10:05 +0100)]
Move shared code to a new QmlJSTools plugin.

Reviewed-by: Thomas Hartmann
13 years agoChanged license template reading to use the global default encoding.
Erik Verbruggen [Thu, 11 Nov 2010 10:00:40 +0000 (11:00 +0100)]
Changed license template reading to use the global default encoding.

Task-number: QTCREATORBUG-3039

Reviewed-by: con
13 years agoRemoved left-over from merge request: duplicate file encoding combo.
Erik Verbruggen [Thu, 11 Nov 2010 09:46:08 +0000 (10:46 +0100)]
Removed left-over from merge request: duplicate file encoding combo.

13 years agoMake git ignore the new generated build files
con [Wed, 10 Nov 2010 16:54:43 +0000 (17:54 +0100)]
Make git ignore the new generated build files

13 years agoAST nodes for GLSL parser
Rhys Weatherley [Thu, 11 Nov 2010 01:29:29 +0000 (11:29 +1000)]
AST nodes for GLSL parser

13 years agoMerge remote branch 'origin/2.1'
dt [Wed, 10 Nov 2010 16:00:07 +0000 (17:00 +0100)]
Merge remote branch 'origin/2.1'

Conflicts:
share/qtcreator/static.pro
src/plugins/cppeditor/cppeditor.cpp
src/plugins/qmljseditor/qmljseditor.cpp
src/plugins/qt4projectmanager/qt-maemo/maemodeployablelistmodel.cpp
src/plugins/qt4projectmanager/qt-maemo/maemodeploystepwidget.cpp
src/plugins/qt4projectmanager/qt-maemo/maemodeploystepwidget.ui
src/plugins/qt4projectmanager/qtoutputformatter.cpp
src/plugins/texteditor/generichighlighter/highlightersettings.cpp

13 years agoRevert "QmlApp template: Use new 4.7.1 API to enable qml debugging"
dt [Wed, 10 Nov 2010 15:56:39 +0000 (16:56 +0100)]
Revert "QmlApp template: Use new 4.7.1 API to enable qml debugging"

This reverts commit 424fcf8c040d0bbe36c1c3d75612d8805a76a770.

13 years agoInclude stdio and regenerated the parser.
Roberto Raggi [Wed, 10 Nov 2010 15:30:35 +0000 (16:30 +0100)]
Include stdio and regenerated the parser.

13 years agoCompile.
Roberto Raggi [Wed, 10 Nov 2010 15:20:37 +0000 (16:20 +0100)]
Compile.

13 years agoPlain text editor: Make sure user setting about folding markers is used
Leandro Melo [Wed, 10 Nov 2010 14:09:18 +0000 (15:09 +0100)]
Plain text editor: Make sure user setting about folding markers is used

It was being reset based on the highlighter definitions.

Consider some refactoring with the related options as well to avoid
overriding user's settings.

Done-with: Thorbjorn Lindeijer

13 years agoIntroduced a simple incremental lexer for GLSL.
Roberto Raggi [Wed, 10 Nov 2010 14:44:59 +0000 (15:44 +0100)]
Introduced a simple incremental lexer for GLSL.

13 years agoInitial import of the GLSL editor plug-in.
Roberto Raggi [Wed, 10 Nov 2010 13:01:09 +0000 (14:01 +0100)]
Initial import of the GLSL editor plug-in.

13 years agoImported our new GLSL front-end.
Roberto Raggi [Wed, 10 Nov 2010 11:32:34 +0000 (12:32 +0100)]
Imported our new GLSL front-end.

13 years agodebugger: remove some dead code
hjk [Wed, 10 Nov 2010 13:30:19 +0000 (14:30 +0100)]
debugger: remove some dead code

13 years agodebugger: fix/clarify intention of the EngineSetupFailed state.
hjk [Wed, 10 Nov 2010 11:53:33 +0000 (12:53 +0100)]
debugger: fix/clarify intention of the EngineSetupFailed state.

13 years agoExtend camel-case cursor movement
mae [Wed, 10 Nov 2010 11:53:45 +0000 (12:53 +0100)]
Extend camel-case cursor movement

We now have different actions to bind to (saves us an explicit option).
Small fixes to state machines.

Done-with: Erik Verbruggen

13 years agoSupport pkg-config in AddLibraryWizard
Jarek Kobus [Wed, 10 Nov 2010 11:50:02 +0000 (12:50 +0100)]
Support pkg-config in AddLibraryWizard

Reviewed-by: dt <qtc-committer@nokia.com>
Task-number: QTCREATORBUG-2378

13 years agodebugger: remove recently introduced endless loop in resetLocation()
hjk [Wed, 10 Nov 2010 11:38:29 +0000 (12:38 +0100)]
debugger: remove recently introduced endless loop in resetLocation()

13 years agoDebugger: Compile Windows.
Friedemann Kleint [Wed, 10 Nov 2010 11:30:02 +0000 (12:30 +0100)]
Debugger: Compile Windows.

13 years agoQmlDesigner.itemLibrary: use pixelSize instead of pointSize as default.
Thomas Hartmann [Wed, 10 Nov 2010 10:39:58 +0000 (11:39 +0100)]
QmlDesigner.itemLibrary: use pixelSize instead of pointSize as default.

Since all units in qml are usually pixels and mobile devices
usually have much higher dpi than desktop screens, specifing font sizes
in points is usually not what a user wants to do.

Reviewed-by: Kai Koehne
13 years agoQuickToolBar: refine gradient editing
Thomas Hartmann [Wed, 10 Nov 2010 10:34:26 +0000 (11:34 +0100)]
QuickToolBar: refine gradient editing

This patch solves minor usablity issues
in the gradient editing.

Reviewed-by: Lasse Holmstedt
13 years agoExtend camel-case cursor movement
mae [Wed, 10 Nov 2010 11:26:18 +0000 (12:26 +0100)]
Extend camel-case cursor movement

Fix small issue with forward movement, and overwrite deleting to start
or end of word (normally Ctrl+Delete and Ctrl+Backspace)

Reviewed-by: Erik Verbruggen
13 years agodebugger: remove declaration of unneeded DebuggerCore::instance() method
hjk [Wed, 10 Nov 2010 11:23:40 +0000 (12:23 +0100)]
debugger: remove declaration of unneeded DebuggerCore::instance() method

13 years agodebugger: the slots are not needed in the debugger core interface
hjk [Wed, 10 Nov 2010 11:13:42 +0000 (12:13 +0100)]
debugger: the slots are not needed in the debugger core interface

13 years agodebugger: add debuggercore.h
hjk [Wed, 10 Nov 2010 11:11:11 +0000 (12:11 +0100)]
debugger: add debuggercore.h

13 years agodebugger: refactoring of the plugin interface
hjk [Wed, 10 Nov 2010 10:39:01 +0000 (11:39 +0100)]
debugger: refactoring of the plugin interface

There's  some 'external' and some 'internal' part now. Other plugins
are only supposed the external interface.