stringPopupF :: String -> F (Maybe String, Maybe String) ((Maybe String, Maybe String), String) passwdPopupF :: String -> F (Maybe String, Maybe String) ((Maybe String, Maybe String), String)
stringPopupF default
stringPopupF
is a dialog popup that shows a message and waits for
the user to enter a text string and press a confirm or cancel button.
Pressing the Return key is equivalent to pressing the confirm button.
passwdPopupF
works like stringPopupF
,
except that it shows asterisks for all characters entered.
Nothing
. Sending a message to stringPopupF
causes the window to
appear on the screen.
default :: String
stringPopupF "(enter your name here)"
Input fudgets: stringF, passwdF.
The combinator used to build popup dialogs: popupShellF.