stringInputF :: F String String passwdInputF :: F String String intInputF :: F Int Int
These fudgets provides input fields.
stringInputF
allows arbitrary
strings to be entered. The string can be edited by moving
a cursor with the arrow keys and inserting and deleting characters.
The current selection can be pasted by pressing the middle mouse button.
passwdInputF
works like stringInputF
, except that it shows
asterisks for all characters input.
intInputF
works like stringInputF
, except that it allows only
integer values to be input.
Return
, KP_Enter
and Tab
count as
enter keys.
intInputF
stringInputF = inputDoneSP >^^=< stringF intInputF = inputDoneSP >^^=< intF passwdInputF = inputDoneSP >^^=< passwdF
Customisable versions: stringInputF' et al.