Package org.jamesii.gui.utils

Examples of org.jamesii.gui.utils.ImagePanel


    JPanel splashPanel = new JPanel(new BorderLayout());

    progressLabel = new JLabel();
    progressLabel.setBorder(new EmptyBorder(2, 5, 2, 5));
    imagePanel = new ImagePanel(image);
    imagePanel.setLayout(new BorderLayout());
    imagePanel.setBackground(new Color(0, 0, 0, 0));
    imagePanel.add(progressLabel, BorderLayout.PAGE_END);

    JPanel appInfoPanel = new JPanel(new BorderLayout());
View Full Code Here


  protected JComponent createPage() {
    JPanel panel = new JPanel();
    panel.setLayout(new BorderLayout(15, 0));

    if (welcomeImage != null) {
      ImagePanel imagePanel = new ImagePanel(welcomeImage);
      panel.add(imagePanel, BorderLayout.LINE_START);
    }

    if (welcomeComponent != null) {
      panel.add(welcomeComponent, BorderLayout.CENTER);
View Full Code Here

TOP

Related Classes of org.jamesii.gui.utils.ImagePanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.