/jEdit/branches/ci_release_test/4-4-pre1/org/gjt/sp/jedit/textarea/MouseHandler.java
# · Java · 177 lines · 115 code · 25 blank · 37 comment · 27 complexity · a29dd1471d50b871830e1cad9098cafb MD5 · raw file
- /*
- * MouseHandler.java
- * :tabSize=8:indentSize=8:noTabs=false:
- * :folding=explicit:collapseFolds=1:
- *
- * Copyright (C) 1999, 2005 Slava Pestov
- * Portions copyright (C) 2000 Ollie Rutherfurd
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
- package org.gjt.sp.jedit.textarea;
- //{{{ Imports
- import java.awt.event.*;
- import org.gjt.sp.jedit.EditBus;
- import org.gjt.sp.jedit.Registers;
- import org.gjt.sp.jedit.OperatingSystem;
- import org.gjt.sp.jedit.msg.PositionChanging;
- //}}}
- /** The mouseHandler used for jEdit.
- *
- */
- public class MouseHandler extends TextAreaMouseHandler
- {
- //{{{ MouseHandler constructor
- public MouseHandler(JEditTextArea textArea)
- {
- super(textArea);
- this.textArea = textArea;
- } //}}}
- //{{{ mousePressed() method
- @Override
- public void mousePressed(MouseEvent evt)
- {
- showCursor();
- control = (OperatingSystem.isMacOS() && evt.isMetaDown())
- || (!OperatingSystem.isMacOS() && evt.isControlDown());
- ctrlForRectangularSelection = textArea.isCtrlForRectangularSelection();
- // so that Home <mouse click> Home is not the same
- // as pressing Home twice in a row
- textArea.getInputHandler().resetLastActionCount();
- quickCopyDrag = (textArea.isQuickCopyEnabled() &&
- isMiddleButton(evt.getModifiers()));
- if(!quickCopyDrag)
- {
- textArea.requestFocus();
- TextArea.focusedComponent = textArea;
- }
- if(textArea.getBuffer().isLoading())
- return;
- EditBus.send(new PositionChanging(textArea));
- int x = evt.getX();
- int y = evt.getY();
- dragStart = textArea.xyToOffset(x,y,
- !(textArea.getPainter().isBlockCaretEnabled()
- || textArea.isOverwriteEnabled()));
- dragStartLine = textArea.getLineOfOffset(dragStart);
- dragStartOffset = dragStart - textArea.getLineStartOffset(
- dragStartLine);
- if(isPopupTrigger(evt)
- && textArea.getRightClickPopup() != null)
- {
- if(textArea.isRightClickPopupEnabled())
- textArea.handlePopupTrigger(evt);
- return;
- }
- dragged = false;
- textArea.blink = true;
- textArea.invalidateLine(textArea.getCaretLine());
- clickCount = evt.getClickCount();
- if(textArea.isDragEnabled()
- && textArea.selectionManager.insideSelection(x,y)
- && clickCount == 1 && !evt.isShiftDown())
- {
- maybeDragAndDrop = true;
- textArea.moveCaretPosition(dragStart,false);
- return;
- }
- maybeDragAndDrop = false;
- if(quickCopyDrag)
- {
- // ignore double clicks of middle button
- doSingleClick(evt);
- }
- else
- {
- switch(clickCount)
- {
- case 1:
- doSingleClick(evt);
- break;
- case 2:
- doDoubleClick();
- break;
- default: //case 3:
- doTripleClick();
- break;
- }
- }
- } //}}}
- //{{{ mouseReleased() method
- @Override
- public void mouseReleased(MouseEvent evt)
- {
- // middle mouse button drag inserts selection
- // at caret position
- Selection sel = textArea.getSelectionAtOffset(dragStart);
- if(dragged && sel != null)
- {
- Registers.setRegister('%',textArea.getSelectedText(sel));
- if(quickCopyDrag)
- {
- textArea.removeFromSelection(sel);
- Registers.paste(TextArea.focusedComponent,
- '%',sel instanceof Selection.Rect);
- TextArea.focusedComponent.requestFocus();
- }
- }
- else if(!dragged && textArea.isQuickCopyEnabled() &&
- isMiddleButton(evt.getModifiers()))
- {
- textArea.requestFocus();
- TextArea.focusedComponent = textArea;
- textArea.setCaretPosition(dragStart,false);
- if(!textArea.isEditable())
- textArea.getToolkit().beep();
- else
- Registers.paste(textArea,'%',control);
- }
- else if(maybeDragAndDrop
- && !textArea.isMultipleSelectionEnabled())
- {
- textArea.selectNone();
- }
- maybeDragAndDrop = false;
- dragged = false;
- } //}}}
- //{{{ Private members
- private JEditTextArea textArea;
- //}}}
- }