| Goo documentation | Contained in the Goo distribution. |
Goo::Header - Show a consistent style of text header for The Goo
use Goo::Header;
show a consistent header at the top of the screen
Nigel Hamilton <nigel@trexy.com>
| Goo documentation | Contained in the Goo distribution. |
package Goo::Header; ############################################################################### # Nigel Hamilton # # Copyright Nigel Hamilton 2005 # All Rights Reserved # # Author: Nigel Hamilton # Filename: Goo::Header.pm # Description: Show a consistent style of text header for the GOO # # Date Change # ----------------------------------------------------------------------------- # 10/10/2005 Added method: showDetailedHeader # ############################################################################### use strict; use Goo::Prompter; ############################################################################### # # show - show a the header in detail # ############################################################################### sub show { my ($action, $filename, $location) = @_; Goo::Prompter::clear(); Goo::Prompter::say(""); Goo::Prompter::yell("The Goo - $action - $filename [$location]"); } 1; __END__