We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module Gui.Event exposing (..) import Gui.Path exposing (Path) import Gui.Property exposing (Property) type Event = Click | DragStart ( Float, Float ) | Drag ( Float, Float ) | DragEnd ( Float, Float ) | Key Int | AtChild Path Event | Batch (List Event) type alias Updates msg = ( List ( Path, Property msg ), Cmd msg ) -- TODO: move `Property.execute`, `Property.executeAt`, `Gui.handleKeyDown`, `Gui.handleMouse` here consumeKey : Int -> Property msg -> Bool consumeKey keyCode prop = False dispatch : Event -> Property msg -> Path -> Property msg -> Updates msg dispatch event parent path prop = ( [], Cmd.none )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: