summary refs log tree commit diff stats
path: root/test/tc_ui.py
Commit message (Collapse)AuthorAgeFilesLines
* Removed symlink in test/hut2010-08-291-0/+6
|
* simplified all_tests.py, moved to test/hut2010-06-071-4/+2
|
* added KeyManagerhut2010-04-071-1/+1
|
* keyparser: fixeshut2010-03-091-1/+1
|
* added copyright info to config files and test caseshut2010-03-081-0/+15
|
* fixed unit testshut2010-01-201-1/+1
|
* added documentation, clean uphut2009-12-311-1/+1
|
* fixed a few things~hut2009-12-301-11/+0
|
* updated / added testshut2009-12-131-0/+61
#fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
import js/javascript

type
  EventPhase = enum
    NONE = 0u16
    CAPTURING_PHASE = 1u16
    AT_TARGET = 2u16
    BUBBLING_PHASE = 3u16

  Event* = ref object
    ctype {.jsget: "type".}: string
    target {.jsget.}: EventTarget
    currentTarget {.jsget.}: EventTarget
    eventPhase {.jsget.}: uint16
    bubbles {.jsget.}: bool
    cancelable {.jsget.}: bool

  EventTarget* = ref object of RootObj

  EventHandler* = JSValue

jsDestructor(Event)
jsDestructor(EventTarget)

func srcElement(this: Event): EventTarget {.jsfget.} =
  return this.target

proc addEventModule*(ctx: JSContext) =
  let eventCID = ctx.registerType(Event)
  ctx.defineConsts(eventCID, EventPhase, uint16)
  ctx.registerType(EventTarget)