forked from qt-creator/qt-creator
Added debugging mode for simultaneous QML and C++ debugging
It's not yet possible to attach to an external app running a qml debugging server, because the server is only started on startup if an env variable is set. Changing this requires action from Brisbane, but even the current solution works for C++ apps with QML in them. Task-number: BAUHAUS-585 Reviewed-by: dt
This commit is contained in:
@@ -39,18 +39,17 @@ namespace Qml {
|
||||
const char * const C_INSPECTOR = "QmlInspector";
|
||||
const char * const COMPLETE_THIS = "QmlInspector.CompleteThis";
|
||||
|
||||
const char * const M_ATTACH_TO_EXTERNAL = "QmlInspector.Menu.AttachToExternal";
|
||||
|
||||
const char * const LANG_QML = "QML";
|
||||
|
||||
// settings
|
||||
const char * const S_QML_INSPECTOR = "QML.Inspector";
|
||||
const char * const S_EXTERNALPORT_KEY = "ExternalPort";
|
||||
const char * const S_EXTERNALURL_KEY = "ExternalUrl";
|
||||
|
||||
};
|
||||
|
||||
class StartParameters
|
||||
{
|
||||
public:
|
||||
StartParameters() : port(0) {}
|
||||
~StartParameters() {}
|
||||
|
||||
QString address;
|
||||
quint16 port;
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user