Package org.apache.uima.caseditor.ui.property

Source Code of org.apache.uima.caseditor.ui.property.AnnotationPropertyPage

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you 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.apache.uima.caseditor.ui.property;

import java.awt.Color;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.apache.uima.cas.CAS;
import org.apache.uima.cas.Feature;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.TypeSystem;
import org.apache.uima.caseditor.editor.AnnotationStyle;
import org.apache.uima.caseditor.editor.AnnotationStyle.Style;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.jface.preference.ColorSelector;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.util.PropertyChangeEvent;
import org.eclipse.jface.viewers.CellLabelProvider;
import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.SelectionChangedEvent;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.jface.viewers.TableViewerColumn;
import org.eclipse.jface.viewers.ViewerCell;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.ui.dialogs.PropertyPage;

/**
* This is the <code>AnnotationPropertyPage</code>. this page configures the project dependent
* and type dependent annotation appearance in the <code>AnnotationEditor</code>.
*/
public abstract class AnnotationPropertyPage extends PropertyPage {

  private static interface CustomStyleConfigChangeListener {
    void styleChanged(String configuration);
  }
 
  private static abstract class CustomStyleConfigWidget extends Composite {
   
    private Set<CustomStyleConfigChangeListener> listeners =
        new HashSet<CustomStyleConfigChangeListener>();
   
    public CustomStyleConfigWidget(Composite parent) {
      super(parent, SWT.NONE);
    }
   
    protected void notifyChange(String newConfig) {
      for (CustomStyleConfigChangeListener listener : listeners) {
        listener.styleChanged(newConfig);
      }
    }
   
    void addListener(CustomStyleConfigChangeListener listener) {
      listeners.add(listener);
    }
   
    void removeListener(CustomStyleConfigChangeListener listener) {
      listeners.remove(listener);
    }
   
    void setStyle(AnnotationStyle style, Type selectedType) {
    }
   
    abstract String getConfiguration();
  }
 
  // TODO: If there is more than one config widget, do a little refactoring ...
  // TODO: needs one label plus combo to select the combinded drawing style
  private static class TagStyleConfigWidget extends CustomStyleConfigWidget {
   
    private Combo featureCombo;
   
    TagStyleConfigWidget(Composite parent) {
      super(parent);
     
      // Add a warning, that tag style is still experimental
     
     
      // group layout must fill everything .. ?!
      setLayout(new FillLayout());
     
      Group group = new Group(this, SWT.NONE);
      group.setText("Tag Style Settings");
     
      GridLayout layout = new GridLayout();
      layout.numColumns = 2;
      group.setLayout(layout);
     
      Label warning = new Label(group, SWT.NONE);
      warning.setText("The tag style is experimental\n" +
              "and has still minor issues!");
      GridDataFactory.fillDefaults().span(2, 1).applyTo(warning);
     
      // Label and combo to select the feature
      Label featureLabel = new Label(group, SWT.NONE);
      featureLabel.setText("Feature:");
      GridDataFactory.fillDefaults().applyTo(featureLabel);
     
      featureCombo = new Combo(group, SWT.READ_ONLY | SWT.DROP_DOWN);
      GridDataFactory.fillDefaults().applyTo(featureCombo);
     
      featureCombo.addSelectionListener(new SelectionListener() {
       
        public void widgetSelected(SelectionEvent e) {
          notifyChange(featureCombo.getText());
        }
       
        public void widgetDefaultSelected(SelectionEvent e) {
          // called when enter is pressed, not needed
        }
      });
     
      group.pack();
    }
   
    String getConfiguration() {
      String configString = featureCombo.getText();
     
      if (configString.length() == 0)
        return null;
      else
        return configString;
    }
   
