forked from qt-creator/qt-creator
Handle various CDB output windows.
Add modules, threads and register view. Refactor register format code.
This commit is contained in:
@@ -33,13 +33,16 @@
|
||||
#include <windows.h>
|
||||
#include <inc/dbgeng.h>
|
||||
|
||||
#include <QtCore/QObject>
|
||||
|
||||
namespace Debugger {
|
||||
namespace Internal {
|
||||
|
||||
class CdbDebugEngine;
|
||||
|
||||
class CdbDebugOutput : public IDebugOutputCallbacks
|
||||
class CdbDebugOutput : public QObject, public IDebugOutputCallbacks
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit CdbDebugOutput(CdbDebugEngine* engine);
|
||||
|
||||
@@ -63,6 +66,10 @@ public:
|
||||
IN PCSTR text
|
||||
);
|
||||
|
||||
signals:
|
||||
void debuggerOutput(const QString &prefix, const QString &message);
|
||||
void debuggerInputPrompt(const QString &prefix, const QString &message);
|
||||
|
||||
private:
|
||||
CdbDebugEngine* m_pEngine;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user