Chartbreaker
    Preparing search index...

    Type Alias Events

    type Events = {
        buttonClicked: (
            event: Event | null,
            point: Point,
            buton: string,
        ) => void;
        clicked: (event: Event | null, button: EButton, point: Point) => void;
        contextMenu: (event: Event | null, point: Point) => void;
        doubleClicked: (
            event: Event | null,
            point: Point,
            object: number | undefined,
        ) => void;
    }
    Index

    Properties

    buttonClicked: (event: Event | null, point: Point, buton: string) => void

    Fired when a button of the entry was clicked

    clicked: (event: Event | null, button: EButton, point: Point) => void

    Fired when the entry was clicked

    contextMenu: (event: Event | null, point: Point) => void

    Fired when the contextmenu is requested for the entry

    doubleClicked: (
        event: Event | null,
        point: Point,
        object: number | undefined,
    ) => void

    Fired when the entry object was double clicked