Tekstinsyöttöikkuna

Use the --entry option to create a text entry dialog. Zenity returns the contents of the text entry to standard output.

Tekstinsyöttöikkuna tarjoaa seuraavat valitsimet:

--text=text

Määrittää tekstin, joka näkyy tekstinsyöttöikkunassa.

--entry-text=text

Määrittää tekstin, joka näytetään syöttökentässä teksinsyöttöikkunassa.

--hide-text

Piilottaa tekstin syöttökentässä tekstinsyöttöikkunassa.

The following example script shows how to create a text entry dialog:

#!/bin/sh

if zenity --entry \
--title="Add new profile" \
--text="Enter name of new profile:" \
--entry-text "NewProfile"
  then echo $?
  else echo "No name entered"
fi

Esimerkki tekstinsyöttöikkunasta

Zenity text entry dialog example