Package org.tomighty.ui.theme

Examples of org.tomighty.ui.theme.Theme.paint()


  @Override
  public void paint(Graphics g, JComponent component) {
    Canvas canvas = new Canvas(component.getSize());
    Theme theme = look.theme();
    theme.paint(canvas);
    canvas.drawBorder(look.colors().shadow());
    g.drawImage(canvas.image(), 0, 0, null);
  }

}
View Full Code Here

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.