Are there good GUI builder for Perl GUI libraries, especially for WxPerl?
-
1Are you wanting to build a "GUI library" or simply build a GUI? – Christopher Bottoms Nov 25 '09 at 21:49
-
simply build a GUI (i want a gui builder for perl like Jigloo for java) – Thor Nov 25 '09 at 21:52
7 Answers
It's still fairly new, but the Padre editor has an in-development Padre::Plugin::FormBuilder plugin that takes a wxFormBuilder project file and generates pure-Perl dialog classes.

- 116,958
- 15
- 196
- 339

- 1,572
- 11
- 13
Check out wxformbuilder. You can design your GUI there and generate an XRC file which wxPerl can then be configured to load.

- 15,396
- 12
- 109
- 124
There is The GUI Loft for Win32::GUI, but of course it's not portable off of Win32.

- 108,003
- 19
- 148
- 163
-
It seems that "The GUI Loft" doesn't support Unicode (or UTF-8). A big drawback. – Helen Craigman Mar 03 '13 at 10:50
Of the GUI editors that I have tried briefly, wxGlade seems the most natural to use, but it still doesn't seem to have the "drag and drop" functionality that I grew to love when working with Java in Eclipse or Netbeans. Don't get me wrong, I love Perl, but would still really like to see a nice WYSIWYG GUI editor.

- 11,218
- 8
- 50
- 99
I would recommend simply using web-based interfaces for everything. If you went with this approach, you could even run a local (i.e. on a Desktop) web server for "standalone" applications.
In like manner, ActiveState decided to focus on Web-based development instead of continuing work on their GUI editor

- 11,218
- 8
- 50
- 99
-
4In many cases this approach will work. As rich AJAX widget sets become available, this works even better. However, sometimes you really need a normal, GUI app. The downvoters are missing the point that this is a valid approach to building app interfaces, and has been for years. – daotoad Nov 26 '09 at 08:47
-
3http://www.perl.com/lpt/a/884 - shows a flash based GUI with a perl backend. Communication via HTTP. This http://www.chrisdolan.net/yapcna2006/shrinkwrap.html shows a method using PAR and SOAP to build apps, with the GUI written in whatever toolset makes sense to the developer. – daotoad Nov 26 '09 at 08:59