    @Override
    void setStyle(AnnotationStyle style, Type selectedType) {
      featureCombo.removeAll();
     
      for (Feature feature : selectedType.getFeatures()) {
        if (feature.getRange().isPrimitive()) {
          String featureName = feature.getShortName();
          featureCombo.add(featureName);
        }
      }
     
      // Select the first index as default
      featureCombo.select(0);
     
      // Figure out if the provided config,
      // can be used to select the actual feature
      String feature = style.getConfiguration();
      if (feature != null) {
        int indexToSelect = featureCombo.indexOf(feature);
       
        if (indexToSelect != -1)
          featureCombo.select(indexToSelect);
      }
    }
  }
 
  private boolean isTypeSystemPresent = true;
 
  private Combo mStyleCombo;

  private ColorSelector mColorSelector;

  private TableViewer mTypeList;

  private Button moveLayerUpButton;
  private Button moveLayerDownButton;
 
  private CustomStyleConfigWidget styleConfigurationWidget;
 
  private Map<Type, AnnotationStyle> changedStyles = new HashMap<Type, AnnotationStyle>();

  private Type getSelectedType() {

    IStructuredSelection selection = (IStructuredSelection) mTypeList.getSelection();

    return (Type) selection.getFirstElement();
  }

  protected abstract AnnotationStyle getAnnotationStyle(Type type);
 
  private final AnnotationStyle getWorkingCopyAnnotationStyle(Type type) {
    AnnotationStyle style = changedStyles.get(type);
   
    if (style == null)
      style = getAnnotationStyle(type);
   
    return style;
  }
 
  // does not make sense, just give it a list with new annotation styles,
  // to save them and notify other about the chagne
 
  protected final void setAnnotationStyle(AnnotationStyle style) {
    changedStyles.put(getSelectedType(), style);
  }
 
  protected abstract TypeSystem getTypeSystem();
 
  // Depending on active style, enable custom configuration widget
  // and update the annotation style with custom control defaults
  private void updateCustomStyleControl(AnnotationStyle style, Type selectedType) {
    if (Style.TAG.equals(style.getStyle())) {
      styleConfigurationWidget.setVisible(true);
      styleConfigurationWidget.setStyle(style, selectedType);
    }
    else {
      styleConfigurationWidget.setVisible(false);
    }
  }
 
