/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OpenFlexo 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.ve; import java.awt.Dimension; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.JComponent; import org.openflexo.ApplicationContext; import org.openflexo.components.ProgressWindow; import org.openflexo.fge.Drawing; import org.openflexo.fge.controller.DrawingController; import org.openflexo.fge.view.DrawingView; import org.openflexo.foundation.FlexoModelObject; import org.openflexo.foundation.InspectorGroup; import org.openflexo.foundation.Inspectors; import org.openflexo.foundation.view.View; import org.openflexo.foundation.view.ViewDefinition; import org.openflexo.localization.FlexoLocalization; import org.openflexo.module.FlexoModule; import org.openflexo.module.Module; import org.openflexo.module.external.ExternalOEModule; import org.openflexo.ve.controller.VEController; import org.openflexo.ve.shema.VEShemaController; import org.openflexo.view.controller.FlexoController; /** * Ontology Editor module * * @author yourname */ public class VEModule extends FlexoModule implements ExternalOEModule { private static final Logger logger = Logger.getLogger(VEModule.class.getPackage().getName()); private static final InspectorGroup[] inspectorGroups = new InspectorGroup[] { Inspectors.VE }; private DrawingController<? extends Drawing<? extends FlexoModelObject>> screenshotController; private DrawingView<? extends Drawing<? extends FlexoModelObject>> screenshot = null; private boolean drawWorkingArea; private FlexoModelObject screenshotObject; public VEModule(ApplicationContext applicationContext) throws Exception { super(applicationContext); VEPreferences.init(); ProgressWindow.setProgressInstance(FlexoLocalization.localizedForKey("build_editor")); } @Override protected FlexoController createControllerForModule() { return new VEController(this); } @Override public Module getModule() { return Module.VE_MODULE; } @Override public InspectorGroup[] getInspectorGroups() { return inspectorGroups; } public VEController getOEController() { return (VEController) getFlexoController(); } @Override public float getScreenshotQuality() { float reply = Float.valueOf(VEPreferences.getScreenshotQuality()) / 100f; if (reply > 1) { return 1f; } if (reply < 0.1f) { return 0.1f; } return reply; } @Override public JComponent createScreenshotForShema(ViewDefinition viewDefinition) { View target = viewDefinition.getShema(); if (target == null) { if (logger.isLoggable(Level.SEVERE)) { logger.severe("Cannot create screenshot for null target!"); } return null; } screenshotObject = target; // prevent process to be marked as modified during screenshot generation target.setIgnoreNotifications(); screenshotController = new VEShemaController(getOEController(), target, true); screenshot = screenshotController.getDrawingView(); drawWorkingArea = screenshot.getDrawingGraphicalRepresentation().getDrawWorkingArea(); screenshot.getDrawingGraphicalRepresentation().setDrawWorkingArea(false); screenshot.getPaintManager().disablePaintingCache(); screenshot.validate(); Dimension d = screenshot.getComputedMinimumSize(); d.height += 20; d.width += 20; screenshot.setSize(d); screenshot.setPreferredSize(d); target.resetIgnoreNotifications(); return screenshot; } @Override public void finalizeScreenshotGeneration() { if (screenshot != null) { screenshotObject.setIgnoreNotifications(); screenshot.getDrawingGraphicalRepresentation().setDrawWorkingArea(drawWorkingArea); screenshotObject.resetIgnoreNotifications(); screenshotController.delete(); if (screenshot.getParent() != null) { screenshot.getParent().remove(screenshot); } screenshotController = null; screenshot = null; } } }