Hi all,
Great work on Win32::GUI, I feel with Perl's new ithreads system there's a
lot of capability.
I've created a basic module that uses XML::Twig to create GUIs from XML
(have you seen XAML?). The XML can also include perl scripts to generate
parts of the GUI on the fly. It also helps with
I have just made a first release for Win32::GUI::XMLBuilder. You can
download the module at: -
http://www.cpan.org/authors/id/B/BS/BSDZ/win32-gui-xmlbuilder.zip
The module depends on XML::Twig and Laurent Rocher's home made
Win32::GUI::TabFrame module.
There is minimal documentation currently
I have just made a 2nd release for Win32::GUI::XMLBuilder.
You can view the module at
http://search.cpan.org/~bsdz/Win32-GUI-XMLBuilder-0.21/
You can download the module at: -
http://search.cpan.org/CPAN/authors/id/B/BS/BSDZ/Win32-GUI-XMLBuilder-0.21.tar.gz
The module depends on XML::Twig and
fixed by prepending following lines with cast (BOOL) in treeview.xs
RETVAL = TreeView_SelectDropTarget(handle, item); ->
RETVAL = (BOOL) TreeView_SelectDropTarget(handle, item);
RETVAL = TreeView_SelectItem(handle, item); ->
RETVAL = (BOOL) TreeView_SelectItem(handle, item);
RETVAL= TreeView_Se
4 matches
Mail list logo