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(
62 editor.getEditorInput());
63 ITextSelection sel = (ITextSelection) editor.getSelectionProvider()
67 int originalCursorOffset = sel.getOffset();
68 int cursorOffset = originalCursorOffset;
69 int originalSelectionLength = sel.getLength();
70 int selectionLength = originalSelectionLength;
76 while (currentLine < doc.getNumberOfLines()) {
77 int offset = doc.getLineOffset(currentLine);
78 int length = doc.getLineLength(currentLine);
79 oldText = doc.get(offset, length);
80 String lineDelimiter = doc.getLineDelimiter(currentLine);
81 if (lineDelimiter == null) lineDelimiter = "";
83 // -- Starts at the end of the line, looking for the first
84 // non-first 'white space'
85 // -- it then breaks out. No point in carrying on, as we have
86 // found our true line end
87 for (lineEnd = oldText.length() - lineDelimiter.length(); lineEnd > 0; --lineEnd) {
88 if (oldText.charAt(lineEnd - 1) != '\t'
89 && oldText.charAt(lineEnd - 1) != ' ') {
94 // -- Only replace the line if the lengths are different
95 if (lineEnd != oldText.length() - lineDelimiter.length()) {
96 String newText = oldText.substring(0, lineEnd) + lineDelimiter;
97 doc.replace(offset, length, newText);
99 // if (offset + length <= cursorOffset) {
100 // if (oldText.length() != newText.length()) {
101 // cursorOffset -= oldText.length() - newText.length();
103 // } else if (offset <= cursorOffset + selectionLength
104 // && selectionLength > 0) {
105 // selectionLength -= oldText.length() - newText.length();
106 // } else if (offset + length == cursorOffset + 2) {
107 // // Check if the cursor is at the end of the line.
108 // cursorOffset -= 2;
111 int oldEndOffset = offset + length - lineDelimiter.length();
112 int newEndOffset = offset + lineEnd;
114 if (cursorOffset >= oldEndOffset) {
115 cursorOffset -= oldText.length() - newText.length();
116 } else if (cursorOffset >= newEndOffset) {
117 cursorOffset = newEndOffset;
119 if (selectionLength > 0) {
120 int selectionEndOffset = cursorOffset + selectionLength;
121 if (selectionEndOffset >= oldEndOffset) {
122 if (cursorOffset <= newEndOffset) {
124 selectionLength -= oldText.length() - newText.length();
127 selectionLength -= oldEndOffset - cursorOffset;
129 } else if (selectionEndOffset >= newEndOffset) {
130 if (cursorOffset <= newEndOffset) {
132 selectionLength -= selectionEndOffset - newEndOffset;
143 TextSelection selection = new TextSelection(doc, cursorOffset,
145 editor.getSelectionProvider().setSelection(selection);
146 } catch (Exception blx) {
147 blx.printStackTrace();
151 public void selectionChanged(IAction action, ISelection selection) {