摆动自定义边框 [英] Swing Custom Border

查看:97
本文介绍了摆动自定义边框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么办法来实现自定义的 javax.swing.border.Border 在图像显示?

Is there any way to achieve custom javax.swing.border.Border as shown in image?

推荐答案

您只需要扩展<一个href=\"http://docs.oracle.com/javase/7/docs/api/javax/swing/border/AbstractBorder.html\">AbstractBorder并覆盖其的paintBorder()方法,这里一个相关的例子:

You simply need to extend AbstractBorder and override its paintBorder() method, here is one related example :

import java.awt.*;
import java.awt.event.*;
import java.awt.geom.Line2D;
import java.awt.geom.Line2D.Double;
import javax.swing.*;
import javax.swing.border.AbstractBorder;

public class CustomMarginBorder
{
    private JPanel contentPane;
    private CustomBorder customBorder;

    private void displayGUI()
    {
        JFrame frame = new JFrame("Custom Arrow Border Example");
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        customBorder = new CustomBorder(Color.BLUE, 15);
        contentPane = new JPanel();     
        contentPane.setBorder(customBorder);    

        frame.setContentPane(contentPane);
        frame.setSize(300, 300);
        frame.setLocationByPlatform(true);
        frame.setVisible(true);
    }

    public static void main(String[] args)
    {
        Runnable runnable = new Runnable()
        {
            @Override
            public void run()
            {
                new CustomMarginBorder().displayGUI();
            }
        };
        EventQueue.invokeLater(runnable);
    }
}

class CustomBorder extends AbstractBorder
{
    private Color borderColour;
    private int gap;

    public CustomBorder(Color colour, int g)
    {
        borderColour = colour;
        gap = g;
    }

    @Override
    public void paintBorder(Component c, Graphics g, int x, int y
                                                   , int width
                                                   , int height)
    {
        super.paintBorder(c, g, x, y, width, height);
        Graphics2D g2d = null;
        if (g instanceof Graphics2D)
        {
            g2d = (Graphics2D) g;
            g2d.setColor(borderColour);
            //Left Border
            g2d.draw(new Line2D.Double((double)x + 10, (double)y + 10
                                , (double)x + 10, (double)y + 20));
            g2d.draw(new Line2D.Double( (double)x + 10, (double)y + 10
                                , (double)x + 20, (double)y + 10));
            // Right Border
            g2d.draw(new Line2D.Double( (double)width - 10, (double)y + 10
                                , (double)width - 10, (double)y + 20));
            g2d.draw(new Line2D.Double( (double)width - 10, (double)y + 10
                                , (double)width - 20, (double)y + 10));
            // Lower Left Border
            g2d.draw(new Line2D.Double( (double)x + 10, (double)height - 10
                                , (double)x + 20, (double)height - 10));
            g2d.draw(new Line2D.Double( (double)x + 10, (double)height - 10
                                , (double)x + 10, (double)height - 20));
            // Lower Right Border
            g2d.draw(new Line2D.Double( (double)width - 10, (double)height - 10
                                , (double)width - 20, (double)height - 10));
            g2d.draw(new Line2D.Double( (double)width - 10, (double)height - 10
                                , (double)width - 10, (double)height - 20));
        }
    }

    @Override
    public Insets getBorderInsets(Component c)
    {
        return (getBorderInsets(c, new Insets(gap, gap, gap, gap)));
    }

    @Override
    public Insets getBorderInsets(Component c, Insets insets)
    {
        insets.left = insets.top = insets.right = insets.bottom = gap;
        return insets;
    }

    @Override
    public boolean isBorderOpaque()
    {
        return true;
    }
}

对于粗线边框这样的:

class CustomBorder extends AbstractBorder
{
    private Color borderColour;
    private int gap;
    private double rectWidth;
    private double rectHeight;

    public CustomBorder(Color colour, int g, double w, double h)
    {
        borderColour = colour;
        gap = g;
        rectWidth = w;
        rectHeight = h;
    }

    @Override
    public void paintBorder(Component c, Graphics g, int x, int y
                                                   , int width
                                                   , int height)
    {
        super.paintBorder(c, g, x, y, width, height);
        Graphics2D g2d = null;
        if (g instanceof Graphics2D)
        {
            g2d = (Graphics2D) g;
            g2d.setColor(borderColour);
            //Left Border
            g2d.fill(new Rectangle2D.Double(
                                  (double)x + gap
                                , (double)y + gap
                                , rectWidth, rectHeight));
            g2d.fill(new Rectangle2D.Double(
                                  (double)x + gap
                                , (double)y + gap + rectHeight
                                , rectHeight, rectWidth));
            // Right Border
            g2d.fill(new Rectangle2D.Double(
                                  (double)width - gap - rectWidth
                                , (double)y + gap
                                , rectWidth, rectHeight));
            g2d.fill(new Rectangle2D.Double(
                                  (double)width - gap - rectHeight
                                , (double)y + gap + rectHeight
                                , rectHeight, rectWidth));
            // Lower Left Border
            g2d.fill(new Rectangle2D.Double(
                                  (double)x + gap
                                , (double)height - gap - rectWidth
                                , rectHeight, rectWidth));
            g2d.fill(new Rectangle2D.Double(
                                  (double)x + gap
                                , (double)height - gap
                                , rectWidth, rectHeight));
            // Lower Right Border
            g2d.fill(new Rectangle2D.Double(
                                  (double)width - gap - rectHeight
                                , (double)height - gap - rectWidth
                                , rectHeight, rectWidth));
            g2d.fill(new Rectangle2D.Double(
                                  (double)width - gap - rectWidth
                                , (double)height - gap
                                , rectWidth, rectHeight));
        }
    }

    @Override
    public Insets getBorderInsets(Component c)
    {
        return (getBorderInsets(c, new Insets(gap, gap, gap, gap)));
    }

    @Override
    public Insets getBorderInsets(Component c, Insets insets)
    {
        insets.left = insets.top = insets.right = insets.bottom = gap;
        return insets;
    }

    @Override
    public boolean isBorderOpaque()
    {
        return true;
    }
}

输出:

边境 薄和厚

THICKBORDER

OUTPUT :

Border with thin and thick line

有关

这篇关于摆动自定义边框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