Package com.sshtools.ui.awt

Examples of com.sshtools.ui.awt.ImageTextLabel


  private Component component;
  private String text;

  TipWindow(Frame owner) {
    super(owner);
    textLabel = new ImageTextLabel() {
      public void paint(Graphics g) {
        super.paint(g);
        g.setColor(getForeground());
        Dimension s = getSize();
        g.drawRect(0, 0, s.width -1 , s.height -1);
View Full Code Here

TOP

Related Classes of com.sshtools.ui.awt.ImageTextLabel

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.