gi-gtk-declarative icon indicating copy to clipboard operation
gi-gtk-declarative copied to clipboard

Declarative GTK+ programming in Haskell

Results 33 gi-gtk-declarative issues
Sort by recently updated
recently updated
newest added

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...