blob: f9a1d3412e0c8368c0e081dc39f15fe082db1195 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
*
* 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.intellij.codeInsight.template.impl;
import com.intellij.codeInsight.completion.InsertionContext;
import com.intellij.codeInsight.template.CustomLiveTemplateBase;
import com.intellij.codeInsight.template.CustomTemplateCallback;
import com.intellij.openapi.editor.Editor;
import com.intellij.psi.PsiFile;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class CustomLiveTemplateLookupElement extends LiveTemplateLookupElement {
@NotNull private final CustomLiveTemplateBase myCustomLiveTemplate;
@NotNull private final String myTemplateKey;
@NotNull private final String myItemText;
public CustomLiveTemplateLookupElement(@NotNull CustomLiveTemplateBase customLiveTemplate,
@NotNull String templateKey,
@NotNull String itemText,
@Nullable String description,
boolean sudden,
boolean worthShowingInAutoPopup) {
super(templateKey, description, sudden, worthShowingInAutoPopup);
myCustomLiveTemplate = customLiveTemplate;
myTemplateKey = templateKey;
myItemText = itemText;
}
@NotNull
@Override
protected String getItemText() {
return myItemText;
}
@NotNull
public CustomLiveTemplateBase getCustomLiveTemplate() {
return myCustomLiveTemplate;
}
@Override
public char getTemplateShortcut() {
return myCustomLiveTemplate.getShortcut();
}
@Override
public void handleInsert(InsertionContext context) {
context.setAddCompletionChar(false);
expandTemplate(context.getEditor(), context.getFile());
}
public void expandTemplate(@NotNull Editor editor, @NotNull PsiFile file) {
myCustomLiveTemplate.expand(myTemplateKey, new CustomTemplateCallback(editor, file));
}
}