NAME
Padre::Plugin::Perl6::Perl6OutlineTask - Perl6 document outline structure info gathering in the background
SYNOPSIS
# by default, the text of the current document
# will be fetched as will the document's notebook page.
my $task = Padre::Plugin::Perl6::Perl6OutlineTask->new;
$task->schedule;
my $task2 = Padre::Plugin::Perl6::Perl6OutlineTask->new(
text => Padre::Current->document->text_get,
editor => Padre::Current->editor,
);
$task2->schedule;
DESCRIPTION
This class implements structure info gathering of Perl6 documents in the background. Also the updating of the GUI is implemented here, because other languages might have different outline structures. It inherits from Padre::Task::Outline. Please read its documentation!
SEE ALSO
This class inherits from Padre::Task::Outline which in turn is a Padre::Task and its instances can be scheduled using Padre::TaskManager.
AUTHOR
Ahmad M. Zawawi <ahmad.zawawi at gmail.com>
Gabor Szabo http://szabgab.com/
COPYRIGHT AND LICENSE
Copyright 2008-2009 Padre Developers as in Perl6.pm
This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.