  private void itemSelected() {
    IStructuredSelection selection = (IStructuredSelection) mTypeList.getSelection();

    Type selectedType = (Type) selection.getFirstElement();

    if( selectedType != null) {
     
      AnnotationStyle style = getWorkingCopyAnnotationStyle(selectedType);
 
      if (style == null) {
        style = new AnnotationStyle(selectedType.getName(), AnnotationStyle.DEFAULT_STYLE,
                AnnotationStyle.DEFAULT_COLOR, 0);
      }
 
      mStyleCombo.setText(style.getStyle().name());
      mStyleCombo.setEnabled(true);
 
      Color color = style.getColor();
      mColorSelector.setColorValue(new RGB(color.getRed(), color.getGreen(), color.getBlue()));
      mColorSelector.setEnabled(true);

      moveLayerUpButton.setEnabled(true);
      moveLayerDownButton.setEnabled(true);
     
      updateCustomStyleControl(style, selectedType);
    }
    else {
      // no type selected
      mStyleCombo.setEnabled(false);
      mColorSelector.setEnabled(false);
     
      moveLayerUpButton.setEnabled(false);
      moveLayerDownButton.setEnabled(false);
      styleConfigurationWidget.setVisible(false);
    }
  }
 

 
  /**
   * Creates the annotation property page controls.
   */
  @Override
  protected Control createContents(Composite parent) {

    // Set a size to fix UIMA-2115
    setSize(new Point(350,350));
   
    TypeSystem typeSystem = getTypeSystem();

    if (typeSystem == null) {
     
      isTypeSystemPresent = false;
     
      Label message = new Label(parent, SWT.NONE);
      message.setText("Please set a valid typesystem file first.");

      return message;
    }

    Composite base = new Composite(parent, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.numColumns = 2;
    base.setLayout(layout);

    // type text
    Label typeText = new Label(base, SWT.NONE);
    typeText.setText("Annotation types:");

    GridData typeTextGridData = new GridData();
    typeTextGridData.horizontalSpan = 2;
    typeText.setLayoutData(typeTextGridData);

    // type list
    mTypeList = new TableViewer(base, SWT.SINGLE | SWT.BORDER | SWT.V_SCROLL);
    GridData typeListGridData = new GridData();
    typeListGridData.horizontalAlignment = SWT.FILL;
    typeListGridData.grabExcessVerticalSpace = true;
    typeListGridData.verticalAlignment = SWT.FILL;
    typeListGridData.verticalSpan = 2;
    mTypeList.getControl().setLayoutData(typeListGridData);

    mTypeList.getTable().setHeaderVisible(true);

    TableViewerColumn typeColumn = new TableViewerColumn(mTypeList, SWT.LEFT);
    typeColumn.getColumn().setText("Type");
    typeColumn.getColumn().setWidth(250);
    typeColumn.setLabelProvider(new CellLabelProvider(){
      @Override
      public void update(ViewerCell cell) {

        Type type = (Type) cell.getElement();

        cell.setText(type.getName());
      }});

    TableViewerColumn layerColumn = new TableViewerColumn(mTypeList, SWT.LEFT);
    layerColumn.getColumn().setText("Layer");
    layerColumn.getColumn().setWidth(50);

    layerColumn.setLabelProvider(new CellLabelProvider() {

      @Override
      public void update(ViewerCell cell) {

        Type type = (Type) cell.getElement();

        AnnotationStyle style = getWorkingCopyAnnotationStyle(type);

        cell.setText(Integer.toString(style.getLayer()));
      }});

    Type annotationType = typeSystem.getType(CAS.TYPE_NAME_ANNOTATION);

    List<Type> types = typeSystem.getProperlySubsumedTypes(annotationType);

    for (Type type : types) {
      // inserts objects with type Type
      mTypeList.add(type);
    }
   
    mTypeList.add(annotationType);
   
    mTypeList.addSelectionChangedListener(new ISelectionChangedListener() {

      public void selectionChanged(SelectionChangedEvent event) {
        itemSelected();
      }
    });
   
    Composite settingsComposite = new Composite(base, SWT.NONE);

    GridLayout settingsLayout = new GridLayout();
    settingsLayout.numColumns = 2;
    settingsComposite.setLayout(settingsLayout);

    // text style combo
    Label styleText = new Label(settingsComposite, SWT.READ_ONLY);

    styleText.setText("Style:");

    // style combo
    mStyleCombo = new Combo(settingsComposite, SWT.READ_ONLY | SWT.DROP_DOWN);
    mStyleCombo.setEnabled(false);
    mStyleCombo.addSelectionListener(new SelectionListener() {
      public void widgetSelected(SelectionEvent e) {
       
        AnnotationStyle style = getWorkingCopyAnnotationStyle(getSelectedType());
       
        AnnotationStyle newStyle = new AnnotationStyle(style.getAnnotation(), AnnotationStyle.Style
                .valueOf(mStyleCombo.getText()), style.getColor(), style.getLayer(), style.getConfiguration());
       
        updateCustomStyleControl(newStyle, getSelectedType());
       
        // Is there a nice way to do this ?!
        if (styleConfigurationWidget.isVisible()) {
          String configString = styleConfigurationWidget.getConfiguration();
       
          if (configString != null) {
            newStyle = new AnnotationStyle(newStyle.getAnnotation(), newStyle.getStyle(),
                newStyle.getColor(), newStyle.getLayer(), configString);
          }
        }
       
        setAnnotationStyle(newStyle);
      }
       

      public void widgetDefaultSelected(SelectionEvent e) {
        // called when enter is pressed, not needed
      }

    });
    AnnotationStyle.Style possibleStyles[] = AnnotationStyle.Style.values();

    for (AnnotationStyle.Style style : possibleStyles) {
      mStyleCombo.add(style.name());
    }

    // text color label
    Label colorText = new Label(settingsComposite, SWT.NONE);
    colorText.setText("Color:");

    mColorSelector = new ColorSelector(settingsComposite);
    mColorSelector.setEnabled(false);
    mColorSelector.addListener(new IPropertyChangeListener() {
      public void propertyChange(PropertyChangeEvent event) {
        AnnotationStyle style = getWorkingCopyAnnotationStyle( getSelectedType());

        RGB colorRGB = mColorSelector.getColorValue();

        Color color = new Color(colorRGB.red, colorRGB.green, colorRGB.blue);

        setAnnotationStyle(new AnnotationStyle(
                style.getAnnotation(), style.getStyle(),
                color, style.getLayer(), style.getConfiguration()));
      }
    });

    moveLayerUpButton = new Button(settingsComposite, SWT.NONE);
    moveLayerUpButton.setText("Move layer up");
    GridDataFactory.fillDefaults().span(2, 1).applyTo(moveLayerUpButton);
    moveLayerUpButton.addSelectionListener(new SelectionListener() {

      public void widgetDefaultSelected(SelectionEvent e) {
      }

      public void widgetSelected(SelectionEvent e) {
        AnnotationStyle style = getWorkingCopyAnnotationStyle(getSelectedType());

        setAnnotationStyle(new AnnotationStyle(
                style.getAnnotation(), AnnotationStyle.Style.valueOf(mStyleCombo.getText()),
                style.getColor(), style.getLayer() + 1, style.getConfiguration()));

        mTypeList.update(getSelectedType(), null);
      }
    });

    moveLayerDownButton = new Button(settingsComposite, SWT.NONE);
    moveLayerDownButton.setText("Move layer down");
    GridDataFactory.fillDefaults().span(2, 1).applyTo(moveLayerDownButton);

    moveLayerDownButton.addSelectionListener(new SelectionListener() {

      public void widgetDefaultSelected(SelectionEvent e) {
      }

      public void widgetSelected(SelectionEvent e) {
       
        AnnotationStyle style = getWorkingCopyAnnotationStyle(getSelectedType());

        if (style.getLayer() - 1 >= 0) {
          setAnnotationStyle(new AnnotationStyle(style
                  .getAnnotation(), AnnotationStyle.Style.valueOf(mStyleCombo.getText()),
                  style.getColor(), style.getLayer() - 1, style.getConfiguration()));

          mTypeList.update(getSelectedType(), null);
        }
      }
    });

    // Insert style dependent configuration widget
    styleConfigurationWidget = new TagStyleConfigWidget(settingsComposite);
    GridDataFactory.fillDefaults().span(2, 1).applyTo(styleConfigurationWidget);
    styleConfigurationWidget.setVisible(false);
    styleConfigurationWidget.addListener(new CustomStyleConfigChangeListener() {
      public void styleChanged(String configuration) {
        AnnotationStyle style = getWorkingCopyAnnotationStyle(getSelectedType());
       
        setAnnotationStyle(new AnnotationStyle(style.getAnnotation(),
                style.getStyle(), style.getColor(), style.getLayer(), configuration));
      }
    });
   
    // There is always at least the AnnotationFS type
    mTypeList.getTable().select(0);

    if (mTypeList.getTable().getSelectionIndex() != -1) {
      itemSelected();
    }

    return base;
  }

  protected abstract boolean saveChanges(Collection<AnnotationStyle> changedStyles);
 
  /**
   * Executed after the OK button was pressed.
   */
  @Override
  public boolean performOk() {
   
    if (!isTypeSystemPresent)
      return true;
   
    if (!saveChanges(changedStyles.values()))
      return false;
   
    changedStyles.clear();
   
    return true;
  }
}
TOP

Related Classes of org.apache.uima.caseditor.ui.property.AnnotationPropertyPage

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.