All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.intellij.plugins.intelliLang.inject.config.ui.AdvancedXmlPanel Maven / Gradle / Ivy

Go to download

A packaging of the IntelliJ Community Edition IntelliLang-xml library. This is release number 1 of trunk branch 142.

The newest version!
/*
 * Copyright 2006 Sascha Weinreuter
 *
 * 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 org.intellij.plugins.intelliLang.inject.config.ui;

import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiFile;
import com.intellij.ui.EditorTextField;
import com.intellij.ui.LanguageTextField;
import org.intellij.lang.regexp.RegExpLanguage;
import org.intellij.plugins.intelliLang.inject.InjectedLanguage;
import org.intellij.plugins.intelliLang.inject.config.AbstractTagInjection;
import org.intellij.plugins.intelliLang.inject.config.XPathSupportProxy;

import javax.swing.*;

public class AdvancedXmlPanel extends AbstractInjectionPanel {

  private JPanel myRoot;

  private EditorTextField myValuePattern;
  private EditorTextField myXPathCondition;
  private JLabel myXPathConditionLabel;
  private JCheckBox mySingleFileCheckBox;

  public AdvancedXmlPanel(Project project, AbstractTagInjection injection) {
    super(injection, project);
    $$$setupUI$$$(); // see IDEA-9987
  }

  protected void apply(AbstractTagInjection other) {
    other.setValuePattern(myValuePattern.getText());
    other.setSingleFile(mySingleFileCheckBox.isSelected());
    other.setXPathCondition(myXPathCondition.getText());
  }

  protected void resetImpl() {
    myValuePattern.setText(myOrigInjection.getValuePattern());
    mySingleFileCheckBox.setSelected(myOrigInjection.isSingleFile());
    myXPathCondition.setText(myOrigInjection.getXPathCondition());
  }

  public JPanel getComponent() {
    return myRoot;
  }

  private void createUIComponents() {
    myValuePattern = new LanguageTextField(RegExpLanguage.INSTANCE, myProject, myOrigInjection.getValuePattern(), new LanguageTextField.SimpleDocumentCreator() {
      public void customizePsiFile(PsiFile psiFile) {
        psiFile.putCopyableUserData(ValueRegExpAnnotator.KEY, Boolean.TRUE);
      }
    });

    // don't even bother to look up the language when xpath-evaluation isn't possible
    final XPathSupportProxy proxy = XPathSupportProxy.getInstance();
    myXPathCondition = new LanguageTextField(proxy != null ? InjectedLanguage.findLanguageById("XPath") : null, myProject,
                                             myOrigInjection.getXPathCondition(), new LanguageTextField.SimpleDocumentCreator() {
        public void customizePsiFile(PsiFile psiFile) {
          // important to get proper validation & completion for Jaxen's built-in and PSI functions
          // like lower-case(), file-type(), file-ext(), file-name(), etc.
          if (proxy != null) {
            proxy.attachContext(psiFile);
          }
        }
      });
  }

  private void $$$setupUI$$$() {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy