Example #1
0
        public MouseEvent(
			string namespaceUri,
			string eventType,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			long detail,
			long screenX,
			long screenY,
			long clientX,
			long clientY,
			bool ctrlKey,
			bool altKey,
			bool shiftKey,
			bool metaKey,
			ushort button,
			IEventTarget relatedTarget,
			bool altGraphKey)
        {
            InitMouseEventNs(
                namespaceUri, eventType, bubbles, cancelable, view, detail,
                screenX, screenY, clientX, clientY,
                ctrlKey, altKey, shiftKey, metaKey, button,
                relatedTarget, altGraphKey);
        }
Example #2
0
 public MouseEvent(string eventType, bool bubbles, bool cancelable, IAbstractView view,
                   long detail, long screenX, long screenY, long clientX, long clientY, bool ctrlKey,
                   bool altKey, bool shiftKey, bool metaKey, ushort button, IEventTarget relatedTarget)
 {
     InitMouseEvent(eventType, bubbles, cancelable, view, detail, screenX, screenY,
                    clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget);
 }
Example #3
0
 public KeyboardEvent(string namespaceUri, string eventType, bool bubbles, bool cancelable,
                      IAbstractView view, string keyIdentifier, KeyLocationCode keyLocation, bool ctrlKey,
                      bool shiftKey, bool altKey, bool metaKey, bool altGraphKey)
 {
     InitKeyboardEventNs(namespaceUri, eventType, bubbles, cancelable, view,
                         keyIdentifier, keyLocation, ctrlKey, shiftKey, altKey, metaKey, altGraphKey);
 }
Example #4
0
        public void InitMouseEventNs(
            string namespaceUri,
            string eventType,
            bool bubbles,
            bool cancelable,
            IAbstractView view,
            long detail,
            long screenX,
            long screenY,
            long clientX,
            long clientY,
            bool ctrlKey,
            bool altKey,
            bool shiftKey,
            bool metaKey,
            ushort button,
            IEventTarget relatedTarget,
            bool altGraphKey)
        {
            InitUiEventNs(
                namespaceUri, eventType, bubbles, cancelable, view, detail);

            this.screenX       = screenX;
            this.screeny       = screeny;
            this.clientX       = clientX;
            this.clientY       = clientY;
            this.crtlKey       = crtlKey;
            this.shiftKey      = shiftKey;
            this.altKey        = altKey;
            this.metaKey       = metaKey;
            this.button        = button;
            this.relatedTarget = relatedTarget;
            this.altGraphKey   = altGraphKey;
        }
Example #5
0
 public MouseEvent(
     EventType eventType,
     bool bubbles,
     bool cancelable,
     IAbstractView view,
     long detail,
     long screenX,
     long screenY,
     long clientX,
     long clientY,
     bool ctrlKey,
     bool altKey,
     bool shiftKey,
     bool metaKey,
     ushort button,
     IEventTarget relatedTarget,
     bool altGraphKey)
 {
     InitMouseEventNs(
         eventType.NamespaceUri, eventType.Name,
         bubbles, cancelable, view, detail,
         screenX, screenY, clientX, clientY,
         ctrlKey, altKey, shiftKey, metaKey, button,
         relatedTarget, altGraphKey);
 }
Example #6
0
        public void InitUiEvent(string eventType, bool bubbles, bool cancelable,
                                IAbstractView view, long detail)
        {
            InitEvent(eventType, bubbles, cancelable);

            _view   = view;
            _detail = detail;
        }
Example #7
0
        public void InitUiEventNs(string namespaceUri, string eventType, bool bubbles,
                                  bool cancelable, IAbstractView view, long detail)
        {
            InitEventNs(namespaceUri, eventType, bubbles, cancelable);

            _view   = view;
            _detail = detail;
        }
Example #8
0
        public void InitTextEvent(string eventType, bool bubbles, bool cancelable,
                                  IAbstractView view, string data)
        {
            InitEvent(eventType, bubbles, cancelable);

            _view = view;
            _data = data;
        }
Example #9
0
        public void InitTextEventNs(string namespaceUri, string type, bool bubbles,
                                    bool cancelable, IAbstractView view, string data)
        {
            InitEventNs(namespaceUri, _eventType, bubbles, cancelable);

            _view = view;
            _data = data;
        }
Example #10
0
 public TextEvent(
     string eventType,
     bool bubbles,
     bool cancelable,
     IAbstractView view,
     string data)
 {
     InitTextEvent(eventType, bubbles, cancelable, view, data);
 }
Example #11
0
 public UiEvent(
     string eventType,
     bool bubbles,
     bool cancelable,
     IAbstractView view,
     long detail)
 {
     InitUiEvent(eventType, bubbles, cancelable, view, detail);
 }
Example #12
0
        public UiEvent(
			string eventType,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			long detail)
        {
            InitUiEvent(eventType, bubbles, cancelable, view, detail);
        }
Example #13
0
        public TextEvent(
			string eventType,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			string data)
        {
            InitTextEvent(eventType, bubbles, cancelable, view, data);
        }
Example #14
0
        public UiEvent(
			string namespaceUri,
			string eventType,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			long detail)
        {
            InitUiEventNs(namespaceUri, eventType, bubbles, cancelable, view, detail);
        }
Example #15
0
        public TextEvent(
			string namespaceUri,
			string eventType,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			string data)
        {
            InitTextEventNs(namespaceUri, eventType, bubbles, cancelable, view, data);
        }
