Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
de59fe3f
Commit
de59fe3f
authored
14 years ago
by
hjk
Browse files
Options
Downloads
Patches
Plain Diff
debugger: work on the qmlengine
parent
d0c2e11a
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/debugger/qml/qmlengine.cpp
+989
-16
989 additions, 16 deletions
src/plugins/debugger/qml/qmlengine.cpp
src/plugins/debugger/qml/qmlengine.h
+85
-1
85 additions, 1 deletion
src/plugins/debugger/qml/qmlengine.h
with
1074 additions
and
17 deletions
src/plugins/debugger/qml/qmlengine.cpp
+
989
−
16
View file @
de59fe3f
This diff is collapsed.
Click to expand it.
src/plugins/debugger/qml/qmlengine.h
+
85
−
1
View file @
de59fe3f
...
...
@@ -32,6 +32,10 @@
#include
"debuggerengine.h"
#include
"private/qdeclarativedebug_p.h"
#include
"private/qdeclarativedebugclient_p.h"
#include
"private/qdeclarativeenginedebug_p.h"
#include
<QtCore/QByteArray>
#include
<QtCore/QHash>
#include
<QtCore/QObject>
...
...
@@ -44,6 +48,7 @@
#include
<QtNetwork/QAbstractSocket>
#include
<QtNetwork/QTcpSocket>
QT_BEGIN_NAMESPACE
class
QTcpSocket
;
class
QDeclarativeDebugConnection
;
...
...
@@ -74,6 +79,7 @@ public:
private:
// DebuggerEngine implementation
bool
isSynchroneous
()
const
{
return
true
;
}
void
executeStep
();
void
executeStepOut
();
void
executeNext
();
...
...
@@ -130,15 +136,93 @@ private slots:
void
connectionConnected
();
void
connectionStateChanged
();
void
reloadEngines
();
void
enginesChanged
();
void
queryEngineContext
(
const
QDeclarativeDebugEngineReference
&
engine
);
void
contextChanged
();
void
reloadObject
(
const
QDeclarativeDebugObjectReference
&
object
);
void
objectFetched
(
QDeclarativeDebugQuery
::
State
state
);
private
:
void
objectFetched
(
QDeclarativeDebugObjectQuery
*
query
,
QDeclarativeDebugQuery
::
State
state
);
void
contextChanged
(
QDeclarativeDebugRootContextQuery
*
query
);
void
enginesChanged
(
QDeclarativeDebugEnginesQuery
*
query
);
void
buildTree
(
const
QDeclarativeDebugObjectReference
&
obj
,
const
QByteArray
&
iname
);
QString
errorMessage
(
QProcess
::
ProcessError
error
);
QProcess
m_proc
;
QDeclarativeDebugConnection
*
m_conn
;
QDeclarativeEngineDebug
*
m_engineDebugInterface
;
QmlDebuggerClient
*
m_client
;
CanvasFrameRate
*
m_frameRate
;
enum
DebugMode
{
StandaloneMode
,
CppProjectWithQmlEngines
,
QmlProjectWithCppPlugins
};
QList
<
QDeclarativeDebugWatch
*>
m_watches
;
#if 0
void createDockWidgets();
bool connectToViewer(); // using host, port from widgets
// returns false if project is not debuggable.
bool setDebugConfigurationDataFromProject(ProjectExplorer::Project *projectToDebug);
void startQmlProjectDebugger();
bool canEditProperty(const QString &propertyType);
QDeclarativeDebugExpressionQuery *executeExpression(int objectDebugId,
const QString &objectId, const QString &propertyName, const QVariant &value);
public slots:
void disconnectFromViewer();
void setSimpleDockWidgetArrangement();
private slots:
void treeObjectActivated(const QDeclarativeDebugObjectReference &obj);
void simultaneouslyDebugQmlCppApplication();
private:
void updateMenuActions();
QString attachToQmlViewerAsExternalApp(ProjectExplorer::Project *project);
QString attachToExternalCppAppWithQml(ProjectExplorer::Project *project);
bool addQuotesForData(const QVariant &value) const;
void resetViews();
QDeclarativeDebugEnginesQuery *m_engineQuery;
QDeclarativeDebugRootContextQuery *m_contextQuery;
CanvasFrameRate
*
m_frameRate
;
Internal::ObjectTree *m_objectTreeWidget;
Internal::ObjectPropertiesView *m_propertiesWidget;
Internal::WatchTableModel *m_watchTableModel;
Internal::WatchTableView *m_watchTableView;
Internal::CanvasFrameRate *m_frameRateWidget;
Internal::ExpressionQueryWidget *m_expressionWidget;
Internal::EngineComboBox *m_engineComboBox;
QDockWidget *m_objectTreeDock;
QDockWidget *m_frameRateDock;
QDockWidget *m_expressionQueryDock;
QDockWidget *m_propertyWatcherDock;
QDockWidget *m_inspectorOutputDock;
Internal::InspectorSettings m_settings;
QmlProjectManager::QmlProjectRunConfigurationDebugData m_runConfigurationDebugData;
QStringList m_editablePropertyTypes;
// simultaneous debug mode stuff
int m_cppDebuggerState;
bool m_connectionInitialized;
bool m_simultaneousCppAndQmlDebugMode;
#endif
};
}
// namespace Internal
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment