5

線形グラデーションを適用するために、次の例を試しましたGradientPaintDemo2D

うまく機能しますが、グラデーションカラーをJavaSwingのマットボーダーに適用したかったのです。私はこれを試しました:

javax.swing.BorderFactory.createMatteBorder(1, 50, 1, 50, color)

しかし、それは1つのタイプを適用するためだけでありColor、ではありませんGradientPaint

ご存知のGradientPaintように、上記のリンク先の例に示すように、2つの色が完全に混合されています。では、この場合の代替の答えは何ですか?

4

2 に答える 2

10

このような特定のケースでは、独自の境界線を作成する必要があります。
グラデーション境界線クラスの例を次に示します。

public static class GradientBorder implements Border
{
    private Insets margin;

    public GradientBorder ( int top, int left, int bottom, int right )
    {
        super ();
        margin = new Insets ( top, left, bottom, right );
    }

    public void paintBorder ( Component c, Graphics g, int x, int y, int width, int height )
    {
        Graphics2D g2d = ( Graphics2D ) g;
        g2d.setPaint ( new GradientPaint ( x, y, Color.RED, x + width, y, Color.BLUE ) );

        Area border = new Area ( new Rectangle ( x, y, width, height ) );
        border.subtract ( new Area ( new Rectangle ( x + margin.left, y + margin.top,
                width - margin.left - margin.right, height - margin.top - margin.bottom ) ) );
        g2d.fill ( border );
    }

    public Insets getBorderInsets ( Component c )
    {
        return margin;
    }

    public boolean isBorderOpaque ()
    {
        return true;
    }
}

もちろん、他のグラデーションの方向や色などを指定することもできます。それらの初期化をコンストラクターに入れることもできます(必要な場合)。これを使用するには、(任意のJComponentサクセサで)境界線を設定する必要があります。

jComponent.setBorder ( new GradientBorder ( 25, 50, 25, 50 ) );

基本的に、この方法で好きなボーダーを任意のカラーリング/アニメーション/シェイプなどで作成できます

ちなみに、半透明の境界線(たとえば、半透明の色、丸みを帯びた角などの形状)を作成する場合は、isBorderOpaque()メソッドがtrueを返す必要があります。そうでない場合は、コンポーネントの再描画の問題に対処する必要があります。

于 2012-04-09T07:39:50.140 に答える
8

新しいMatteBorder(int、int、int、int、javax.swing.Icon)を使用するのはどうですか

//Another example:
import java.awt.*;
import java.awt.geom.*;
import javax.swing.*;

public class GradientMatteBorderTest {
  public JComponent makeUI() {
    Icon icon = new Icon() {
      @Override public void paintIcon(Component c, Graphics g, int x, int y) {
        Graphics2D g2  = (Graphics2D)g.create();
        Point2D start  = new Point2D.Float(0f, 0f);
        Point2D end    = new Point2D.Float(99f, 0f);
        float[] dist   = {0.0f, 0.5f, 1.0f};
        Color[] colors = { Color.RED, Color.YELLOW, Color.GREEN };
        g2.setPaint(new LinearGradientPaint(start, end, dist, colors));
        g2.fillRect(x, y, 100, 10);
        g2.dispose();
      }
      @Override public int getIconWidth()  { return 100; }
      @Override public int getIconHeight() { return 10;  }
    };
    JLabel label = new JLabel("GradientMatteBorder");
    label.setBorder(BorderFactory.createMatteBorder(10,5,10,0,icon));
    JPanel p = new JPanel(new BorderLayout());
    p.setBorder(BorderFactory.createEmptyBorder(20,20,20,20));
    p.add(label, BorderLayout.NORTH);
    return p;
  }
  public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
      @Override public void run() {
        createAndShowGUI();
      }
    });
  }
  public static void createAndShowGUI() {
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    f.getContentPane().add(new GradientMatteBorderTest().makeUI());
    f.setSize(320, 240);
    f.setLocationRelativeTo(null);
    f.setVisible(true);
  }
}
于 2012-04-09T08:42:28.057 に答える