GUI: graph signals
This commit is contained in:
parent
731eb00cfb
commit
1997c2f2d8
|
|
@ -578,6 +578,22 @@ void* Bridge::processMessage(GUIMSG type, void* param1, void* param2)
|
|||
case GUI_UPDATE_WATCH_VIEW:
|
||||
emit updateWatch();
|
||||
break;
|
||||
|
||||
case GUI_LOAD_GRAPH:
|
||||
{
|
||||
BridgeResult result;
|
||||
emit loadGraph((BridgeCFGraphList*)param1);
|
||||
result.Wait();
|
||||
}
|
||||
break;
|
||||
|
||||
case GUI_GRAPH_AT:
|
||||
emit graphAt(duint(param1));
|
||||
break;
|
||||
|
||||
case GUI_UPDATE_GRAPH_VIEW:
|
||||
emit updateGraph();
|
||||
break;
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -124,6 +124,9 @@ signals:
|
|||
void focusDump();
|
||||
void focusStack();
|
||||
void updateWatch();
|
||||
void loadGraph(BridgeCFGraphList* graph);
|
||||
void graphAt(duint addr);
|
||||
void updateGraph();
|
||||
|
||||
private:
|
||||
QMutex* mBridgeMutex;
|
||||
|
|
|
|||
Loading…
Reference in New Issue