Example #16
0
 public TextEvent(
     string namespaceUri,
     string eventType,
     bool bubbles,
     bool cancelable,
     IAbstractView view,
     string data)
 {
     InitTextEventNs(namespaceUri, eventType, bubbles, cancelable, view, data);
 }
Example #17
0
 public UiEvent(
     string namespaceUri,
     string eventType,
     bool bubbles,
     bool cancelable,
     IAbstractView view,
     long detail)
 {
     InitUiEventNs(namespaceUri, eventType, bubbles, cancelable, view, detail);
 }
Example #18
0
        public void InitTextEvent(
			string eventType,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			string data)
        {
            InitEvent(eventType, bubbles, cancelable);

            this.view = view;
            this.data = data;
        }
Example #19
0
        public void InitUiEvent(
			string eventType,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			long detail)
        {
            InitEvent(eventType, bubbles, cancelable);

            this.view = view;
            this.detail = detail;
        }
Example #20
0
        public void InitTextEventNs(
			string namespaceUri,
			string type,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			string data)
        {
            InitEventNs(namespaceUri, eventType, bubbles, cancelable);

            this.view = view;
            this.data = data;
        }
Example #21
0
        public void InitKeyboardEventNs(string namespaceUri, string eventType, bool bubbles,
                                        bool cancelable, IAbstractView view, string keyIdentifier, KeyLocationCode keyLocation,
                                        bool ctrlKey, bool shiftKey, bool altKey, bool metaKey, bool altGraphKey)
        {
            InitUiEventNs(namespaceUri, eventType, bubbles, cancelable, view, 0);

            _keyIdentifier = keyIdentifier;
            _keyLocation   = keyLocation;
            _ctrlKey       = ctrlKey;
            _shiftKey      = shiftKey;
            _altKey        = altKey;
            _metaKey       = metaKey;
            _altGraphKey   = altGraphKey;
        }
Example #22
0
        public void InitMouseEvent(string eventType, bool bubbles, bool cancelable, IAbstractView view,
                                   long detail, long screenX, long screenY, long clientX, long clientY, bool ctrlKey,
                                   bool altKey, bool shiftKey, bool metaKey, ushort button, IEventTarget relatedTarget)
        {
            InitUiEvent(eventType, bubbles, cancelable, view, detail);

            _screenX       = screenX;
            _screeny       = screenY;
            _clientX       = clientX;
            _clientY       = clientY;
            _crtlKey       = ctrlKey;
            _shiftKey      = shiftKey;
            _altKey        = altKey;
            _metaKey       = metaKey;
            _button        = button;
            _relatedTarget = relatedTarget;
        }
 public KeyboardEvent(
     string eventType,
     bool bubbles,
     bool cancelable,
     IAbstractView view,
     string keyIdentifier,
     KeyLocationCode keyLocation,
     bool ctrlKey,
     bool shiftKey,
     bool altKey,
     bool metaKey,
     bool altGraphKey)
 {
     InitKeyboardEvent(
         eventType, bubbles, cancelable, view,
         keyIdentifier, keyLocation,
         ctrlKey, shiftKey, altKey, metaKey, altGraphKey);
 }
Example #24
0
        public void InitKeyboardEvent(
            string eventType,
            bool bubbles,
            bool cancelable,
            IAbstractView view,
            string keyIdentifier,
            KeyLocationCode keyLocation,
            bool ctrlKey,
            bool shiftKey,
            bool altKey,
            bool metaKey,
            bool altGraphKey)
        {
            InitUiEvent(eventType, bubbles, cancelable, view, 0);

            this.keyIdentifier = keyIdentifier;
            this.keyLocation   = keyLocation;
            this.ctrlKey       = ctrlKey;
            this.shiftKey      = shiftKey;
            this.altKey        = altKey;
            this.metaKey       = metaKey;
            this.altGraphKey   = altGraphKey;
        }
        public void InitKeyboardEventNs(
            string namespaceUri,
            string eventType,
            bool bubbles,
            bool cancelable,
            IAbstractView view,
            string keyIdentifier,
            KeyLocationCode keyLocation,
            bool ctrlKey,
            bool shiftKey,
            bool altKey,
            bool metaKey,
            bool altGraphKey)
        {
            InitUiEventNs(namespaceUri, eventType, bubbles, cancelable, view, 0);

            this.keyIdentifier = keyIdentifier;
            this.keyLocation = keyLocation;
            this.ctrlKey = ctrlKey;
            this.shiftKey = shiftKey;
            this.altKey = altKey;
            this.metaKey = metaKey;
            this.altGraphKey = altGraphKey;
        }
Example #26
0
        public void InitMouseEventNs(
			string namespaceUri,
			string eventType,
			bool bubbles,
			bool cancelable,
			IAbstractView view,
			long detail,
			long screenX,
			long screenY,
			long clientX,
			long clientY,
			bool ctrlKey,
			bool altKey,
			bool shiftKey,
			bool metaKey,
			ushort button,
			IEventTarget relatedTarget,
			bool altGraphKey)
        {
            InitUiEventNs(
                namespaceUri, eventType, bubbles, cancelable, view, detail);

            this.screenX = screenX;
            this.screeny = screeny;
            this.clientX = clientX;
            this.clientY = clientY;
            this.crtlKey = crtlKey;
            this.shiftKey = shiftKey;
            this.altKey = altKey;
            this.metaKey = metaKey;
            this.button = button;
            this.relatedTarget = relatedTarget;
            this.altGraphKey = altGraphKey;
        }