Package org.apache.uima.ruta.testing.ui.views

Source Code of org.apache.uima.ruta.testing.ui.views.OutputFolder

/*
* 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.ruta.testing.ui.views;

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;
import org.eclipse.swt.widgets.Text;

public class OutputFolder extends Composite {

  public OutputFolder(Composite parent) {
    super(parent, SWT.WRAP);
    GridLayout gridLayout = new GridLayout();
    gridLayout.numColumns = 1;
    setLayout(gridLayout);

    TabFolder tFolder = new TabFolder(this, SWT.WRAP);

    // TabItem failures = new TabItem(tFolder, SWT.NONE);
    // failures.setText("Failures");
    // Text failuresText = new Text(tFolder, SWT.BORDER | SWT.MULTI);
    // failuresText.setText("Failures Info");
    // failures.setControl(failuresText);
    //   
    // TabItem falsePositives = new TabItem (tFolder,SWT.NONE);
    // falsePositives.setText("False Positives");
    // Text fPositivesText = new Text (tFolder, SWT.BORDER | SWT.MULTI);
    // fPositivesText.setText("False Positives");
    // falsePositives.setControl(fPositivesText);
    //   
    // TabItem falseNegatives = new TabItem (tFolder,SWT.NONE);
    // falseNegatives.setText("False Negatives");
    // Text fNegativesText = new Text(tFolder, SWT.BORDER | SWT.MULTI);
    // fNegativesText.setText("False Negatives");
    // falseNegatives.setControl(fNegativesText);

    TabItem failuresTab = createTab(tFolder, "Failures", "Insert Failures here");
    TabItem fPositivesTab = createTab(tFolder, "FPositives", "Insert false positives here");
    TabItem fNegativesTab = createTab(tFolder, "FNegatives", "Insert false negatives here");

    GridData tFolderData = new GridData();
    tFolderData.horizontalAlignment = GridData.FILL;
    tFolderData.verticalAlignment = GridData.FILL;
    tFolderData.horizontalSpan = 1;
    tFolderData.grabExcessHorizontalSpace = true;
    tFolderData.grabExcessVerticalSpace = true;
    tFolder.setLayoutData(tFolderData);
  }

  private TabItem createTab(TabFolder tFolder, String name, String input) {
    TabItem tab = new TabItem(tFolder, SWT.NONE);
    tab.setText(name);
    Text text = new Text(tFolder, SWT.BORDER | SWT.MULTI);
    text.setText(input);
    tab.setControl(text);
    return tab;
  }
}
TOP

Related Classes of org.apache.uima.ruta.testing.ui.views.OutputFolder

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.