iPodDB - iPod music database browser


iPodDB documentation Contained in the iPodDB distribution.

Index


Code Index:

NAME

Top

iPodDB - iPod music database browser

SYNOPSIS

Top

    use iPodDB;

    iPodDB->new->run;

DESCRIPTION

Top

iPodDB is a WxPerl-based app for browsing music on your iPod.

METHODS

Top

run( )

This is just an alias for Wx's MainLoop().

OnInit( )

This is used to initialize the application. It sets a few application parameters and loads up an iPodDB::MainWindow object.

SEE ALSO

Top

* Wx
* Mac::iPod::DB

AUTHOR

Top

* Brian Cassidy <bricas@cpan.org>

COPYRIGHT AND LICENSE

Top


iPodDB documentation Contained in the iPodDB distribution.
package iPodDB;

use base qw( Wx::App );
use Wx;

use strict;
use warnings;

use iPodDB::MainWindow;

our $VERSION = '0.04';
our $APPNAME = 'iPod Database Browser';

sub run {
    $_[ 0 ]->MainLoop;
}

sub OnInit {
    my $self = shift;

    $self->SetAppName( $APPNAME );
    $self->SetVendorName( 'Brian Cassidy' );

    my $main = iPodDB::MainWindow->new;

    $self->SetTopWindow( $main );
    $main->Show( 1 );

    return 1;
}

1;