1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:27:34 +00:00

Inspector: Add a GUI tool for viewing a remote process's CObject graph

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. :^)
This commit is contained in:
Andreas Kling 2019-08-18 10:19:13 +02:00
parent 5c7bb09a73
commit 05cd178477
6 changed files with 215 additions and 0 deletions

View file

@ -62,6 +62,7 @@ build_targets="$build_targets ../Demos/RetroFetch"
build_targets="$build_targets ../Demos/WidgetGallery"
build_targets="$build_targets ../DevTools/VisualBuilder"
build_targets="$build_targets ../DevTools/Inspector"
build_targets="$build_targets ../Games/Minesweeper"
build_targets="$build_targets ../Games/Snake"