NAME Term::Screen::Wizard - A wizard on your terminal... SYNOPSIS use Term::Screen::Wizard; $scr = new Term::Screen::Wizard; $scr->clrscr(); $scr->add_screen( NAME => "PROCES", HEADER => "Give me the new process id", CANCEL => "Esc - Annuleren", NEXT => "Ctrl-Enter - Volgende", PREVIOUS => "F3 - Vorige", FINISH => "Ctrl-Enter - Klaar", PROMPTS => [ { KEY => "PROCESID", PROMPT => "Proces Id", LEN=>32, VALUE=>"123456789.00.04" , ONLYVALID => "[a-zA-Z0-9.]*" }, { KEY => "TYPE", PROMPT => "Intern or Extern Process (I/E)", CONVERT => "up", LEN=>1, ONLYVALID=>"[ieIE]*" }, { KEY => "OMSCHRIJVING", PROMPT => "Description of Proces", LEN=>75 } ], # # OK This helptext is in Dutch, but it's clear how it works isn't it? # HELPTEXT => "\n\n\n". " In dit scherm kan een nieuw proces Id worden opgevoerd\n". "\n". " ProcesId - is het ingevoerde Proces Id\n". " Intern/Extern - is het proces belastingdienst intern of niet?\n". " Omschrijving - Een korte omschrijving van het proces.\n" ); $scr->add_screen( NAME => "X.400",, HEADER => "Voer het X.400 adres in", # # So the point is you can change the Wizard 'buttons'. # CANCEL => "Esc - Annuleren", NEXT => "Ctrl-Enter - Volgende", PREVIOUS => "F3 - Vorige", FINISH => "Ctrl-Enter - Klaar", PROMPTS => [ { KEY => "COUNTRY", PROMPT => "COUNTRY", LEN => 2, CONVERT => "up", ONLYVALID => "[^/]*" }, { KEY => "AMDM", PROMPT => "AMDM", LEN => 16, CONVERT => "up", ONLYVALID => "[^/]*" }, { KEY => "PRDM", PROMPT => "PRDM", LEN => 16, CONVERT => "up", ONLYVALID => "[^/]*" }, { KEY => "ORG", PROMPT => "ORGANISATION", LEN => 16, CONVERT => "up", ONLYVALID => "[^/]*" }, { KEY => "OU1", PROMPT => "UNIT1", LEN => 16, CONVERT => "up", ONLYVALID => "[^/]*" }, { KEY => "OU2", PROMPT => "UNIT2", LEN => 16, CONVERT => "up", ONLYVALID => "[^/]*" }, { KEY => "OU3", PROMPT => "UNIT3", LEN => 16, CONVERT => "up", ONLYVALID => "[^/]*" }, ], HELPTEXT => "\n\n\n". " In dit scherm kan een standaard X.400 adres worden ingevoerd voor een ProcesId", ); $scr->add_screen( NAME => "GETALLEN",, HEADER => "Voer getallen in", CANCEL => "Esc - Annuleren", NEXT => "Ctrl-Enter - Volgende", PREVIOUS => "F3 - Vorige", FINISH => "Ctrl-Enter - Klaar", PROMPTS => [ { KEY => "ANINT", PROMPT => "INT", LEN => 10, CONVERT => "up", ONLYVALID => "[0-9]*" }, { KEY => "ADOUBLE", PROMPT => "DOUBLE", LEN => 16, CONVERT => "up", ONLYVALID => "[0-9]+([.,][0-9]*)?" }, ], ); $scr->wizard(); $scr->clrscr(); %values=$scr->get_keys(); @array=( "PROCES", "X.400", "GETALLEN" ); for $i (@array) { print "\n$i\n\r"; for $key (keys % { $values{$i} }) { my $val=$values{$i}{$key}; print " $key=$val\n\r"; } } exit; DESCRIPTION This is a module to have a Wizard on a Terminal. It inherits from Term::Screen::ReadLine. The module provides some functions to add screens. The result is a Hash with keys that have the (validated) values that the used inputted on the different screens. USAGE Description of the interface. add_screen( NAME => , HEADER =>
, CANCEL => , NEXT => , PREVIOUS => , FINISH => , HELP => , HELPTEXT => NOFINISH => <1/0 - Inidicates that this wizard is/is not (1/0) part of an ongoing 'wizard sequence'> PROMPTS => ) This function add's a screen to the list of screens that the wizards goes through sequentially. If NOFINISH==1, the finish 'button' is not used. Use this, if the last screen of this wizard is not actually the last screen of a sequence of wizards. For instance, if you need to go one way or the other after the first screen, you provide a wizard with one screen and no FINISH button. After that you call the next sequence of screens. PROMPTS => [ { KEY => "ANINT", PROMPT => "INT", LEN => 10, CONVERT => "up", ONLYVALID => "[0-9]*" }, { KEY => "ADOUBLE", PROMPT => "DOUBLE", LEN => 16, CONVERT => "up", ONLYVALID => "[0-9]+([.,][0-9]*)?" }, ] Note the entries in PROMPTS : KEY is the hash key with what you can access the field. PROMPT is the prompt to use for the field. LEN is the maximum length of the field. CONVERT 'up' or 'lo' for uppercase or lowercase. If not used it won't convert. ONLYVALID is a regex to use for validation. Note: validation is done *before* conversion! If not used, no validation is done. VALUE a default value to use. This value will change if the wizard is used. del_screen() This function deletes a screen with given name from the list of screens. get_screen() This function get's you a handle to a defined screen with given name. get_keys() This function gives you all the keys in a hash of a hash. Actually a hash of screens and each screen a hash of keys. See synopsis for usage. wizard() This function starts the wizard. AUTHOR Hans Dijkema