TITLE:LayoutManagerを拡張して曲線上にコンポーネントを配置

Posted by at 2011-06-27

LayoutManagerを拡張して曲線上にコンポーネントを配置

LayoutManagerを拡張して曲線上にコンポーネントを配置します。

  • &jnlp;
  • &jar;
  • &zip;
CurveLayout.png

サンプルコード

panel2.setLayout(new FlowLayout() {
  public void layoutContainer(Container target) {
    synchronized(target.getTreeLock()) {
      Insets insets = target.getInsets();
      int nmembers  = target.getComponentCount();
      if(nmembers<=0) return;
      int vgap = getVgap();
      int hgap = getHgap();
      int rowh = (target.getHeight()-(insets.top+insets.bottom+vgap*2))/nmembers;
      int x = insets.left + hgap;
      int y = insets.top  + vgap;
      for(int i=0;i<nmembers;i++) {
        Component m = target.getComponent(i);
        if(m.isVisible()) {
          Dimension d = m.getPreferredSize();
          m.setSize(d.width, d.height);
          m.setLocation(x, y);
          y += (vgap + Math.min(rowh, d.height));
          x = (int)(a * Math.sqrt(y));
        }
      }
    }
  }
});

解説

    • panel1 = new JPanel(new FlowLayout(FlowLayout.LEFT));
    • FlowLayout#layoutContainer(...)をオーバーライドして、二次曲線の上にコンポーネントを並べる

コメント