Swing/WavyLineSeparator のバックアップ(No.4)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/WavyLineSeparator へ行く。
- 1 (2006-06-01 (木) 09:28:20)
- 2 (2006-06-19 (月) 06:28:53)
- 3 (2006-06-19 (月) 14:39:12)
- 4 (2006-06-21 (水) 18:42:49)
- 5 (2006-06-22 (木) 18:04:41)
- 6 (2007-01-11 (木) 12:11:35)
- 7 (2007-03-14 (水) 11:31:49)
- 8 (2007-03-28 (水) 18:43:22)
- 9 (2007-10-16 (火) 15:56:39)
- 10 (2009-11-05 (木) 18:24:47)
- 11 (2010-11-15 (月) 14:55:16)
- 12 (2013-02-28 (木) 14:33:31)
- 13 (2014-11-18 (火) 16:09:46)
- 14 (2014-12-01 (月) 17:26:21)
- 15 (2016-01-29 (金) 14:02:05)
- 16 (2017-06-30 (金) 13:52:10)
- 17 (2018-06-01 (金) 14:42:37)
- 18 (2020-05-30 (土) 01:08:58)
- 19 (2021-11-12 (金) 13:56:05)
TITLE:Separatorを波線で表示
Separatorを波線で表示
編集者:Terai Atsuhiro
作成日:2006-06-19
更新日:2021-11-12 (金) 13:56:05
概要
波線を使ったSeparatorを作成します。
#screenshot
サンプルコード
class WavyLineSeparator extends JSeparator{ private final static int ICONWIDTH = 3; private final Icon tileIcon; public WavyLineSeparator() { this(SwingConstants.HORIZONTAL); } public WavyLineSeparator(int orientation) { super(orientation); tileIcon = new WavyLineIcon(); setBorder(BorderFactory.createEmptyBorder(1,1,1,1)); Insets i = getInsets(); if(orientation==SwingConstants.HORIZONTAL) { int w = ICONWIDTH+i.top+i.bottom; setPreferredSize(new Dimension(100, w)); setMinimumSize(new Dimension(0, w)); setMaximumSize(new Dimension(Integer.MAX_VALUE, w)); }else{ int w = ICONWIDTH+i.left+i.right; setPreferredSize(new Dimension(w, 10)); setMinimumSize(new Dimension(w, 0)); setMaximumSize(new Dimension(w, Integer.MAX_VALUE)); } } public void paint(Graphics g) { int xpos, ypos; int tileW = tileIcon.getIconWidth(); int tileH = tileIcon.getIconHeight(); Insets i = getInsets(); Graphics cg; cg = g.create(); cg.setClip(0, 0, getWidth(), getHeight()); if(getOrientation()==SwingConstants.HORIZONTAL) { for(xpos = i.left; getWidth() - xpos > 0; xpos += tileW) { tileIcon.paintIcon(this, cg, xpos, i.top); } }else{ for(ypos = i.top; getHeight() - ypos > 0; ypos += tileH) { tileIcon.paintIcon(this, cg, i.left, ypos); } } cg.dispose(); } class WavyLineIcon implements Icon { public void paintIcon(Component c, Graphics g, int x, int y) { Graphics2D g2 = (Graphics2D)g; g2.setColor(SystemColor.textText); g2.translate(x,y); if(getOrientation()==SwingConstants.HORIZONTAL) { g2.drawLine( 0, 2, 0, 2 ); g2.drawLine( 1, 1, 1, 1 ); g2.drawLine( 2, 0, 3, 0 ); g2.drawLine( 4, 1, 4, 1 ); g2.drawLine( 5, 2, 5, 2 ); }else{ g2.drawLine( 0, 0, 0, 0 ); g2.drawLine( 1, 1, 1, 1 ); g2.drawLine( 2, 2, 2, 3 ); g2.drawLine( 1, 4, 1, 4 ); g2.drawLine( 0, 5, 0, 5 ); } g2.translate(-x,-y); } public int getIconWidth() { return (getOrientation()==SwingConstants.HORIZONTAL)? ICONWIDTH*2:ICONWIDTH; } public int getIconHeight() { return (getOrientation()==SwingConstants.HORIZONTAL)? ICONWIDTH:ICONWIDTH*2; } } }
- &jnlp;
- &jar;
- &zip;
解説
水平、垂直用の波パターンIconをそれぞれ作成して、これを順番に並べています。
上記のサンプルでは水平方向限定のセパレーターになります。
コメント
- SwingConstants.HORIZONTALに対応しました。 -- terai