
Padre::Wx::StatusBar - Encapsulates status bar customizations

Padre::Wx::StatusBar implements Padre's statusbar.
It is the bottom pane holding various,
err,
status information on Padre.
The information shown are (in order):
It inherits from Wx::StatusBar,
so check wx documentation to see all the available methods that can be applied to it besides the added ones (see below).

my $statusbar = Padre::Wx::StatusBar->new( $main );
Create and return a new Padre statusbar. One should pass the $main Padre window as argument, to get a reference to the statusbar parent.
$statusbar->clear;
Clear all the status bar fields, ie, they will display an empty string in all fields.
$statusbar->refresh;
Force an update of the document fields in the statusbar.
$statusbar->update_task_status;
Checks whether a task status icon update is in order and if so, changes the icon to one of the other states
$statusbar->update_pos;
Update the cursor position
$statusbar->on_resize( $event );
Handler for the EVT_SIZE $event. Used to move the task load bitmap to its position.

Icons for background status courtesy of Mark James, at http://www.famfamfam.com/lab/icons/silk/.

Copyright 2008-2009 The Padre development team as listed in Padre.pm.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.