Hoogle Search
Within LTS Haskell 24.46 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
setKeyCallback :: Window -> Maybe KeyCallback -> IO ()GLFW-b Graphics.UI.GLFW Assigns the given callback to use for all keyboard presses and repeats. See glfwSetKeyCallback
setMonitorCallback :: Maybe MonitorCallback -> IO ()GLFW-b Graphics.UI.GLFW Sets a callback for when a monitor is connected or disconnected. See glfwSetMonitorCallback
setMouseButtonCallback :: Window -> Maybe MouseButtonCallback -> IO ()GLFW-b Graphics.UI.GLFW Assigns the callback to run whenver a mouse button is clicked. See glfwSetMouseButtonCallback
setRawMouseMotion :: Window -> Bool -> IO ()GLFW-b Graphics.UI.GLFW Sets the cursor to receive raw input, if available (See rawMouseMotionSupported and Raw Mouse Motion
setScrollCallback :: Window -> Maybe ScrollCallback -> IO ()GLFW-b Graphics.UI.GLFW Sets the callback to run when the user scrolls with the mouse wheel or a touch gesture. See Scroll Input
setStickyKeysInputMode :: Window -> StickyKeysInputMode -> IO ()GLFW-b Graphics.UI.GLFW Sets if sticky keys should be used or not. See glfwSetInputMode
setStickyMouseButtonsInputMode :: Window -> StickyMouseButtonsInputMode -> IO ()GLFW-b Graphics.UI.GLFW Sets if sticky mouse buttons should be used or not. See glfwSetInputMode
-
GLFW-b Graphics.UI.GLFW Sets the GLFW timer to the specified value, which is measured in seconds, and must be positive. The value must also be less than ~584 years in seconds (18446744073.0). After this the timer begins to count upward at the normal rate. See glfwSetTime
setWindowAspectRatio :: Window -> Maybe (Int, Int) -> IO ()GLFW-b Graphics.UI.GLFW Sets the required aspect ratio of the client area of the specified window. Pass Nothing to disable the limit. See glfwSetWindowAspectRatio
setWindowAttrib :: Window -> WindowAttrib -> Bool -> IO ()GLFW-b Graphics.UI.GLFW Sets the value of an attribute of the specified window. See glfwSetWindowAttrib