GtkD 3.5.0, GTK+ with D.

Mike Wey via Digitalmars-d-announce digitalmars-d-announce at puremagic.com
Fri Jan 6 14:00:55 PST 2017


GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL 
license.

Close to the 3.4 release, but the new functionality to now also remove 
registered signal handlers added by Gerald Nunn warrants a new release.
Signal handles can be removed with the 
`gobject.Signals.Signals.handlerDisconnect` function.

```
gulong id = addOnDraw(&myHandler);

Signals.handlerDisconnect(this, id);
```

Users who previously removed there handlers from the internal array used 
by GtkD will need to update there code to the new system.

Changelog: http://gtkd.org/changelog.html
Download: http://gtkd.org/Downloads/sources/GtkD-3.5.0.zip

-- 
Mike Wey


More information about the Digitalmars-d-announce mailing list