Padre::Wx::Dialog::Wizard::Padre::Plugin - a Padre Plugin Wizard


Padre documentation Contained in the Padre distribution.

Index


Code Index:

NAME

Top

Padre::Wx::Dialog::Wizard::Padre::Plugin - a Padre Plugin Wizard

DESCRIPTION

Top

This prepares the required page UI that the wizard will include in its UI and has the page flow information for the next and previous pages.

AUTHOR

Top

Ahmad M. Zawawi <ahmad.zawawi at gmail.com>

COPYRIGHT & LICENSE

Top


Padre documentation Contained in the Padre distribution.

package Padre::Wx::Dialog::Wizard::Padre::Plugin;

use 5.008;
use strict;
use warnings;
use Padre::Wx                     ();
use Padre::Wx::Dialog::WizardPage ();

our $VERSION = '0.86';
our @ISA     = qw(Padre::Wx::Dialog::WizardPage);

sub init {
	my $self = shift;

	$self->name( Wx::gettext('Creates a Padre Plugin') );
	$self->title( Wx::gettext('Padre Plugin Wizard') );

	# Back to select page
	$self->back_wizard(0);
}

# Add controls to page
sub add_controls {
	my $self = shift;

	# Main vertical sizer
	my $sizer = Wx::BoxSizer->new(Wx::wxVERTICAL);

	$self->SetSizer($sizer);
	$self->Fit;
}

sub add_events {
	my $self = shift;

}

sub show {
	my $self = shift;

}

1;


__END__

# Copyright 2008-2011 The Padre development team as listed in Padre.pm.
# LICENSE
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl 5 itself.