> On 22/04/2019 05:44, ToddAndMargo via perl6-users wrote: >> Hi All, >> >> I see >> >> https://github.com/perl6/gtk-simple/tree/master/examples >> >> but I have no clue what is going on. >> >> Is there some kind of gtk widget that you can graphically >> design these windows with? >> >> Many thanks, >> -T >>
On 4/22/19 5:56 AM, Timo Paulssen wrote:
Please check out Marcel Timmermann's GTK::Glade module. Here's the readme: https://github.com/MARTIMM/gtk-glade Sadly, modules.perl6.org is currently not available, however, you can download the distribution here: https://www.cpan.org/authors/id/M/MA/MARTIMM/Perl6/gtk-glade-0.8.3.tar.gz or you can git clone the repository and "zef install ." from inside it. There's a little pdf file in the docs/ folder about using the module itself. In order to build a glade file to use with this library, you can install the program "glade". This allows you to graphically put a GUI together. https://glade.gnome.org/ Good Luck! - Timo
Awesome! Thank you!