| SystemTray-Applet documentation | 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 | Contained in the SystemTray-Applet distribution. |
package SystemTray::Applet::CmdLine; use warnings; use strict; use base qw( SystemTray::Applet );
our $VERSION = '0.01';
sub init { my ( $self ) = @_; return $self; }
sub start { my ( $self ) = @_; while(1) { sleep(1); if( $self->{"frequency"} != -1 ) { $self->{"CmdLine"}->{"counter"}--; if( $self->{"CmdLine"}->{"counter"} == 0 ) { $self->{"callback"}->($self); $self->schedule(); } } } exit(0); }
sub create_icon { my ( $self , $icon ) = @_; }
sub display { my ( $self ) = @_; print $self->{"text"} . "\n"; }
sub schedule { my ( $self ) = @_; if( $self->{"frequency"} != -1 ) { $self->{"CmdLine"}->{"counter"} = $self->{"frequency"}; } }
sub _order { return 90; }
1; # End of SystemTray::Applet::CmdLine