/* * Copyright (c) 2005-2016 Substance Kirill Grouchnikov. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * o Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * o Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * o Neither the name of Substance Kirill Grouchnikov nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package tools.docrobot; import java.awt.Dimension; import java.awt.Graphics; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; import javax.swing.JFrame; import org.fest.swing.core.BasicRobot; import org.fest.swing.core.Robot; import org.fest.swing.edt.GuiActionRunner; import org.fest.swing.edt.GuiTask; import org.fest.swing.timing.Pause; import org.pushingpixels.substance.api.DecorationAreaType; import org.pushingpixels.substance.api.SubstanceLookAndFeel; import org.pushingpixels.substance.api.SubstanceSkin; import org.pushingpixels.substance.internal.utils.SubstanceCoreUtilities; import org.pushingpixels.substance.internal.utils.SubstanceImageCreator; import test.check.SampleFrame; import tools.docrobot.svg.Image_x_generic; /** * The base class for taking a single screenshot for Substance documentation. * * @author Kirill Grouchnikov */ public abstract class BaseRobot { /** * The associated Substance skin. */ protected SubstanceSkin skin; /** * The screenshot filename. */ protected String screenshotFilename; /** * The frame instance. */ protected SampleFrame sf; /** * Creates the new screenshot robot. * * @param skin * The skin. * @param screenshotFilename * The screenshot filename. */ public BaseRobot(SubstanceSkin skin, String screenshotFilename) { this.skin = skin; this.screenshotFilename = screenshotFilename; } /** * Runs the screenshot process. */ public void run() { long start = System.currentTimeMillis(); Robot robot = BasicRobot.robotWithNewAwtHierarchy(); // set skin GuiActionRunner.execute(new GuiTask() { @Override protected void executeInEDT() throws Throwable { SubstanceLookAndFeel.setSkin(skin); JFrame.setDefaultLookAndFeelDecorated(true); } }); robot.waitForIdle(); // create the frame and set the icon image GuiActionRunner.execute(new GuiTask() { @Override protected void executeInEDT() throws Throwable { sf = new SampleFrame(); Image_x_generic original = new Image_x_generic(); original.setDimension(new Dimension(16, 16)); sf.setIconImage(SubstanceImageCreator.getColorSchemeImage(null, original, SubstanceLookAndFeel.getCurrentSkin(sf.getRootPane()) .getActiveColorScheme( DecorationAreaType.PRIMARY_TITLE_PANE), 0.0f)); sf.setSize(340, 254); sf.setLocationRelativeTo(null); sf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); sf.setVisible(true); } }); robot.waitForIdle(); // wait for one second Pause.pause(1000); // make the screenshot GuiActionRunner.execute(new GuiTask() { @Override protected void executeInEDT() throws Throwable { makeScreenshot(); } }); robot.waitForIdle(); // dispose the frame GuiActionRunner.execute(new GuiTask() { @Override protected void executeInEDT() throws Throwable { sf.dispose(); } }); robot.waitForIdle(); long end = System.currentTimeMillis(); System.out.println(this.getClass().getSimpleName() + " : " + (end - start) + "ms"); } /** * Creates the screenshot and saves it on the disk. */ public void makeScreenshot() { BufferedImage bi = SubstanceCoreUtilities.getBlankImage(sf.getWidth(), sf.getHeight()); Graphics g = bi.getGraphics(); sf.paint(g); try { File target = new File(this.screenshotFilename); target.getParentFile().mkdirs(); ImageIO.write(bi, "png", target); } catch (IOException ioe) { ioe.printStackTrace(); } } }