Package charva.awt

Examples of charva.awt.Insets


    }

    /** Returns the insets of the border.
     */
    public Insets getBorderInsets(Component component_) {
  return new Insets(_top, _left, _bottom, _right);
    }
View Full Code Here


  return new Dimension(this.getWidth(), this.getHeight());
    }

    public int getWidth() {
  Container parent = getParent();
  Insets insets = parent.getInsets();
  int availableWidth = parent.getSize().width -
      insets.left - insets.right;

  return availableWidth;
    }
View Full Code Here

                Toolkit.getDefaultToolkit().close();
        }
    }

    private CharvaCommander() {
        this._insets = new Insets(0, 0, 0, 0);
        setBackground(BACKGROUND_COLOR);
        setForeground(FOREGROUND_COLOR);
        JPanel content = (JPanel) getContentPane();
        new ButtonPanel();
View Full Code Here

TOP

Related Classes of charva.awt.Insets

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.