changed promptFunctionKey to promptSpecialKey

This commit is contained in:
Jonathan Lamothe 2019-09-19 02:45:50 -04:00
parent 3d705c4e6d
commit d4cfbcb968
2 changed files with 15 additions and 15 deletions

View File

@ -66,8 +66,8 @@ promptHandler p (C.EventCharacter c) = let
modify $ addChar c'
promptHandler _ (C.EventSpecialKey C.KeyBackspace) =
modify removeChar
promptHandler p (C.EventSpecialKey (C.KeyFunction k)) =
promptFunctionKey p k
promptHandler p (C.EventSpecialKey k) =
promptSpecialKey p k
promptHandler _ _ = return ()
-- | Builds a string prompt
@ -81,7 +81,7 @@ strPrompt pStr act = Prompt
{ promptDrawer = drawSimplePrompt pStr
, promptCharCheck = const True
, promptAction = act
, promptFunctionKey = const $ return ()
, promptSpecialKey = const $ return ()
}
-- | Builds a numeric prompt
@ -95,7 +95,7 @@ numPrompt pStr act = Prompt
{ promptDrawer = drawSimplePrompt pStr
, promptCharCheck = isDigit
, promptAction = \inStr -> forM_ (readMaybe inStr) act
, promptFunctionKey = const $ return ()
, promptSpecialKey = const $ return ()
}
-- | Prompts for the game year

View File

@ -436,8 +436,8 @@ data Prompt = Prompt
-- ^ Determines whether or not the character is valid
, promptAction :: String -> Action ()
-- ^ Action to perform when the value is entered
, promptFunctionKey :: Integer -> Action ()
-- ^ Action to perform when a function key is pressed
, promptSpecialKey :: C.Key -> Action ()
-- ^ Action to perform when a special key is pressed
}
makeLenses ''ProgState