"Fossies" - the Fresh Open Source Software Archive

Member "namefix.pl/libs/gui/help.pm" (13 Dec 2008, 551 Bytes) of package /linux/privat/old/namefix.pl_4.0.2.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Perl source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "help.pm" see the Fossies "Dox" file reference documentation.

    1 #--------------------------------------------------------------------------------------------------------------
    2 # Show about box
    3 #--------------------------------------------------------------------------------------------------------------
    4 
    5 use strict;
    6 use warnings;
    7 
    8 sub show_help 
    9 {
   10 my $help_text =
   11 "Welcome to the very basic help txt:
   12 
   13 DEBUG LEVELS:
   14 0   ERROR
   15 1   warnings & startup messages
   16 2   not used
   17 3   Sub routine called
   18 4   Important but noisy sub details
   19 5   Very noisy sub details
   20 ";
   21 
   22     &show_dialog("Help", $help_text);
   23 }
   24 
   25 1;