Package melnorme.lang.ide.ui.editor

Source Code of melnorme.lang.ide.ui.editor.AbstractLangEditor

/*******************************************************************************
* Copyright (c) 2014, 2014 Bruno Medeiros and other Contributors.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     Bruno Medeiros - initial API and implementation
*******************************************************************************/
package melnorme.lang.ide.ui.editor;


import static melnorme.utilbox.core.CoreUtil.array;

import java.util.ArrayList;
import java.util.List;

import melnorme.lang.ide.ui.EditorSettings_Actual;
import melnorme.lang.ide.ui.LangUIPlugin;
import melnorme.lang.ide.ui.LangUIPlugin_Actual;
import melnorme.lang.ide.ui.text.AbstractLangSourceViewerConfiguration;
import melnorme.utilbox.misc.ArrayUtil;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.source.ISourceViewer;
import org.eclipse.jface.text.source.ISourceViewerExtension2;
import org.eclipse.jface.util.PropertyChangeEvent;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.editors.text.EditorsUI;
import org.eclipse.ui.editors.text.TextEditor;
import org.eclipse.ui.texteditor.ChainedPreferenceStore;

public abstract class AbstractLangEditor extends TextEditor {
 
  public AbstractLangEditor() {
    super();
   
    setKeyBindingScopes(array(EditorSettings_Actual.EDITOR_CONTEXT_ID));
  }
 
  @Override
  protected void initializeEditor() {
    super.initializeEditor();
    initialize_setContextMenuIds();
  }
 
  @Override
  protected void doSetInput(IEditorInput input) throws CoreException {
    super.doSetInput(input);
   
    ISourceViewer sourceViewer = getSourceViewer();
   
    if (!(sourceViewer instanceof ISourceViewerExtension2)) {
      changePreferenceStore(createCombinedPreferenceStore(input));
    } else {
      ISourceViewerExtension2 sourceViewerExt2 = (ISourceViewerExtension2) sourceViewer;
     
      getSourceViewerDecorationSupport(sourceViewer).uninstall();
      sourceViewerExt2.unconfigure();

      changePreferenceStore(createCombinedPreferenceStore(input));
     
      sourceViewer.configure(getSourceViewerConfiguration());
      getSourceViewerDecorationSupport(sourceViewer).install(getPreferenceStore());
    }
   
    internalDoSetInput(input);
  }
 
  protected void changePreferenceStore(IPreferenceStore store) {
    super.setPreferenceStore(store);
    setSourceViewerConfiguration(createSourceViewerConfiguration());
  }
 
  @SuppressWarnings("unused")
  protected void internalDoSetInput(IEditorInput input) {
  }
 
  protected abstract AbstractLangSourceViewerConfiguration createSourceViewerConfiguration();
 
  protected AbstractLangSourceViewerConfiguration getSourceViewerConfiguration2() {
    return (AbstractLangSourceViewerConfiguration) getSourceViewerConfiguration();
  }
 
  protected IPreferenceStore createCombinedPreferenceStore(IEditorInput input) {
    List<IPreferenceStore> stores = new ArrayList<IPreferenceStore>(4);
   
    // TODO: add project pref scope
    @SuppressWarnings("unused")
    IProject project = EditorUtils.getAssociatedProject(input);
   
    stores.add(LangUIPlugin.getInstance().getPreferenceStore());
    stores.add(LangUIPlugin.getInstance().getCorePreferenceStore());
    stores.add(EditorsUI.getPreferenceStore());
   
    return new ChainedPreferenceStore(ArrayUtil.createFrom(stores, IPreferenceStore.class));
  }
 
  @Override
  protected void handlePreferenceStoreChanged(PropertyChangeEvent event) {
    getSourceViewerConfiguration2().handlePropertyChangeEvent(event);
   
    super.handlePreferenceStoreChanged(event);
  }
 
  @Override
  protected boolean affectsTextPresentation(PropertyChangeEvent event) {
    return getSourceViewerConfiguration2().affectsTextPresentation(event)
        || super.affectsTextPresentation(event);
  }
 
  /* ----------------- actions ----------------- */
 
  protected void initialize_setContextMenuIds() {
    setEditorContextMenuId(LangUIPlugin_Actual.EDITOR_CONTEXT);
    setRulerContextMenuId(LangUIPlugin_Actual.RULER_CONTEXT);
  }
 
  protected AbstractLangEditorActions editorActionsManager;
 
  @Override
  protected void createActions() {
    super.createActions();
   
    editorActionsManager = createActionsManager();
  }
 
  protected abstract AbstractLangEditorActions createActionsManager();
 
  @Override
  protected void editorContextMenuAboutToShow(IMenuManager menu) {
    super.editorContextMenuAboutToShow(menu);
    editorContextMenuAboutToShow_extend(menu);
  }
 
  protected void editorContextMenuAboutToShow_extend(IMenuManager menu) {
    editorActionsManager.editorContextMenuAboutToShow(menu);
  }
 
}
TOP

Related Classes of melnorme.lang.ide.ui.editor.AbstractLangEditor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.