Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I add a margin outside the border of a component in Swing?

Tags:

java

swing

I use multiple components that has a border painted. Is there any easy way to add a margin to the component so that the borders aren't painted so close to eachother?

like image 487
Jonas Avatar asked May 21 '10 15:05

Jonas


1 Answers

Another way to get what you want is to:

  1. get the current Border of your component
  2. if null, set an EmptyBorder for your component
  3. if not null, create a new CompoundBorder (with an EmptyBorder and the current Border of the component) and set it for the component

In code, that should look like that (sorry I haven't tested it):

Border current = component.getBorder();
Border empty = new EmptyBorder(top, left, bottom right);
if (current == null)
{
    component.setBorder(empty);
}
else
{
    component.setBorder(new CompoundBorder(empty, current));
}

Where:

  • component is the Swing component to which you want to add a margin
  • top, left, bottom, right are the pixels amounts you want to add around your component

Note that this method might have an impact (size, alignment) on the form layout, depending on the LayoutManager you are using. But I think it is worth trying.

like image 146
jfpoilpret Avatar answered Oct 01 '22 00:10

jfpoilpret