pub trait MouseEventMethods {
Show 20 methods fn ScreenX(&self) -> i32; fn ScreenY(&self) -> i32; fn ClientX(&self) -> i32; fn ClientY(&self) -> i32; fn PageX(&self) -> i32; fn PageY(&self) -> i32; fn X(&self) -> i32; fn Y(&self) -> i32; fn OffsetX(&self) -> i32; fn OffsetY(&self) -> i32; fn CtrlKey(&self) -> bool; fn ShiftKey(&self) -> bool; fn AltKey(&self) -> bool; fn MetaKey(&self) -> bool; fn Button(&self) -> i16; fn GetRelatedTarget(&self) -> Option<Root<Dom<EventTarget>>>; fn Buttons(&self) -> u16; fn Which(&self) -> i32; fn InitMouseEvent(
        &self,
        typeArg: DOMString,
        bubblesArg: bool,
        cancelableArg: bool,
        viewArg: Option<&Window>,
        detailArg: i32,
        screenXArg: i32,
        screenYArg: i32,
        clientXArg: i32,
        clientYArg: i32,
        ctrlKeyArg: bool,
        altKeyArg: bool,
        shiftKeyArg: bool,
        metaKeyArg: bool,
        buttonArg: i16,
        relatedTargetArg: Option<&EventTarget>
    ); fn IsTrusted(&self) -> bool;
}

Required Methods§

source

fn ScreenX(&self) -> i32

source

fn ScreenY(&self) -> i32

source

fn ClientX(&self) -> i32

source

fn ClientY(&self) -> i32

source

fn PageX(&self) -> i32

source

fn PageY(&self) -> i32

source

fn X(&self) -> i32

source

fn Y(&self) -> i32

source

fn OffsetX(&self) -> i32

source

fn OffsetY(&self) -> i32

source

fn CtrlKey(&self) -> bool

source

fn ShiftKey(&self) -> bool

source

fn AltKey(&self) -> bool

source

fn MetaKey(&self) -> bool

source

fn Button(&self) -> i16

source

fn GetRelatedTarget(&self) -> Option<Root<Dom<EventTarget>>>

source

fn Buttons(&self) -> u16

source

fn Which(&self) -> i32

source

fn InitMouseEvent(
    &self,
    typeArg: DOMString,
    bubblesArg: bool,
    cancelableArg: bool,
    viewArg: Option<&Window>,
    detailArg: i32,
    screenXArg: i32,
    screenYArg: i32,
    clientXArg: i32,
    clientYArg: i32,
    ctrlKeyArg: bool,
    altKeyArg: bool,
    shiftKeyArg: bool,
    metaKeyArg: bool,
    buttonArg: i16,
    relatedTargetArg: Option<&EventTarget>
)

source

fn IsTrusted(&self) -> bool

Implementors§