com.actelion.research.orbit.imageAnalysis.components.SplashScreenTransparent Maven / Gradle / Ivy
Show all versions of orbit-image-analysis Show documentation
/*
* Orbit, a versatile image analysis software for biological image-based quantification.
* Copyright (C) 2009 - 2018 Idorsia Pharmaceuticals Ltd., Hegenheimermattweg 91, CH-4123 Allschwil, Switzerland.
*
* This program 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.
*
* This program 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 this program. If not, see .
*
*/
package com.actelion.research.orbit.imageAnalysis.components;
import java.awt.*;
import java.awt.image.ImageObserver;
import java.net.URL;
/**
* Present a simple graphic to the user upon launch of the application, to
* provide a faster initial response than is possible with the main window.
*
* Manuel: Modified, so that it works with transparent images, too.
*
*
Adapted from an
* item
* on Sun's Java Developer Connection.
*
*
This splash screen appears within about 2.5 seconds on a development
* machine. The main screen takes about 6.0 seconds to load, so use of a splash
* screen cuts down the initial display delay by about 55 percent.
*
*
When JDK 6+ is available, its java.awt.SplashScreen class should be used instead
* of this class.
*/
final class SplashScreenTransparent extends Frame {
/**
* Construct using an image for the splash screen.
*
* @param aImageId must have content, and is used by
* {@link Class#getResource(String)} to retrieve the splash screen image.
*/
SplashScreenTransparent(String aImageId) {
/*
* Implementation Note
* Args.checkForContent is not called here, in an attempt to minimize
* class loading.
*/
if (aImageId == null || aImageId.trim().length() == 0) {
throw new IllegalArgumentException("Image Id does not have content.");
}
fImageId = aImageId;
}
/**
* Show the splash screen to the end user.
*
*
Once this method returns, the splash screen is realized, which means
* that almost all work on the splash screen should proceed through the event
* dispatch thread. In particular, any call to dispose for the
* splash screen must be performed in the event dispatch thread.
*/
void splash() {
initImageAndTracker();
//setSize(fImage.getWidth(NO_OBSERVER), fImage.getHeight(NO_OBSERVER));
Dimension dimImageSize = new Dimension(1024, 671);
setLocation((getToolkit().getScreenSize().width - dimImageSize.width) / 2,
(getToolkit().getScreenSize().height - dimImageSize.height) / 2);
setSize(dimImageSize);
Robot m_robot = null;
Image m_imageCapture = null;
Rectangle m_rect = new Rectangle(getLocation().x, getLocation().y, getSize().width, getSize().height);
try {
m_robot = new Robot();
m_imageCapture = m_robot.createScreenCapture(m_rect);
} catch (AWTException e) {
e.printStackTrace();
}
fMediaTracker.addImage(fImage, 0);
fMediaTracker.addImage(m_imageCapture, 1);
//fMediaTracker.addImage(fImage, IMAGE_ID);
try {
//fMediaTracker.waitForID(IMAGE_ID);
fMediaTracker.waitForAll();
} catch (InterruptedException ex) {
System.out.println("Cannot track image load.");
}
SplashWindow splashWindow = new SplashWindow(this, fImage, m_imageCapture);
}
// PRIVATE
private final String fImageId;
private MediaTracker fMediaTracker;
private Image fImage;
private static final ImageObserver NO_OBSERVER = null;
private static final int IMAGE_ID = 0;
private void initImageAndTracker() {
fMediaTracker = new MediaTracker(this);
URL imageURL = SplashScreenTransparent.class.getResource(fImageId);
fImage = Toolkit.getDefaultToolkit().getImage(imageURL);
}
private final class SplashWindow extends Window {
SplashWindow(Frame aParent, Image aImage, Image backImage) {
super(aParent);
this.fImage = aImage;
this.backImage = backImage;
setSize(fImage.getWidth(NO_OBSERVER), fImage.getHeight(NO_OBSERVER));
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
Rectangle window = getBounds();
setLocation((screen.width - window.width) / 2, (screen.height - window.height) / 2);
setVisible(true);
}
@Override
public void paint(Graphics graphics) {
if (fImage != null && backImage != null) {
//graphics.drawImage(fImage,0,0,this);
Image imgTemp = createImage(fImage.getWidth(this), fImage.getHeight(this));
Graphics gfxTemp = imgTemp.getGraphics();
gfxTemp.drawImage(backImage, 0, 0, backImage.getWidth(this), backImage.getHeight(this), this);
gfxTemp.drawImage(fImage, 0, 0, fImage.getWidth(this), fImage.getHeight(this), this);
graphics.drawImage(imgTemp, 0, 0, imgTemp.getWidth(this), imgTemp.getHeight(this), this);
}
}
private Image fImage;
private Image backImage;
}
/**
* Developer test harness shows the splash screen for a fixed length of
* time, without launching the full application.
*/
public static void main(String... aArgs) {
SplashScreenTransparent splashScreen = new SplashScreenTransparent("/orbit_splash.png");
splashScreen.splash();
try {
Thread.sleep(2000);
} catch (InterruptedException ex) {
System.out.println(ex);
}
System.exit(0);
}
}