BinEditor: Refactor new range requesting.

Also adds the "new range" ability to the debugger's memory viewer.
This commit is contained in:
ck
2010-07-02 12:17:08 +02:00
parent 2c3dd30382
commit 161e03227b
5 changed files with 35 additions and 30 deletions

View File

@@ -59,11 +59,11 @@ public:
public slots:
// Called from Engine
void addLazyData(QObject *editorToken, quint64 addr, const QByteArray &data);
// Called from Editor
void fetchLazyData(Core::IEditor *, quint64 block, bool sync);
private:
Q_SLOT void createBinEditor(quint64 startAddr);
Q_SLOT void fetchLazyData(Core::IEditor *, quint64 block, bool sync);
Q_SLOT void provideNewRange(Core::IEditor *editor, quint64 address);
QPointer<IDebuggerEngine> m_engine;
QList<QPointer<Core::IEditor> > m_editors;