hsfm-gtk

Safe HaskellNone
LanguageHaskell2010

HSFM.GUI.Gtk.Dialogs

Synopsis

Documentation

showErrorDialog :: String -> IO () Source

Pops up an error Dialog with the given String.

showConfirmationDialog :: String -> IO Bool Source

Asks the user for confirmation and returns True/False.

showAboutDialog :: IO () Source

Shows the about dialog from the help menu.

withConfirmationDialog :: String -> IO () -> IO () Source

Carry out an IO action with a confirmation dialog. If the user presses No, then do nothing.

withErrorDialog :: IO a -> IO () Source

Execute the given IO action. If the action throws exceptions, visualize them via showErrorDialog.

textInputDialog Source

Arguments

:: GlibString string 
=> string

window title

-> string

initial text in input widget

-> IO (Maybe String) 

Asks the user which directory copy mode he wants via dialog popup and returns DirCopyMode.