parasite

If there's software you need and you can't find, make a request for it.
Post Reply
User avatar
damNageHack
Posts: 663
Joined: 24. Sep 2009, 17:07

parasite

Post by damNageHack »

http://chipx86.github.com/gtkparasite/
Parasite is a debugging and development tool that runs inside your GTK+ application's process. It can inspect your application, giving you detailed information on your UI, such as the hierarchy, X window IDs, widget properties, and more. You can modify properties on the fly in order to experiment with the look of your UI.

But you can go further than that. You can actually modify your application logic while the program is running! Parasite includes an embedded Python shell that lets you write new code that directly interacts with your application's UI, regardless of the language the application is written in. Create new dialogs, attach temporary signal handlers to buttons, test out new logic, and gather additional debug information.

If you've used Firebug, it's sort of like that, but for GTK+ applications.

Parasite is available under the MIT license.
Features
Attaches to GTK+ applications.
Display the entire widget hierarchy of any window.
Click a widget to inspect it.
Allows modification of the properties for any widget.
Python shell for dynamic scripting and inspection of applications.
Easily enable GTK+ graphical update debugging.
Displays all GtkActions registered in a program.
Post Reply