elm/libraries/Mouse.elm
Evan Czaplicki 007ea7126f Get rid of isClicked
It can be argued that everything should be derived from isDown and
position (the two real facts about the mouse), so maybe that is a
direction to go from here.
2014-01-27 12:29:52 +01:00

36 lines
709 B
Elm

module Mouse where
{-| Library for working with mouse input.
# Position
@docs position, x, y
# Button Status
@docs isDown, clicks
-}
import Signal (Signal)
import Native.Mouse
{-| The current mouse position. -}
position : Signal (Int,Int)
position = Native.Mouse.position
{-| The current x-coordinate of the mouse. -}
x : Signal Int
x = Native.Mouse.x
{-| The current y-coordinate of the mouse. -}
y : Signal Int
y = Native.Mouse.y
{-| The current state of the left mouse-button.
True when the button is down, and false otherwise. -}
isDown : Signal Bool
isDown = Native.Mouse.isDown
{-| Always equal to unit. Event triggers on every mouse click. -}
clicks : Signal ()
clicks = Native.Mouse.clicks