blob: 2aeb5c3a8a624d69ab50d77be5ed0c4dfa777fb6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2012 Sierra Wireless and others.
* 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:
* Sierra Wireless - initial API and implementation
*******************************************************************************/
package org.eclipse.ldt.ui.internal.editor.templates;
import org.eclipse.dltk.ui.templates.ScriptTemplateAccess;
import org.eclipse.dltk.ui.templates.ScriptTemplatePreferencePage;
import org.eclipse.dltk.ui.text.ScriptSourceViewerConfiguration;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.source.SourceViewer;
import org.eclipse.jface.text.templates.Template;
import org.eclipse.ldt.ui.internal.Activator;
import org.eclipse.ldt.ui.internal.editor.text.ILuaPartitions;
import org.eclipse.ldt.ui.internal.editor.text.LuaTextTools;
public class LuaTemplatePreferencePage extends ScriptTemplatePreferencePage {
@Override
protected ScriptSourceViewerConfiguration createSourceViewerConfiguration() {
return new SimpleLuaSourceViewerConfiguration(getTextTools().getColorManager(), getPreferenceStore(), null, ILuaPartitions.LUA_PARTITIONING,
false);
}
@Override
protected void setDocumentPartitioner(IDocument document) {
getTextTools().setupDocumentPartitioner(document, ILuaPartitions.LUA_PARTITIONING);
}
@Override
protected ScriptTemplateAccess getTemplateAccess() {
return LuaTemplateAccess.getInstance();
}
@Override
protected void setPreferenceStore() {
setPreferenceStore(Activator.getDefault().getPreferenceStore());
}
private LuaTextTools getTextTools() {
return Activator.getDefault().getTextTools();
}
@Override
protected ViewerInputDecorations getViewerInputUpdater(SourceViewer viewer, Template template) {
if (LuaDocumentorTemplateContextType.CONTEXT_TYPE_ID.equals(template.getContextTypeId())) {
final String lineDelimiter = viewer.getDocument().getLegalLineDelimiters()[0];
return new ViewerInputDecorations("---" + lineDelimiter + "-- ", lineDelimiter); //$NON-NLS-1$ //$NON-NLS-2$
}
return null;
}
}