X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/java/JavaStringAutoIndentStrategySQ.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/java/JavaStringAutoIndentStrategySQ.java index 52e4c96..5741824 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/java/JavaStringAutoIndentStrategySQ.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/java/JavaStringAutoIndentStrategySQ.java @@ -1,10 +1,10 @@ /******************************************************************************* * Copyright (c) 2000, 2003 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials + * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html - * + * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ @@ -15,7 +15,7 @@ import net.sourceforge.phpeclipse.PHPeclipsePlugin; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.jface.text.BadLocationException; -import org.eclipse.jface.text.DefaultAutoIndentStrategy; +import org.eclipse.jface.text.DefaultIndentLineAutoEditStrategy; import org.eclipse.jface.text.DocumentCommand; import org.eclipse.jface.text.IDocument; import org.eclipse.jface.text.IRegion; @@ -29,23 +29,23 @@ import org.eclipse.ui.texteditor.ITextEditorExtension3; /** * Auto indent strategy for java strings */ -public class JavaStringAutoIndentStrategySQ extends DefaultAutoIndentStrategy { - +public class JavaStringAutoIndentStrategySQ extends DefaultIndentLineAutoEditStrategy { + private String fPartitioning; - + /** * The input string doesn't contain any line delimiter. - * + * * @param inputString the given input string * @return the displayable string. */ private String displayString(String inputString, String indentation, String delimiter) { - + int length = inputString.length(); StringBuffer buffer = new StringBuffer(length); java.util.StringTokenizer tokenizer = new java.util.StringTokenizer(inputString, "\n\r", true); //$NON-NLS-1$ while (tokenizer.hasMoreTokens()){ - + String token = tokenizer.nextToken(); if (token.equals("\r")) { //$NON-NLS-1$ buffer.append("\\r"); //$NON-NLS-1$ @@ -71,10 +71,10 @@ public class JavaStringAutoIndentStrategySQ extends DefaultAutoIndentStrategy { buffer.append(indentation); buffer.append("\'"); //$NON-NLS-1$ continue; - } - + } + StringBuffer tokenBuffer = new StringBuffer(); - for (int i = 0; i < token.length(); i++){ + for (int i = 0; i < token.length(); i++){ char c = token.charAt(i); switch (c) { case '\r' : @@ -113,35 +113,35 @@ public class JavaStringAutoIndentStrategySQ extends DefaultAutoIndentStrategy { /** * Creates a new Java string auto indent strategy for the given document partitioning. - * + * * @param partitioning the document partitioning */ public JavaStringAutoIndentStrategySQ(String partitioning) { super(); fPartitioning= partitioning; } - + private boolean isLineDelimiter(IDocument document, String text) { String[] delimiters= document.getLegalLineDelimiters(); if (delimiters != null) return TextUtilities.equals(delimiters, text) > -1; return false; } - + private String getLineIndentation(IDocument document, int offset) throws BadLocationException { // find start of line int adjustedOffset= (offset == document.getLength() ? offset - 1 : offset); IRegion line= document.getLineInformationOfOffset(adjustedOffset); int start= line.getOffset(); - + // find white spaces int end= findEndOfWhiteSpace(document, start, offset); - + return document.get(start, end - start); } - private String getModifiedText(String string, String indentation, String delimiter) throws BadLocationException { + private String getModifiedText(String string, String indentation, String delimiter) throws BadLocationException { return displayString(string, indentation, delimiter); } @@ -156,7 +156,7 @@ public class JavaStringAutoIndentStrategySQ extends DefaultAutoIndentStrategy { // new JavaAutoIndentStrategy(fPartitioning).customizeDocumentCommand(document, command); return; } - + if (command.offset == offset + length && document.getChar(offset + length - 1) == '\'') return; @@ -167,18 +167,18 @@ public class JavaStringAutoIndentStrategySQ extends DefaultAutoIndentStrategy { String string= document.get(line.getOffset(), offset - line.getOffset()); if (string.trim().length() != 0) indentation += String.valueOf("\t\t"); //$NON-NLS-1$ - + IPreferenceStore preferenceStore= PHPeclipsePlugin.getDefault().getPreferenceStore(); if (isLineDelimiter(document, command.text)) command.text= "\' ." + command.text + indentation + "\'"; //$NON-NLS-1$//$NON-NLS-2$ else if (command.text.length() > 1 && preferenceStore.getBoolean(PreferenceConstants.EDITOR_ESCAPE_STRINGS_SQ)) - command.text= getModifiedText(command.text, indentation, delimiter); + command.text= getModifiedText(command.text, indentation, delimiter); } - + private boolean isSmartMode() { IWorkbenchPage page= PHPeclipsePlugin.getActivePage(); if (page != null) { - IEditorPart part= page.getActiveEditor(); + IEditorPart part= page.getActiveEditor(); if (part instanceof ITextEditorExtension3) { ITextEditorExtension3 extension= (ITextEditorExtension3) part; return extension.getInsertMode() == ITextEditorExtension3.SMART_INSERT; @@ -196,10 +196,10 @@ public class JavaStringAutoIndentStrategySQ extends DefaultAutoIndentStrategy { return; IPreferenceStore preferenceStore= PHPeclipsePlugin.getDefault().getPreferenceStore(); - + if (preferenceStore.getBoolean(PreferenceConstants.EDITOR_WRAP_STRINGS_SQ) && isSmartMode()) javaStringIndentAfterNewLine(document, command); - + } catch (BadLocationException e) { } }