NAME
Wx::Perl::DirTree - A directory tree widget for wxPerl
DESCRIPTION
Many widgets that display directory trees are dialogs or can't handle drives on Windows. This module aims to fill the gap. It can be integrated in any frame or dialog and it handles drives under Windows.
SYNOPSIS
use Wx::Perl::DirTree;
my $panel = Wx::Panel->new;
my $tree = Wx::Perl::DirTree->new( $panel, [100,100] );
my $main_sizer = Wx::BoxSizer->new( wxVERTICAL );
$main_sizer->Add( $tree->GetTree, 0, wxTOP, 0 );
# in a subroutine
print $tree->GetSelectedPath;
AUTHOR
Renee Baecker, <module at renee-baecker.de>
BUGS
Please report any bugs or feature requests to bug-wx-perl-podeditor at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Wx::Perl::PodEditor. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Wx::Perl::PodEditor
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2008 Renee Baecker, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.