mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
2.0 KiB
104 lines
2.0 KiB
/**********************************************************************/
|
|
/** Microsoft Windows/NT **/
|
|
/** Copyright(c) Microsoft Corp., 1991 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
password.hxx
|
|
Class declarations for the PASSWORD_DIALOG class.
|
|
|
|
The PASSWORD_DIALOG class is used to get a server password from
|
|
the user.
|
|
|
|
|
|
FILE HISTORY:
|
|
KeithMo 22-Jul-1991 Created for the Server Manager.
|
|
|
|
*/
|
|
|
|
|
|
#ifndef _PASSWORD_HXX
|
|
#define _PASSWORD_HXX
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
NAME: PASSWORD_DIALOG
|
|
|
|
SYNOPSIS: Retrieve a server password from the user.
|
|
|
|
INTERFACE: PASSWORD_DIALOG - Class constructor.
|
|
|
|
~PASSWORD_DIALOG - Class destructor.
|
|
|
|
OnOK - Called when the user presses the
|
|
"OK" button.
|
|
|
|
QueryHelpContext - Called when the user presses "F1"
|
|
or the "Help" button. Used for
|
|
selecting the appropriate help
|
|
text for display.
|
|
PARENT: DIALOG_WINDOW
|
|
|
|
USES: PASSWORD_CONTROL
|
|
SLT
|
|
NLS_STR
|
|
|
|
HISTORY:
|
|
KeithMo 22-Jul-1991 Created for the Server Manager.
|
|
|
|
**************************************************************************/
|
|
class PASSWORD_DIALOG : public DIALOG_WINDOW
|
|
{
|
|
private:
|
|
|
|
//
|
|
// The name of the target server.
|
|
//
|
|
|
|
SLT _sltServerName;
|
|
|
|
//
|
|
// Our password buffer.
|
|
//
|
|
|
|
NLS_STR * _pnlsPassword;
|
|
|
|
//
|
|
// This control represents the "secret" password edit field
|
|
// in the dialog.
|
|
//
|
|
|
|
PASSWORD_CONTROL _password;
|
|
|
|
protected:
|
|
|
|
//
|
|
// Called when the user presses the "OK" button.
|
|
//
|
|
|
|
BOOL OnOK( VOID );
|
|
|
|
//
|
|
// Called during help processing to select the appropriate
|
|
// help text for display.
|
|
//
|
|
|
|
ULONG QueryHelpContext( VOID );
|
|
|
|
public:
|
|
|
|
//
|
|
// Usual constructor/destructor goodies.
|
|
//
|
|
|
|
PASSWORD_DIALOG( HWND hWndOwner,
|
|
const TCHAR * pszServerName,
|
|
NLS_STR * pnlsPassword );
|
|
|
|
~PASSWORD_DIALOG();
|
|
|
|
}; // class PASSWORD_DIALOG
|
|
|
|
|
|
#endif // _PASSWORD_HXX
|