Package mydatagenerator.gui.panels.common

Source Code of mydatagenerator.gui.panels.common.BusyLabelPanel

package mydatagenerator.gui.panels.common;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.LinearGradientPaint;

import org.jdesktop.swingx.JXBusyLabel;
import org.jdesktop.swingx.JXPanel;
import org.jdesktop.swingx.painter.MattePainter;
import org.jdesktop.swingx.painter.Painter;

/**
* Create a Panel with an animation to indicate that a processing is in action. *
* Note: this animation can't appear if the required time is too little
*
* (The animation is provided by the Swingx library)
*
*/
public class BusyLabelPanel extends JXPanel {
 
  private JXBusyLabel jxBusyLabel;

  /**
   * Constructor
   */
  public BusyLabelPanel() {
   
    jxBusyLabel = new JXBusyLabel();
     
    // Start the animation
    jxBusyLabel.setBusy(true)
    jxBusyLabel.setText("Processing...");
    jxBusyLabel.setVisible(false); //show it only when a processing is in action
    jxBusyLabel.setEnabled(false);
     
    // set the transparency of the JXPanel to 50% transparent
    this.setAlpha(0.7f);   
    
    JXPanel busylabels = new JXPanel(new FlowLayout(FlowLayout.CENTER, 40, 5));
    busylabels.add(jxBusyLabel);   
    
    this.add(busylabels, BorderLayout.CENTER);   
  }
 
  public JXBusyLabel getJxBusyLabel() {
    return jxBusyLabel;
  }

  public void setJxBusyLabel(JXBusyLabel jxBusyLabel) {
    this.jxBusyLabel = jxBusyLabel;
 

}
TOP

Related Classes of mydatagenerator.gui.panels.common.BusyLabelPanel

TOP
Copyright © 2018 www.massapi.com. 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.