/* * Copyright (c) 2012, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.dart.tools.ui.web.utils; import com.google.dart.tools.ui.DartToolsPlugin; import com.google.dart.tools.ui.PreferenceConstants; import com.google.dart.tools.ui.internal.text.editor.EditorUtility; import com.google.dart.tools.ui.internal.text.editor.saveactions.RemoveTrailingWhitespaceAction; import org.eclipse.core.resources.IFile; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.jface.action.IMenuManager; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.jface.text.DocumentEvent; import org.eclipse.jface.text.IDocument; import org.eclipse.jface.text.IDocumentListener; import org.eclipse.jface.text.IRegion; import org.eclipse.swt.widgets.Composite; import org.eclipse.ui.IEditorInput; import org.eclipse.ui.IFileEditorInput; import org.eclipse.ui.editors.text.TextEditor; import org.eclipse.ui.ide.FileStoreEditorInput; import org.eclipse.ui.texteditor.ITextEditorActionConstants; import java.lang.reflect.InvocationTargetException; /** * The abstract superclass of the html and css editors. */ public abstract class WebEditor extends TextEditor { public final static String MATCHING_BRACKETS = "matchingBrackets"; public final static String MATCHING_BRACKETS_COLOR = "matchingBracketsColor"; /** * Removes trailing whitespace on editor saves. */ private RemoveTrailingWhitespaceAction removeTrailingWhitespaceAction; public WebEditor() { } @Override public void createPartControl(Composite parent) { super.createPartControl(parent); getDocument().addDocumentListener(new IDocumentListener() { @Override public void documentAboutToBeChanged(DocumentEvent event) { } @Override public void documentChanged(DocumentEvent event) { handleDocumentModified(); } }); EditorUtility.addGTKPasteHack(getSourceViewer()); } public IDocument getDocument() { return getSourceViewer().getDocument(); } public IFile getFile() { IEditorInput input = getEditorInput(); if (input instanceof IFileEditorInput) { return ((IFileEditorInput) input).getFile(); } return null; } public IPreferenceStore getPreferences() { return super.getPreferenceStore(); } @Override public String getTitleToolTip() { if (getEditorInput() instanceof IFileEditorInput) { IFileEditorInput input = (IFileEditorInput) getEditorInput(); if (input.getFile().getLocation() != null) { return input.getFile().getLocation().toFile().toString(); } } return super.getTitleToolTip(); } @Override public boolean isEditable() { if (getEditorInput() instanceof FileStoreEditorInput) { return false; } return super.isEditable(); } @Override protected void createActions() { super.createActions(); removeTrailingWhitespaceAction = new RemoveTrailingWhitespaceAction(getSourceViewer()); } @Override protected void editorContextMenuAboutToShow(IMenuManager menu) { // Cut/Copy/Paste actions.. addAction(menu, ITextEditorActionConstants.UNDO); addAction(menu, ITextEditorActionConstants.CUT); addAction(menu, ITextEditorActionConstants.COPY); addAction(menu, ITextEditorActionConstants.PASTE); addAction(menu, ITextEditorActionConstants.REVERT_TO_SAVED); } protected void handleDocumentModified() { } protected abstract void handleReconcilation(IRegion partition); @Override protected void initializeEditor() { super.initializeEditor(); setPreferenceStore(DartToolsPlugin.getDefault().getCombinedPreferenceStore()); } @Override protected void initializeKeyBindingScopes() { setKeyBindingScopes(new String[] {"com.google.dart.tools.ui.dartViewScope"}); //$NON-NLS-1$ } protected boolean isRemoveTrailingWhitespaceEnabled() { return PreferenceConstants.getPreferenceStore().getBoolean( PreferenceConstants.EDITOR_REMOVE_TRAILING_WS); } @Override protected void performSave(boolean overwrite, IProgressMonitor progressMonitor) { performSaveActions(); super.performSave(overwrite, progressMonitor); } protected void performSaveActions() { if (isRemoveTrailingWhitespaceEnabled()) { try { removeTrailingWhitespaceAction.run(); } catch (InvocationTargetException e) { DartToolsPlugin.log(e); } } } @Override protected void rulerContextMenuAboutToShow(IMenuManager menu) { super.rulerContextMenuAboutToShow(menu); // Remove the Preferences menu item menu.remove(ITextEditorActionConstants.RULER_PREFERENCES); } }