1Wx(3)                 User Contributed Perl Documentation                Wx(3)
2
3
4

NAME

6       Wx - interface to the wxWidgets cross-platform GUI toolkit
7

SYNOPSIS

9           use Wx;
10
11           my $app = Wx::SimpleApp->new;
12           my $frame = Wx::Frame->new( undef, -1, 'Hello, world!' );
13
14           $frame->Show;
15           $app->MainLoop;
16

DESCRIPTION

18       The Wx module is a wrapper for the wxWidgets (formerly known as wxWin‐
19       dows) GUI toolkit.
20
21       This module comes with extensive documentation in HTML format; you can
22       download it from http://wxperl.sourceforge.net/
23

INSTALLATION

25       Please see docs/INSTALL.pod in source package.
26

Windows XP look

28       For standalone (packed using PAR, Perl2Exe, Perl2App, ...)  applica‐
29       tions to get Windows XP look, a file named "App.exe.manifest" (assuming
30       the program is named "App.exe") and containing the text below must be
31       placed in the same directory as the executable file.
32
33         <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
34         <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
35             <assemblyIdentity
36                 processorArchitecture="x86"
37                 version="5.1.0.0"
38                 type="win32"
39                 name="Controls"
40             />
41             <description>Super wxPerl Application</description>
42             <dependency>
43                 <dependentAssembly>
44                     <assemblyIdentity
45                         type="win32"
46                         name="Microsoft.Windows.Common-Controls"
47                         version="6.0.0.0"
48                         publicKeyToken="6595b64144ccf1df"
49                         language="*"
50                         processorArchitecture="x86"
51                 />
52             </dependentAssembly>
53             </dependency>
54         </assembly>
55

AUTHOR

57       Mattia Barbon <mbarbon@cpan.org>
58

LICENSE

60       This program is free software; you can redistribute it and/or modify it
61       under the same terms as Perl itself.
62
63
64
65perl v5.8.8                       2007-03-10                             Wx(3)
Impressum