Swing/RoundImageButton の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/RoundImageButton へ行く。
- Swing/RoundImageButton の差分を削除
--- category: swing folder: RoundImageButton title: ImageIconの形でJButtonを作成 tags: [JButton, Shape, ImageIcon] author: aterai pubdate: 2008-07-21T16:27:56+09:00 description: 任意のShapeとその形に透過色を設定した画像を使ってJButtonを作成します。 image: https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTSO4fquKI/AAAAAAAAAic/UdMAZSREN1U/s800/RoundImageButton.png hreflang: href: https://java-swing-tips.blogspot.com/2008/07/create-round-image-jbutton.html lang: en --- * 概要 [#summary] 任意の`Shape`とその形に透過色を設定した画像を使って`JButton`を作成します。 #download(https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTSO4fquKI/AAAAAAAAAic/UdMAZSREN1U/s800/RoundImageButton.png) * サンプルコード [#sourcecode] #code(link){{ class RoundButton extends JButton { protected Shape base; protected Shape shape public RoundButton() { this(null, null); } public RoundButton(Icon icon) { this(null, icon); } public RoundButton(String text) { this(text, null); } public RoundButton(Action a) { this(); setAction(a); } public RoundButton(String text, Icon icon) { setModel(new DefaultButtonModel()); init(text, icon); if (icon == null) { return; } setBorder(BorderFactory.createEmptyBorder(1, 1, 1, 1)); setBackground(Color.BLACK); setContentAreaFilled(false); setFocusPainted(false); // setVerticalAlignment(SwingConstants.TOP); setAlignmentY(Component.TOP_ALIGNMENT); initShape(); } protected void initShape() { if (!getBounds().equals(base)) { Dimension s = getPreferredSize(); base = getBounds(); shape = new Ellipse2D.Float(0, 0, s.width - 1, s.height - 1); } } @Override public Dimension getPreferredSize() { Icon icon = getIcon(); Insets i = getInsets(); int iw = Math.max(icon.getIconWidth(), icon.getIconHeight()); return new Dimension(iw + i.right + i.left, iw + i.top + i.bottom); } @Override protected void paintBorder(Graphics g) { initShape(); Graphics2D g2 = (Graphics2D) g.create(); g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2.setColor(getBackground()); // g2.setStroke(new BasicStroke(1f)); g2.draw(shape); g2.dispose(); } @Override public boolean contains(int x, int y) { initShape(); return shape.contains(x, y); // 以下、透過色が0でクリック不可にする場合の例 // or return super.contains(x, y) && ((image.getRGB(x, y) >> 24) & 0xff) > 0; } } }} * 解説 [#explanation] 上記のサンプルでは、`JButton`に円形の画像を貼り付けてボタンを作成しています。 - 円形で同サイズの`PNG`画像(円の外側が透過色)を`3`種類用意し以下のメソッドで`JButton`に設定 -- `setIcon` -- `setPressedIcon` -- `setRolloverIcon` - `setContentAreaFilled(false)`などを設定してボタン自体の描画はしない - `JButton`の推奨、最小、最大サイズを画像のサイズに合わせる -- ただし、縁の線を描画するため、画像サイズより上下左右`1px`大きくなるよう`EmptyBorder`を設定 - `contains`をオーバーライドして円の外側をクリックしてもボタンが反応しないようにする -- このサンプルでは、画像の透過色から円を生成している訳ではなく画像のサイズから円図形を別途作成 -- 画像の透過色からクリック可能な領域を設定する場合は[[JComponentの形状定義を変更する>Swing/MoveNonRectangularImage]]を参照 - `paintBorder`をオーバーライドして元の縁は描画せずにその幅の線で独自に円を描画する -- `contains`で使用した図形を利用 ---- - %%ボタンの揃えを変更するために`JPanel`ではなく`Box`を利用しているので`JDK 5`でも`JDK 6`と同じように描画するために`Box#paintComponent`を以下のようにオーバーライド%% `JDK 6`で修正済み -- [https://bugs.openjdk.org/browse/JDK-4907674 JDK-4907674 Box disregards setBackground() even when set Opaque(true) - Java Bug System] -- &ref(https://lh3.googleusercontent.com/_9Z4BYR88imo/TQTSRb592NI/AAAAAAAAAig/4HrfRUSkPxc/s800/RoundImageButton1.png); #code{{ private final Box box = // JDK 6 Box.createHorizontalBox(); // JDK 5 new Box(BoxLayout.X_AXIS) { @Override protected void paintComponent(Graphics g) { if (ui != null) { super.paintComponent(g); } else if (isOpaque()) { g.setColor(getBackground()); g.fillRect(0, 0, getWidth(), getHeight()); } } }; }} * 参考リンク [#reference] // - [http://gimp.blog.shinobi.jp/Entry/18/ アクア風の球体の描き方(GIMPチュートリアル) > ロゴ・ボタン | GIMP思い込みチュートリアル(GIMPの使い方)] - [[JButtonの形を変更>Swing/RoundButton]] - [[JComponentの形状定義を変更する>Swing/MoveNonRectangularImage]] * コメント [#comment] #comment #comment