summaryrefslogtreecommitdiff
path: root/DevTools/Inspector/RemoteObjectGraphModel.h
AgeCommit message (Collapse)Author
2019-08-19Inspector: Show remote object properties in a table viewAndreas Kling
This patch expands the object model of this program quite a bit. We now have a RemoteProcess object that contains a list of remote root RemoteObject objects. The RemoteProcess vends a RemoteObjectGraphModel&, and indices in that model have internal_data() pointing to a corresponding RemoteObject. RemoteObjects in turn vend a RemoteObjectPropertyModel&, which is what we use to show the object properties. This is pretty cool :^)
2019-08-19Inspector: Add a missing "override" in RemoteObjectGraphModelAndreas Kling
2019-08-19Inspector: Show GWindows with a little window icon.Andreas Kling
2019-08-18Inspector: Implement RemoteObjectGraphModel::parent_index()Andreas Kling
This makes GTreeView paint the tree lines correctly. It's a bit weird that this is needed, but straightforward to implement so meh.
2019-08-18Inspector: Add a GUI tool for viewing a remote process's CObject graphAndreas Kling
Here comes the foundation for a neat remote debugging tool. Right now, it connects to a remote process's CEventLoop RPC socket and retreives the remote object graph JSON dump. The remote object graph is then reconstructed and exposed through a GModel subclass, which is then displayed in a GTreeView. It's pretty cool, I think. :^)