| Wx-Perl-HtmlWizardPage documentation | view source | Contained in the Wx-Perl-HtmlWizardPage distribution. |
Wx::Perl::HtmlWizardPage - A simple Wx::WizardPage subclass for showing rendered HTML
Wx::Perl::HtmlWizardPage is a subclass of Wx::WizardPage
use Wx;
use Wx::Perl::HtmlWizardPage
$self->{_wizard} = Wx::Wizard->new($self, # parent
-1, # id
"This is a new Wizard", # title
Wx::Bitmap->new('logo.jpg', wxBITMAP_TYPE_JPEG)); # bitmap
$self->{_startpage} = Wx::WizardPageSimple->new($self->{_wizard});
$self->{_lastpage} = Wx::WizardPageSimple->new($self->{_wizard});
$self->{_htmlpage} = Wx::Perl::HtmlWizardPage->new( $self->{_wizard}, # parent
$self->{_startpage}, # previous page
$self->{_lastpage}); # next page
This class allows you to quickly create a wizard page with some rendered HTML
In addition to the methods described below, you can call any Wx::HtmlWindow method on objects of the Wx::Perl::HtmlWizardPage. See the wxWidgets reference for a complete list of all methods.
This is the constructor. It takes three arguments:
This is the (parent) wizard that this page will be part of
This is the previous page in the wizard
This is the next page in the wizard
This method is needed for the wizard to work. It returns the next page in the wizard, as defined in the constructor
This method is needed for the wizard to work. It returns the previous page in the wizard, as defined in the constructor
This method will set the next page to the specified Wizard page.
This method will set the previous page to the specified Wizard page.
Jouke Visser, <jouke@pvoice.org>
Please report any bugs or feature requests to
bug-wx-perl-htmlwizardpage@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Wx-Perl-HtmlWizardPage.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
Copyright 2005 Jouke Visser, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Wx-Perl-HtmlWizardPage documentation | view source | Contained in the Wx-Perl-HtmlWizardPage distribution. |