/**********************************************************************

	--- TQt Architect generated file ---

	File: ssfeprompt.cpp
	Last generated: Thu Jan 15 20:49:56 1998

 *********************************************************************/

#include "ssfeprompt.h"
#include <klocale.h>

#undef Inherited
#define Inherited ssfepromptdata

ssfePrompt::ssfePrompt
(
 TQString prompttext,
 TQWidget* parent,
 const char* name
)
	:
	Inherited( parent, name )
{
	setCaption( i18n("Prompt") );
	prompt->setText(prompttext);
	SLine->setFocus();
}


ssfePrompt::~ssfePrompt()
{
}

void ssfePrompt::terminate()
{
  done(0);
}

TQString ssfePrompt::text()
{
  TQString text;
  text = SLine->text();
  return text;
}

void ssfePrompt::setPassword(bool pass)
{
  if(pass == TRUE)
    SLine->setEchoMode(TQLineEdit::Password);
  else
    SLine->setEchoMode(TQLineEdit::Normal);
}
#include "ssfeprompt.moc"