Java Code Examples for com.google.gwt.event.dom.client.MouseDownEvent#preventDefault()
The following examples show how to use
com.google.gwt.event.dom.client.MouseDownEvent#preventDefault() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: VComboBoxMultiselect.java From vaadin-combobox-multiselect with Apache License 2.0 | 6 votes |
@Override public void onMouseDown(MouseDownEvent event) { debug("VComboBoxMultiselect.onMouseDown(): blocking mouseDown event to avoid blur"); event.preventDefault(); event.stopPropagation(); /* * In IE the above wont work, the blur event will still trigger. So, we * set a flag here to prevent the next blur event from happening. This * is not needed if do not already have focus, in that case there will * not be any blur event and we should not cancel the next blur. */ if (BrowserInfo.get() .isIE() && this.focused) { this.preventNextBlurEventInIE = true; debug("VComboBoxMultiselect: Going to prevent next blur event on IE"); } }
Example 2
Source File: VComboBoxMultiselect.java From vaadin-combobox-multiselect with Apache License 2.0 | 6 votes |
@Override public void onMouseDown(MouseDownEvent event) { debug("VComboBoxMultiselect.onMouseDown(): blocking mouseDown event to avoid blur"); event.preventDefault(); event.stopPropagation(); /* * In IE the above wont work, the blur event will still trigger. So, we * set a flag here to prevent the next blur event from happening. This * is not needed if do not already have focus, in that case there will * not be any blur event and we should not cancel the next blur. */ if (BrowserInfo.get() .isIE() && this.focused) { this.preventNextBlurEventInIE = true; debug("VComboBoxMultiselect: Going to prevent next blur event on IE"); } }
Example 3
Source File: PanListener.java From djvu-html5 with GNU General Public License v2.0 | 5 votes |
@Override public void onMouseDown(MouseDownEvent event) { int button = event.getNativeButton(); if ((button == NativeEvent.BUTTON_LEFT || button == NativeEvent.BUTTON_MIDDLE) && touchId == null) { isMouseDown = true; x = event.getX(); y = event.getY(); event.preventDefault(); Event.setCapture(widget.getElement()); } }
Example 4
Source File: MenuController.java From swellrt with Apache License 2.0 | 5 votes |
@Override public boolean onMouseDown(MouseDownEvent event, Element context) { if (event.getNativeButton() != NativeEvent.BUTTON_LEFT) { return false; } BlipMenuItemView item = panel.asBlipMenuItem(context); switch (item.getOption()) { case EDIT: actions.startEditing(item.getParent().getParent()); break; case EDIT_DONE: actions.stopEditing(); break; case REPLY: actions.reply(item.getParent().getParent()); break; case DELETE: // We delete the blip without confirmation if shift key is pressed if (event.getNativeEvent().getShiftKey() || Window.confirm(messages.confirmDeletion())) { actions.delete(item.getParent().getParent()); } break; case LINK: actions.popupLink(item.getParent().getParent()); break; default: throw new AssertionError(); } event.preventDefault(); return true; }
Example 5
Source File: MenuController.java From incubator-retired-wave with Apache License 2.0 | 5 votes |
@Override public boolean onMouseDown(MouseDownEvent event, Element context) { if (event.getNativeButton() != NativeEvent.BUTTON_LEFT) { return false; } BlipMenuItemView item = panel.asBlipMenuItem(context); switch (item.getOption()) { case EDIT: actions.startEditing(item.getParent().getParent()); break; case EDIT_DONE: actions.stopEditing(); break; case REPLY: actions.reply(item.getParent().getParent()); break; case DELETE: // We delete the blip without confirmation if shift key is pressed if (event.getNativeEvent().getShiftKey() || Window.confirm(messages.confirmDeletion())) { actions.delete(item.getParent().getParent()); } break; case LINK: actions.popupLink(item.getParent().getParent()); break; default: throw new AssertionError(); } event.preventDefault(); return true; }
Example 6
Source File: CirSim.java From circuitjs1 with GNU General Public License v2.0 | 4 votes |
public void onMouseDown(MouseDownEvent e) { // public void mousePressed(MouseEvent e) { e.preventDefault(); menuX = menuClientX = e.getX(); menuY = menuClientY = e.getY(); mouseDownTime = System.currentTimeMillis(); // maybe someone did copy in another window? should really do this when // window receives focus enablePaste(); if (e.getNativeButton() != NativeEvent.BUTTON_LEFT && e.getNativeButton() != NativeEvent.BUTTON_MIDDLE) return; // set mouseElm in case we are on mobile mouseSelect(e); mouseDragging=true; didSwitch = false; if (mouseWasOverSplitter) { tempMouseMode = MODE_DRAG_SPLITTER; return; } if (e.getNativeButton() == NativeEvent.BUTTON_LEFT) { // // left mouse tempMouseMode = mouseMode; if (e.isAltKeyDown() && e.isMetaKeyDown()) tempMouseMode = MODE_DRAG_COLUMN; else if (e.isAltKeyDown() && e.isShiftKeyDown()) tempMouseMode = MODE_DRAG_ROW; else if (e.isShiftKeyDown()) tempMouseMode = MODE_SELECT; else if (e.isAltKeyDown()) tempMouseMode = MODE_DRAG_ALL; else if (e.isControlKeyDown() || e.isMetaKeyDown()) tempMouseMode = MODE_DRAG_POST; } else tempMouseMode = MODE_DRAG_ALL; if ((scopeSelected != -1 && scopes[scopeSelected].cursorInSettingsWheel()) || ( scopeSelected == -1 && mouseElm instanceof ScopeElm && ((ScopeElm)mouseElm).elmScope.cursorInSettingsWheel())){ console("Doing something"); Scope s; if (scopeSelected != -1) s=scopes[scopeSelected]; else s=((ScopeElm)mouseElm).elmScope; s.properties(); clearSelection(); mouseDragging=false; return; } int gx = inverseTransformX(e.getX()); int gy = inverseTransformY(e.getY()); if (doSwitch(gx, gy)) { // do this BEFORE we change the mouse mode to MODE_DRAG_POST! Or else logic inputs // will add dots to the whole circuit when we click on them! didSwitch = true; return; } // IES - Grab resize handles in select mode if they are far enough apart and you are on top of them if (tempMouseMode == MODE_SELECT && mouseElm!=null && mouseElm.getHandleGrabbedClose(gx, gy, POSTGRABSQ, MINPOSTGRABSIZE) >=0 && !anySelectedButMouse() ) tempMouseMode = MODE_DRAG_POST; if (tempMouseMode != MODE_SELECT && tempMouseMode != MODE_DRAG_SELECTED) clearSelection(); pushUndo(); initDragGridX = gx; initDragGridY = gy; dragging = true; if (tempMouseMode !=MODE_ADD_ELM) return; // int x0 = snapGrid(gx); int y0 = snapGrid(gy); if (!circuitArea.contains(e.getX(), e.getY())) return; dragElm = constructElement(mouseModeStr, x0, y0); }
Example 7
Source File: DiagramController.java From EasyML with Apache License 2.0 | 4 votes |
/** * Trigger action when mouse down event fired * * @param event */ public void onMouseDown(MouseDownEvent event) { logger.info("diagram left mouse down"); this.getWidgetPanel().getElement().focus(); if (event.getNativeButton() == NativeEvent.BUTTON_RIGHT) { NodeShape shape = (NodeShape) getShapeUnderMouse(); if (shape instanceof OutNodeShape) { OutNodeShape outShape = (OutNodeShape)shape; int x = outShape.getOffsetLeft() + 2*outShape.getRadius(); int y = outShape.getOffsetTop() + 2*outShape.getRadius(); outShape.getContextMenu().setPopupPosition(x,y); outShape.getContextMenu().show(); } if(isvacancy){ event.stopPropagation(); event.preventDefault(); //Popup connection menu if( !this.inShapeArea ){ final Connection c = getConnectionNearMouse(); if (c != null) { showMenu(c); }else{ showContextualMenu(event); } } } return; } if (!lockDrawConnection && inEditionToDrawConnection) { logger.info( "draw connection lock: " + lockDrawConnection ); inDragBuildConnection = true; inEditionToDrawConnection = false; ((NodeShape) startShape).onConnectionStart(); drawBuildArrow(startShape, getMousePoint()); } if(!isvacancy){ event.stopPropagation(); event.preventDefault(); focusTimer.scheduleRepeating(50); } else { this.clearSelectedWidgets(); selectedWidget = null; focusTimer.scheduleRepeating(50); } this.setIsVacancy(true); }
Example 8
Source File: VerticalToolbarButtonWidget.java From swellrt with Apache License 2.0 | 4 votes |
@UiHandler("content") void handleMouseDown(MouseDownEvent e) { // Prevent the editor from losing selection focus. e.preventDefault(); e.stopPropagation(); }
Example 9
Source File: HorizontalToolbarButtonWidget.java From swellrt with Apache License 2.0 | 4 votes |
@UiHandler("self") void handleMouseDown(MouseDownEvent e) { // Prevent the editor from losing selection focus. e.preventDefault(); e.stopPropagation(); }
Example 10
Source File: PopupMenu.java From swellrt with Apache License 2.0 | 4 votes |
@Override public void onMouseDown(MouseDownEvent event) { event.preventDefault(); }
Example 11
Source File: VerticalToolbarButtonWidget.java From incubator-retired-wave with Apache License 2.0 | 4 votes |
@UiHandler("content") void handleMouseDown(MouseDownEvent e) { // Prevent the editor from losing selection focus. e.preventDefault(); e.stopPropagation(); }
Example 12
Source File: HorizontalToolbarButtonWidget.java From incubator-retired-wave with Apache License 2.0 | 4 votes |
@UiHandler("self") void handleMouseDown(MouseDownEvent e) { // Prevent the editor from losing selection focus. e.preventDefault(); e.stopPropagation(); }
Example 13
Source File: PopupMenu.java From incubator-retired-wave with Apache License 2.0 | 4 votes |
@Override public void onMouseDown(MouseDownEvent event) { event.preventDefault(); }