Win32::Snarl - Perl extension for Snarl notifications


NAME

Win32::Snarl - Perl extension for Snarl notifications


SYNOPSIS

    use Win32::Snarl;
    
    Win32::Snarl::ShowMessage('Perl', 'Perl is awesome, so is Snarl.');
    
    my $msg_id = Win32::Snarl::ShowMessage('Time', 'The time is now ' . (scalar localtime));
    while (Win32::Snarl::IsMessageVisible($msg_id)) {
        sleep 1;
        Win32::Snarl::UpdateMessage($msg_id, 'Time', 'The time is now ' . (scalar localtime));
    }


DESCRIPTION

Snarl <http://www.fullphat.net/> is a notification system inspired by Growl <http://growl.info/> for Macintosh that lets applications display nice alpha-blended messages on the screen.

Win32::Snarl is the perl interface to Snarl because the people at fullphat seem not to care about perl :'(.


SEE ALSO

Win32::GUI For Windows API Calls

Snarl Documentation <http://www.fullphat.net/dev/>


AUTHOR

Alan Berndt, <alan@eatabrick.org>


COPYRIGHT AND LICENSE

Copyright (C) 2007 by Alan Berndt

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.

 Win32::Snarl - Perl extension for Snarl notifications