The GammaRay 2.4.1 release focuses on important bug fixes and performance improvements. This includes a resource leak in the property editor, correct handling of selections in not yet loaded sub-trees, improvements to runtime attaching on Windows, and crash fixes when encountering associative iterable or multi-inheriting types. Meanwhile we are also working hard on the upcoming […]
Author Archives: Volker Krause
GammaRay 2.4 released
We released a new major version of GammaRay, KDAB’s Qt runtime introspection tool, in December 2015. Besides bringing you initial support for Qt 5.6, we focused on enhancing your productivity with large target applications. This includes various performance improvements such as a much faster object search, a new property editor that can dive into composite […]
DIY moc – Dynamic Meta Objects
Abstract: Moc’s job is two-fold: it generates the qt_metacall() member function that dispatches incoming calls to slots and implements reading and writing of properties, and it generates the QMetaObject containing information about what signals, slots and properties are available, providing runtime introspection capabilities. All of this is fixed at compile time though, a limitation that […]