Hi,

The exact list may vary depending on your compile options for wxWidgets and wxPerl.

Following quick code will list detail for your Wx installation

use strict;
use warnings;
use Wx;
my %exports = map { $_ => 1 } @Wx::EXPORT_OK;

foreach my $key ( sort keys(%Wx::EXPORT_TAGS) ) {
    next if ($key =~ /^(everything|all)$/);
    print qq($key\n);
    for( @{ $Wx::EXPORT_TAGS{$key} } ) {
        print qq(\t$_\n);
        delete($exports{$_});
    }
}

print qq(NO SHORT TAG GROUP:\n);

foreach my $key ( sort keys(%exports) ) {
    print qq(\t$key\n);
}




On 23/06/2010 21:38, Roode, Eric wrote:
Where can one find the export tags and what symbols they import?

Thanks,

—Eric


-----Original Message-----
From: Mark Dootson [mailto:mark.doot...@znix.com]
Sent: Wednesday, June 23, 2010 4:08 PM
To: bug...@rt.cpan.org
Cc: wxperl-users@perl.org
Subject: Re: [rt.cpan.org #58579] Compile Wx constants without exporting Wx 
constants

I always found

use Wx qw(:sizer :window :id :misc :listctrl);

etc.

provides just the right level of control for my needs.


Reply via email to