| SystemTray-Applet-Win32 documentation | view source | Contained in the SystemTray-Applet-Win32 distribution. |
SystemTray::Applet::Win32 - Windows support for SystemTray::Applet
Version 0.02
This module provides windows support for SystemTray::Applet.
use SystemTray::Applet::Win32;
my $foo = SystemTray::Applet::Win32->create( "text" => "hello world" );
By default the console window is hidden during program execution. If you want to leave it visible then pass 0 to the module import.
use SystemTray::Applet::Win32 qw(0);
$self->init();
Initialize the toolkit env. Creates the notification icon
$self->start();
Start the gui up by starting the win32 mainloop. Never returns.
$self->create_icon("an_icon.jpg" );
Create an icon from a file and return it. Supports whatever Win32::GUI::Icon does.
$self->display();
Display the icon with the text as hovertext if we have an icon or hovertext with no icon if none is specified.
$self->schedule();
Schedule the callback.
This specifies the priority used by SystemTray::Applet->new when loading plugin. Win32 is 1 as if it is installed we should probably use it.
Peter Sinnott, <psinnott at cpan.org>
Please report any bugs or feature requests to bug-systemtray-applet-win32 at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SystemTray-Applet-Win32. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc SystemTray::Applet::Win32
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=SystemTray-Applet-Win32
Copyright 2008 Peter Sinnott, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| SystemTray-Applet-Win32 documentation | view source | Contained in the SystemTray-Applet-Win32 distribution. |