/* * Copyright (C) 2013, VistaTEC or third-party contributors as indicated * by the @author tags or express copyright attribution statements applied by * the authors. All third-party contributions are distributed under license by * VistaTEC. * * This file is part of Ocelot. * * Ocelot is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Ocelot is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, write to: * * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 * USA * * Also, see the full LGPL text here: <http://www.gnu.org/copyleft/lesser.html> */ package com.vistatec.ocelot; import java.awt.BorderLayout; import java.awt.Dimension; import javax.swing.JPanel; import com.google.common.eventbus.Subscribe; import com.google.inject.Inject; import com.vistatec.ocelot.config.ConfigTransferService.TransferException; import com.vistatec.ocelot.config.LqiConfigService; import com.vistatec.ocelot.events.ItsSelectionEvent; import com.vistatec.ocelot.events.OpenFileEvent; import com.vistatec.ocelot.events.SegmentSelectionEvent; import com.vistatec.ocelot.events.api.OcelotEventQueue; import com.vistatec.ocelot.events.api.OcelotEventQueueListener; import com.vistatec.ocelot.its.model.LanguageQualityIssue; import com.vistatec.ocelot.its.model.Provenance; import com.vistatec.ocelot.its.view.LanguageQualityIssuePropsPanel; import com.vistatec.ocelot.its.view.ProvenanceView; import com.vistatec.ocelot.segment.model.OcelotSegment; import com.vistatec.ocelot.segment.view.SegmentDetailView; /** * Detail pane displaying data related to a selected segment in the SegmentView. */ public class DetailView extends JPanel implements OcelotEventQueueListener { private static final long serialVersionUID = 1L; private LanguageQualityIssuePropsPanel lqiDetailView; private ProvenanceView provDetailView; private SegmentDetailView segDetailView; private OcelotSegment selectedSegment; private LqiConfigService lqiService; private final OcelotEventQueue eventQueue; @Inject public DetailView(OcelotEventQueue eventQueue, LqiConfigService lqiService) { this.eventQueue = eventQueue; this.lqiService = lqiService; setLayout(new BorderLayout()); setPreferredSize(new Dimension(500, 250)); } public void clearDisplay() { if (lqiDetailView != null) { lqiDetailView.clearDisplay(); } if (provDetailView != null) { provDetailView.clearDisplay(); } if (segDetailView != null) { segDetailView.clearDisplay(); } } @Subscribe public void metadataSelected(ItsSelectionEvent e) { if (e.getITSMetadata() instanceof LanguageQualityIssue) { removeSegmentDetailView(); removeProvenanceDetailView(); addLQIDetailView(); lqiDetailView.setMetadata(selectedSegment, (LanguageQualityIssue)e.getITSMetadata()); } else if (e.getITSMetadata() instanceof Provenance) { removeSegmentDetailView(); removeLQIDetailView(); addProvenanceDetailView(); provDetailView.setMetadata(selectedSegment, (Provenance)e.getITSMetadata()); } revalidate(); } @Subscribe public void setSegment(SegmentSelectionEvent e) { try{ selectedSegment = e.getSegment(); removeProvenanceDetailView(); removeLQIDetailView(); addSegmentDetailView(); segDetailView.setSegment(selectedSegment); revalidate(); }catch (Exception ex){ System.out.println("EXCEPTION"); System.out.println(ex.getClass().getName()); System.out.println(ex.getMessage()); ex.printStackTrace(); } } @Subscribe public void openFile(OpenFileEvent e) { showSegmentDetailView(null); } private void showSegmentDetailView(OcelotSegment segment) { removeProvenanceDetailView(); removeLQIDetailView(); addSegmentDetailView(); segDetailView.setSegment(segment); } public void addProvenanceDetailView() { if (provDetailView == null) { provDetailView = new ProvenanceView(); add(provDetailView); } } public void removeProvenanceDetailView() { if (provDetailView != null) { remove(provDetailView); provDetailView = null; } } public void addLQIDetailView() { if (lqiDetailView == null) { try { lqiDetailView = new LanguageQualityIssuePropsPanel(eventQueue, lqiService.readLQIConfig()); add(lqiDetailView); } catch (TransferException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } public void removeLQIDetailView() { if (lqiDetailView != null) { remove(lqiDetailView); lqiDetailView = null; } } public void addSegmentDetailView() { if (segDetailView == null) { segDetailView = new SegmentDetailView(); add(segDetailView); } } public void removeSegmentDetailView() { if (segDetailView != null) { remove(segDetailView); segDetailView = null; } } }