On 01-06-2019 21:45, Alex X wrote:

One problem with gtkD is that because it wraps gtk one ends up with objects that, when inspected in visual studio, look like

  • ***

which is a bunch of useless information that tells one nothing about the information of the object one is dealing with(except the type).

I wonder if this could be improved upon and relevant information could be shown, such as a labels text, etc?

I don't think so, for the Label the text is stored in GtkLabelPrivate
for witch GTK doesn't provide a definition.

Maybe the GtkInspector is more useful for things like that, you can
start the GtkInspector by starting your app with the
--gtk-debug=interactive commandline option.