gi-gtk-declarative
gi-gtk-declarative copied to clipboard
Declarative GTK+ programming in Haskell
Is there a way to handle the value-changed signal on an adjustment of a scrolled window? This is the rough Python version: sw = Gtk.ScrolledWindow() sw.get_vadjustment().connect("value-changed", my_on_scroll) Thanks.
This is a subset of PR #108 - just enough to allow gi-gtk-declarative-app-simple to be included in Stackage LTS and nixpkgs (see NixOS/nixpkgs#342755). Resolves issue #100
Gtk doesn't destroy its windows when `gtk_main_exit()` is called. It relies on the X server to DestroyAll resources when the app's connection to the X server is closed. This can...