2 * Created on Oct 15, 2004
5 * Copyright (c) 2004 Stephen Milligan
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the Software
12 * is furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 package net.sourceforge.phpeclipse.phpeditor.actions;
27 import org.eclipse.jface.action.IAction;
28 import org.eclipse.jface.text.IDocument;
29 import org.eclipse.jface.text.ITextSelection;
30 import org.eclipse.jface.text.TextSelection;
31 import org.eclipse.jface.viewers.ISelection;
32 import org.eclipse.ui.IEditorActionDelegate;
33 import org.eclipse.ui.IEditorPart;
34 import org.eclipse.ui.texteditor.ITextEditor;
37 * @author Stephen Milligan
39 public class RTrimAction implements IEditorActionDelegate {
41 ITextEditor editor = null;
46 public RTrimAction() {
50 public void setActiveEditor(IAction action, IEditorPart targetEditor) {
52 if (targetEditor instanceof ITextEditor) {
53 editor = (ITextEditor) targetEditor;
58 * this gets called for every action
60 public void run(IAction action) {
61 IDocument doc = editor.getDocumentProvider().getDocument(editor.getEditorInput());
62 ITextSelection sel = (ITextSelection) editor.getSelectionProvider().getSelection();
65 int originalCursorOffset = sel.getOffset();
66 int cursorOffset = originalCursorOffset;
67 int originalSelectionLength = sel.getLength();
68 int selectionLength = originalSelectionLength;
74 while (currentLine < doc.getNumberOfLines()) {
75 int offset = doc.getLineOffset(currentLine);
76 int length = doc.getLineLength(currentLine);
77 oldText = doc.get(offset, length);
79 //-- Starts at the end of the line, looking for the first non-first 'white space'
80 //-- it then breaks out. No point in carrying on, as we have found our true line end
81 for (lineEnd=oldText.length(); lineEnd > 0; --lineEnd ){
82 if ( oldText.charAt(lineEnd-1) != '\t' && oldText.charAt(lineEnd-1) != ' ' ){
87 //-- Only replace the line if the lengths are different
88 if ( lineEnd != oldText.length() ) {
89 String newText = oldText.substring(0, lineEnd);
90 doc.replace(offset, length, newText);
92 if (offset + length <= cursorOffset) {
93 if (oldText.length() != newText.length()) {
94 cursorOffset -= oldText.length() - newText.length();
96 } else if (offset <= cursorOffset + selectionLength && selectionLength > 0) {
97 selectionLength -= oldText.length() - newText.length();
98 } else if (offset + length == cursorOffset + 2) { // Check if the cursor is at the end of the line.
105 TextSelection selection = new TextSelection(doc, cursorOffset, selectionLength);
106 editor.getSelectionProvider().setSelection(selection);
107 } catch (Exception blx) {
108 blx.printStackTrace();
112 public void selectionChanged(IAction action, ISelection selection) {