author | dwmw2 <dwmw2> | 2002-09-19 13:29:25 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-09-19 13:29:25 (UTC) |
commit | 0f1ad29634d6bf8a0f64272d7ae8bff74707a9b8 (patch) (side-by-side diff) | |
tree | bc37fc135ad81d720d4d1e806024173bc29bccca | |
parent | f339a98665a80dd6d5497629c3392cf63a456917 (diff) | |
download | opie-0f1ad29634d6bf8a0f64272d7ae8bff74707a9b8.zip opie-0f1ad29634d6bf8a0f64272d7ae8bff74707a9b8.tar.gz opie-0f1ad29634d6bf8a0f64272d7ae8bff74707a9b8.tar.bz2 |
Add '-p' option to opie-sh, to get user input and display '*'s
-rw-r--r-- | noncore/tools/opie-sh/inputdialog.cpp | 6 | ||||
-rw-r--r-- | noncore/tools/opie-sh/opie-sh.cpp | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/noncore/tools/opie-sh/inputdialog.cpp b/noncore/tools/opie-sh/inputdialog.cpp index 1c4e688..8046795 100644 --- a/noncore/tools/opie-sh/inputdialog.cpp +++ b/noncore/tools/opie-sh/inputdialog.cpp @@ -74,30 +74,36 @@ InputDialog::InputDialog(int w, int h, int newtype, QString labelString, QString QFile file; file.open(IO_ReadOnly, 0); QTextStream stream(&file); QString string = stream.read(); listBox->insertStringList(QStringList::split('\n', string)); } break; + case 3: + lineEdit = new QLineEdit(this, "line edit"); + lineEdit->setEchoMode(QLineEdit::Password); + layout->addWidget(lineEdit); + break; } layout->addSpacing(5); x=(w/2)-(width()/2); y=(h/2)-(height()/2); move(x,y); } QString InputDialog::getString() { switch (type) { case 0: + case 3: return ((QLineEdit *)child("line edit"))->text(); break; case 1: return ((QComboBox *)child("combo box"))->currentText(); break; case 2: QString string; int i; diff --git a/noncore/tools/opie-sh/opie-sh.cpp b/noncore/tools/opie-sh/opie-sh.cpp index 96b4b93..a353d3f 100644 --- a/noncore/tools/opie-sh/opie-sh.cpp +++ b/noncore/tools/opie-sh/opie-sh.cpp @@ -121,16 +121,17 @@ void printusage() printf(" -0 [text] First button text [Default = OK]\n"); printf(" -1 [text] Second button text\n"); printf(" -2 [text] Third button text\n"); printf(" -g Disable fullscreen\n"); printf("Input Dialog options:\n"); printf(" -s A single line of input (output to console)\n"); printf(" -l List input (newline separated list read in from file)\n"); printf(" -b A list box, enabling multiple selections (input same as -l)\n"); + printf(" -p Password input (display '*'s)\n"); printf(" -L [label] The label for the input field\n"); printf(" -F [filename] An input file (for when it makes sense) [Default = stdin]\n"); printf(" -E Makes list input editable\n"); printf(" -g Disable fullscreen\n"); } int fileviewer(QPEApplication *a, int argc, QStringList args) { @@ -182,16 +183,21 @@ int input(int wi, int h, QWidget *w, int argc, QStringList args) type = 1; } if(args[i] == "-b") { type = 2; } + if(args[i] == "-p") + { + type = 3; + } + if(args[i] == "-t") { title = args[i+1]; } if(args[i] == "-L") { label = args[i+1]; |