| SystemTray-Applet documentation | view source | Contained in the SystemTray-Applet distribution. |
SystemTray::Applet::CmdLine - Sometimes text is all you need
Version 0.01
This module supplies a subclass of SystemTray::Applet that allows you to display applets when all you have is a command line.
use SystemTray::Applet::CmdLine;
my $foo = SystemTray::Applet::CmdLine->create( "text" => "hello world" );
$self->init();
Initialize the toolkit env. Nothing need to be done for the command line.
$self->start();
Start the gui up. The command line doesn't have an event loop of its own so this just loops around for ever , calling the callback as needed.
$self->create_icon("what is a text icon" );
Create a command line icon? Text doesn't really have icons
$self->display();
Display the value of the text field to screen.
$self->schedule();
Schedule the callback by setting the counter back to the frequency
This specifies the priority used by SystemTray::Applet->new when loading plugin. The command line should only be used when nothing else is available.
Peter Sinnott, <psinnott at cpan.org>
Please report any bugs or feature requests to bug-systemtray-applet-gnome at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SystemTray-Applet. 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::CmdLine
You can also look for information at:
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 documentation | view source | Contained in the SystemTray-Applet distribution. |