JSplash extends JWindow : Splash Screen « Swing JFC « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Swing JFC » Splash Screen 




JSplash extends JWindow
    
/*
 * Copyright (C) 2004 Giuseppe MANNA
 
 * This file is part of FreeReportBuilder
 
 * FreeReportBuilder 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 2
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 */

import java.awt.*;
import javax.swing.border.*;
import javax.swing.*;

public final class JSplash extends JWindow
{
   private JLabel lblVersion = new JLabel();

   public JSplash()
   {
      init();
      center();
   }

   private void init()
   {
      JPanel    pnlImage   = new JPanel();
      ImageIcon image   = new ImageIcongetClass().getResource"img/logo.jpg" ) );
      JLabel    lblBack = new JLabelimage );
      Border    raisedbevel  = BorderFactory.createRaisedBevelBorder();
      Border    loweredbevel = BorderFactory.createLoweredBevelBorder();

      lblBack.setBounds00, image.getIconWidth(), image.getIconHeight() );
      getLayeredPane().addlblBack, new IntegerInteger.MIN_VALUE ) );

      pnlImage.setLayoutnull );
      pnlImage.setOpaquefalse );
      pnlImage.setBorderBorderFactory.createCompoundBorderraisedbevel, loweredbevel ) );

      pnlImage.addthis.lblVersion );

      this.lblVersion.setForegroundColor.white );
      this.lblVersion.setFontnew Font"Dialog", Font.PLAIN, 12 ) );
      this.lblVersion.setBounds156912020 );

      setContentPanepnlImage );
      setSizeimage.getIconWidth(), image.getIconHeight() );
   }
   
   private void center()
   {
      Dimension scr = Toolkit.getDefaultToolkit().getScreenSize();
      int       nX  = (int) (scr.getWidth()  - getWidth()  ) 2;
      int       nY  = (int) (scr.getHeight() - getHeight() ) 2;

      setLocationnX, nY );
   }
}

   
    
    
    
  














Related examples in the same category
1.A simple application to show a title screen in the center of the screenA simple application to show a title screen in the center of the screen
2.A simple Splash screen
3.Simple splash screenSimple splash screen
4.A splash screen for an application
5.A progress bar indicating the progress of application initialization
6.Class representing an application splash screenClass representing an application splash screen
7.Splash Screen based on JWindowSplash Screen based on JWindow
8.SplashScreen extends JWindowSplashScreen extends JWindow
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.