Curses::Forms::Dialog::Logon - Curses Forms Logon Dialog


CursesForms documentation  | view source Contained in the CursesForms distribution.

Index


NAME

Top

Curses::Forms::Dialog::Logon - Curses Forms Logon Dialog

MODULE VERSION

Top

$Id: Logon.pm,v 0.4 2002/11/04 01:06:56 corliss Exp corliss $

SYNOPSIS

Top

	use Curses::Forms::Dialog::Logon;

  ($rv, $user, $pass) = logon('User Logon', BTN_OK | BTN_CANCEL, 
    20, qw(white red yellow));

REQUIREMENTS

Top

Curses Curses::Widgets Curses::Forms Curses::Forms::Dialog

DESCRIPTION

Top

Provides a single function to displaying system logon dialogs.

FUNCTIONS

Top

logon

  ($rv, $user, $pass) = logon('User Logon', BTN_OK | BTN_CANCEL, 
    20, qw(white red yellow));

This function displays an input dialog with the specified title, buttons, and text fields. The following constants are defined for specifying buttons, and can be or'ed to provide multiple choices:

  BTN_OK
  BTN_CANCEL
  BTN_HELP

The remaining arguments is the max string length and the desired colours (foreground, background, and caption colour).

The return value of the dialog will be the index value of the chosen button, as one would normally recieve from the Curses::Widgets::ButtonSet widget, and the string value of the TextField widgets.

HISTORY

Top

2002/10/10 -- Rewritten in OO form.

AUTHOR/COPYRIGHT

Top


CursesForms documentation  | view source Contained in the CursesForms distribution.