hsautogui-0.3.0: Haskell bindings for PyAutoGUI, a library for automating user interaction
Safe HaskellNone
LanguageHaskell2010

AutoGUI.MessageBoxes

Synopsis

Documentation

alert :: Text -> IO () Source #

Show a box onscreen until dismissed

confirm :: Text -> IO Bool Source #

Show a box onscreen until a user hits OK or Cancel Return True on OK, False on Cancel, and False if user closes the box

password :: Text -> IO Text Source #

Show a box onscreen, allowing user to enter some screened text Return empty string if user closes the box

prompt :: Text -> IO Text Source #

Show a box onscreen, allowing user to enter some text Return empty string if user closes the box