Created
November 13, 2014 03:50
-
-
Save avh4/8997ef6a74c9da5a6e23 to your computer and use it in GitHub Desktop.
Detect the row under the mouse
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Color | |
import Mouse | |
e (col,text) = plainText text |> color col |> width 400 | |
type Model = [(Color, String)] | |
model : Model | |
model = | |
[ (Color.red, "short") | |
, (Color.blue, "\"long\"") | |
, (Color.green, "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing ") | |
, (Color.yellow, "yellow") | |
, (Color.purple, "hose interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum") | |
, (Color.orange, ".") | |
] | |
scene : Model -> Maybe (Color, String) -> Element | |
scene m x = flow down | |
[ flow down (map e m) | |
, asText <| show x | |
] | |
findRow : (Int,Int) -> Model -> Maybe (Color, String) | |
findRow (x,y) m = | |
case m of | |
(next::rest) -> let h = (heightOf (e next)) in if | |
| y < h -> Just next | |
| otherwise -> findRow (x,y-h) rest | |
_ -> Nothing | |
modelSignal = constant model | |
main = lift2 scene modelSignal (lift2 findRow Mouse.position modelSignal) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment