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.

  1. setKeyCallback :: Window -> Maybe KeyCallback -> IO ()

    GLFW-b Graphics.UI.GLFW

    Assigns the given callback to use for all keyboard presses and repeats. See glfwSetKeyCallback

  2. setMonitorCallback :: Maybe MonitorCallback -> IO ()

    GLFW-b Graphics.UI.GLFW

    Sets a callback for when a monitor is connected or disconnected. See glfwSetMonitorCallback

  3. setMouseButtonCallback :: Window -> Maybe MouseButtonCallback -> IO ()

    GLFW-b Graphics.UI.GLFW

    Assigns the callback to run whenver a mouse button is clicked. See glfwSetMouseButtonCallback

  4. setRawMouseMotion :: Window -> Bool -> IO ()

    GLFW-b Graphics.UI.GLFW

    Sets the cursor to receive raw input, if available (See rawMouseMotionSupported and Raw Mouse Motion

  5. 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

  6. setStickyKeysInputMode :: Window -> StickyKeysInputMode -> IO ()

    GLFW-b Graphics.UI.GLFW

    Sets if sticky keys should be used or not. See glfwSetInputMode

  7. setStickyMouseButtonsInputMode :: Window -> StickyMouseButtonsInputMode -> IO ()

    GLFW-b Graphics.UI.GLFW

    Sets if sticky mouse buttons should be used or not. See glfwSetInputMode

  8. setTime :: Double -> IO ()

    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

  9. 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

  10. setWindowAttrib :: Window -> WindowAttrib -> Bool -> IO ()

    GLFW-b Graphics.UI.GLFW

    Sets the value of an attribute of the specified window. See glfwSetWindowAttrib

Page 398 of many | Previous | Next