BorderLayout.java 21 KB
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/* BorderLayout.java -- A layout manager class
   Copyright (C) 1999, 2002, 2005  Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */


package java.awt;

41

Tom Tromey committed
42 43 44 45 46 47 48 49 50 51
/**
  * This class implements a layout manager that positions components
  * in certain sectors of the parent container.
  *
  * @author Aaron M. Renn (arenn@urbanophile.com)
  * @author Rolf W. Rasmussen  (rolfwr@ii.uib.no)
  */
public class BorderLayout implements LayoutManager2, java.io.Serializable
{

Tom Tromey committed
52 53 54 55
  /**
   * Constant indicating the top of the container
   */
  public static final String NORTH = "North";
Tom Tromey committed
56

Tom Tromey committed
57 58 59 60
  /**
   * Constant indicating the bottom of the container
   */
  public static final String SOUTH = "South";
Tom Tromey committed
61

Tom Tromey committed
62 63 64 65
  /**
   * Constant indicating the right side of the container
   */
  public static final String EAST = "East";
Tom Tromey committed
66

Tom Tromey committed
67 68 69 70
  /**
   * Constant indicating the left side of the container
   */
  public static final String WEST = "West";
Tom Tromey committed
71

Tom Tromey committed
72 73 74 75
  /**
   * Constant indicating the center of the container
   */
  public static final String CENTER = "Center";
Tom Tromey committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170


  /**
   * The constant indicating the position before the first line of the
   * layout.  The exact position depends on the writing system: For a
   * top-to-bottom orientation, it is the same as {@link #NORTH}, for
   * a bottom-to-top orientation, it is the same as {@link #SOUTH}.
   *
   * <p>This constant is an older name for {@link #PAGE_START} which
   * has exactly the same value.
   *
   * @since 1.2
   */
  public static final String BEFORE_FIRST_LINE = "First";

  /**
   * The constant indicating the position after the last line of the
   * layout.  The exact position depends on the writing system: For a
   * top-to-bottom orientation, it is the same as {@link #SOUTH}, for
   * a bottom-to-top orientation, it is the same as {@link #NORTH}.
   *
   * <p>This constant is an older name for {@link #PAGE_END} which
   * has exactly the same value.
   *
   * @since 1.2
   */
  public static final String AFTER_LAST_LINE = "Last";

  /**
   * The constant indicating the position before the first item of the
   * layout.  The exact position depends on the writing system: For a
   * left-to-right orientation, it is the same as {@link #WEST}, for
   * a right-to-left orientation, it is the same as {@link #EAST}.
   *
   * <p>This constant is an older name for {@link #LINE_START} which
   * has exactly the same value.
   *
   * @since 1.2
   */
  public static final String BEFORE_LINE_BEGINS = "Before";

  /**
   * The constant indicating the position after the last item of the
   * layout.  The exact position depends on the writing system: For a
   * left-to-right orientation, it is the same as {@link #EAST}, for
   * a right-to-left orientation, it is the same as {@link #WEST}.
   *
   * <p>This constant is an older name for {@link #LINE_END} which
   * has exactly the same value.
   *
   * @since 1.2
   */
  public static final String AFTER_LINE_ENDS = "After";

  /**
   * The constant indicating the position before the first line of the
   * layout.  The exact position depends on the writing system: For a
   * top-to-bottom orientation, it is the same as {@link #NORTH}, for
   * a bottom-to-top orientation, it is the same as {@link #SOUTH}.
   *
   * @since 1.4
   */
  public static final String PAGE_START = BEFORE_FIRST_LINE;

  /**
   * The constant indicating the position after the last line of the
   * layout.  The exact position depends on the writing system: For a
   * top-to-bottom orientation, it is the same as {@link #SOUTH}, for
   * a bottom-to-top orientation, it is the same as {@link #NORTH}.
   *
   * @since 1.4
   */
  public static final String PAGE_END = AFTER_LAST_LINE;

  /**
   * The constant indicating the position before the first item of the
   * layout.  The exact position depends on the writing system: For a
   * left-to-right orientation, it is the same as {@link #WEST}, for
   * a right-to-left orientation, it is the same as {@link #EAST}.
   *
   * @since 1.4
   */
  public static final String LINE_START = BEFORE_LINE_BEGINS;

  /**
   * The constant indicating the position after the last item of the
   * layout.  The exact position depends on the writing system: For a
   * left-to-right orientation, it is the same as {@link #EAST}, for
   * a right-to-left orientation, it is the same as {@link #WEST}.
   *
   * @since 1.4
   */
  public static final String LINE_END = AFTER_LINE_ENDS;


Tom Tromey committed
171 172 173 174
  /**
   * Serialization constant.
   */
  private static final long serialVersionUID = -8658291919501921765L;
Tom Tromey committed
175 176


Tom Tromey committed
177 178 179 180
  /**
   * @serial
   */
  private Component north;
Tom Tromey committed
181

Tom Tromey committed
182 183 184 185
  /**
   * @serial
   */
  private Component south;
Tom Tromey committed
186

Tom Tromey committed
187 188 189 190
  /**
   * @serial
   */
  private Component east;
Tom Tromey committed
191

Tom Tromey committed
192 193 194 195
  /**
   * @serial
   */
  private Component west;
Tom Tromey committed
196

Tom Tromey committed
197 198
  /**
   * @serial
Tom Tromey committed
199
  */
Tom Tromey committed
200
  private Component center;
Tom Tromey committed
201

Tom Tromey committed
202 203 204 205
  /**
   * @serial
   */
  private Component firstLine;
Tom Tromey committed
206

Tom Tromey committed
207 208 209 210
  /**
   * @serial
   */
  private Component lastLine;
Tom Tromey committed
211

Tom Tromey committed
212 213 214 215
  /**
   * @serial
   */
  private Component firstItem;
Tom Tromey committed
216

Tom Tromey committed
217 218 219 220
  /**
   * @serial
   */
  private Component lastItem;
Tom Tromey committed
221

Tom Tromey committed
222 223 224 225
  /**
   * @serial The horizontal gap between components
   */
  private int hgap;
Tom Tromey committed
226

Tom Tromey committed
227 228 229 230
  /**
   * @serial The vertical gap between components
   */
  private int vgap;
Tom Tromey committed
231 232


233 234 235 236 237 238
  // Some constants for use with calcSize().
  private static final int MIN = 0;
  private static final int MAX = 1;
  private static final int PREF = 2;


Tom Tromey committed
239 240 241 242 243 244 245 246
  /**
   * Initializes a new instance of <code>BorderLayout</code> with no
   * horiztonal or vertical gaps between components.
   */
  public BorderLayout()
  {
    this(0,0);
  }
Tom Tromey committed
247

Tom Tromey committed
248 249 250 251 252 253 254 255 256 257 258 259
  /**
   * Initializes a new instance of <code>BorderLayout</code> with the
   * specified horiztonal and vertical gaps between components.
   *
   * @param hgap The horizontal gap between components.
   * @param vgap The vertical gap between components.
   */
  public BorderLayout(int hgap, int vgap)
  {
    this.hgap = hgap;
    this.vgap = vgap;
  }
Tom Tromey committed
260

Tom Tromey committed
261 262 263 264 265 266 267 268 269
  /**
   * Returns the horitzontal gap value.
   *
   * @return The horitzontal gap value.
   */
  public int getHgap()
  {
    return(hgap);
  }
Tom Tromey committed
270

Tom Tromey committed
271 272 273 274 275 276 277 278 279
  /**
   * Sets the horizontal gap to the specified value.
   *
   * @param hgap The new horizontal gap.
   */
  public void setHgap(int hgap)
  {
    this.hgap = hgap;
  }
Tom Tromey committed
280

Tom Tromey committed
281 282 283 284 285 286 287 288 289
  /**
   * Returns the vertical gap value.
   *
   * @return The vertical gap value.
   */
  public int getVgap()
  {
    return(vgap);
  }
Tom Tromey committed
290

Tom Tromey committed
291 292 293 294 295 296 297 298 299
  /**
   * Sets the vertical gap to the specified value.
   *
   * @param vgap The new vertical gap value.
   */
  public void setVgap(int vgap)
  {
    this.vgap = vgap;
  }
Tom Tromey committed
300

Tom Tromey committed
301 302 303 304 305 306 307 308 309 310 311 312 313 314
  /**
   * Adds a component to the layout in the specified constraint position, 
   * which must be one of the string constants defined in this class.
   *
   * @param component The component to add.
   * @param constraints The constraint string.
   *
   * @exception IllegalArgumentException If the constraint object is not
   * a string, or is not one of the specified constants in this class.
   */
  public void addLayoutComponent(Component component, Object constraints)
  {
    if (constraints != null && ! (constraints instanceof String))
      throw new IllegalArgumentException("Constraint must be a string");
Tom Tromey committed
315

Tom Tromey committed
316 317
    addLayoutComponent((String) constraints, component);
  }
Tom Tromey committed
318

Tom Tromey committed
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
  /**
   * Adds a component to the layout in the specified constraint position, 
   * which must be one of the string constants defined in this class.
   *
   * @param constraints The constraint string.
   * @param component The component to add.
   *
   * @exception IllegalArgumentException If the constraint object is not
   *            one of the specified constants in this class.
   *
   * @deprecated This method is deprecated in favor of
   *             <code>addLayoutComponent(Component, Object)</code>.
   */
  public void addLayoutComponent(String constraints, Component component)
  {
    String str = constraints;

    if (str == null || str.equals(CENTER))
      center = component;
    else if (str.equals(NORTH))
      north = component;
    else if (str.equals(SOUTH))
      south = component;
    else if (str.equals(EAST))
      east = component;
    else if (str.equals(WEST))
      west = component;
    else if (str.equals(BEFORE_FIRST_LINE))
      firstLine = component;
    else if (str.equals(AFTER_LAST_LINE))
      lastLine = component;
    else if (str.equals(BEFORE_LINE_BEGINS))
      firstItem = component;
    else if (str.equals(AFTER_LINE_ENDS))
      lastItem = component;
    else
      throw new IllegalArgumentException("Constraint value not valid: " + str);
  }
Tom Tromey committed
357

Tom Tromey committed
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
  /**
   * Removes the specified component from the layout.
   *
   * @param component The component to remove from the layout.
   */
  public void removeLayoutComponent(Component component)
  {
    if (north == component)
      north = null;
    if (south == component)
      south = null;
    if (east == component)
      east = null;
    if (west == component)
      west = null;
    if (center == component)
      center = null;
    if (firstItem == component)
      firstItem = null;
    if (lastItem == component)
      lastItem = null;
    if (firstLine == component)
      firstLine = null;
    if (lastLine == component)
      lastLine = null;
  }
Tom Tromey committed
384

Tom Tromey committed
385 386 387 388 389 390 391 392 393 394 395
  /**
   * Returns the minimum size of the specified container using this layout.
   *
   * @param target The container to calculate the minimum size for.
   *
   * @return The minimum size of the container
   */
  public Dimension minimumLayoutSize(Container target)
  {
    return calcSize(target, MIN);
  }
Tom Tromey committed
396

Tom Tromey committed
397 398 399 400 401 402 403 404 405 406 407
  /**
   * Returns the preferred size of the specified container using this layout.
   *
   * @param target The container to calculate the preferred size for.
   *
   * @return The preferred size of the container
   */
  public Dimension preferredLayoutSize(Container target)
  {
    return calcSize(target, PREF);
  }
Tom Tromey committed
408

Tom Tromey committed
409 410 411 412 413 414 415 416 417
  /**
   * Returns the maximum size of the specified container using this layout.
   *
   * @param target The container to calculate the maximum size for.
   *
   * @return The maximum size of the container
   */
  public Dimension maximumLayoutSize(Container target)
  {
418
    return new Dimension (Integer.MAX_VALUE, Integer.MAX_VALUE);
Tom Tromey committed
419
  }
Tom Tromey committed
420

Tom Tromey committed
421 422 423 424 425 426 427 428 429 430 431 432
  /**
   * Returns the X axis alignment, which is a <code>float</code> indicating
   * where along the X axis this container wishs to position its layout.
   * 0 indicates align to the left, 1 indicates align to the right, and 0.5
   * indicates align to the center.
   *
   * @param parent The parent container.
   *
   * @return The X alignment value.
   */
  public float getLayoutAlignmentX(Container parent)
  {
433
    return 0.5F;
Tom Tromey committed
434
  }
Tom Tromey committed
435

Tom Tromey committed
436 437 438 439 440 441 442 443 444 445 446 447
  /**
   * Returns the Y axis alignment, which is a <code>float</code> indicating
   * where along the Y axis this container wishs to position its layout.
   * 0 indicates align to the top, 1 indicates align to the bottom, and 0.5
   * indicates align to the center.
   *
   * @param parent The parent container.
   *
   * @return The Y alignment value.
   */
  public float getLayoutAlignmentY(Container parent)
  {
448
    return 0.5F;
Tom Tromey committed
449
  }
Tom Tromey committed
450

Tom Tromey committed
451 452 453 454 455 456 457 458
  /**
   * Instructs this object to discard any layout information it might
   * have cached.
   *
   * @param parent The parent container.
   */
  public void invalidateLayout(Container parent)
  {
459
    // Nothing to do here.
Tom Tromey committed
460
  }
Tom Tromey committed
461

Tom Tromey committed
462
  /**
463 464 465
   * Lays out the specified container according to the constraints in this
   * object.
   * 
Tom Tromey committed
466 467 468 469
   * @param target The container to lay out.
   */
  public void layoutContainer(Container target)
  {
470
    synchronized (target.getTreeLock())
Tom Tromey committed
471 472
      {
        Insets i = target.getInsets();
473 474 475 476
        int top = i.top;
        int bottom = target.height - i.bottom;
        int left = i.left;
        int right = target.width - i.right;
Tom Tromey committed
477

478
        boolean left_to_right = target.getComponentOrientation().isLeftToRight();
Tom Tromey committed
479 480 481 482 483 484

        Component my_north = north;
        Component my_east = east;
        Component my_south = south;
        Component my_west = west;

485 486
        // Note that we currently don't handle vertical layouts.
        // Neither does JDK 1.3.
Tom Tromey committed
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
        if (firstLine != null)
          my_north = firstLine;
        if (lastLine != null)
          my_south = lastLine;
        if (firstItem != null)
          {
            if (left_to_right)
              my_west = firstItem;
            else
              my_east = firstItem;
          }
        if (lastItem != null)
          {
            if (left_to_right)
              my_east = lastItem;
            else
              my_west = lastItem;
          }

506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535
        if (my_north != null)
          {
            Dimension n = calcCompSize(my_north, PREF);
            my_north.setBounds(left, top, right - left, n.height);
            top += n.height + vgap;
          }

        if (my_south != null)
          {
            Dimension s = calcCompSize(my_south, PREF);
            my_south.setBounds(left, bottom - s.height, right - left, s.height);
            bottom -= s.height + vgap;
          }

        if (my_east != null)
          {
            Dimension e = calcCompSize(my_east, PREF);
            my_east.setBounds(right - e.width, top, e.width, bottom - top);
            right -= e.width + hgap;
          }

        if (my_west != null)
          {
            Dimension w = calcCompSize(my_west, PREF);
            my_west.setBounds(left, top, w.width, bottom - top);
            left += w.width + hgap;
          }

        if (center != null)
          center.setBounds(left, top, right - left, bottom - top);
Tom Tromey committed
536 537
      }
  }
Tom Tromey committed
538

Tom Tromey committed
539 540
  /**
   * Returns a string representation of this layout manager.
541
   * 
Tom Tromey committed
542 543 544 545 546 547
   * @return A string representation of this object.
   */
  public String toString()
  {
    return getClass().getName() + "[hgap=" + hgap + ",vgap=" + vgap + "]";
  }
Tom Tromey committed
548

Tom Tromey committed
549 550
  private Dimension calcCompSize(Component comp, int what)
  {
551
    if (comp == null || ! comp.isVisible())
Tom Tromey committed
552 553 554 555 556 557 558
      return new Dimension(0, 0);
    if (what == MIN)
      return comp.getMinimumSize();
    else if (what == MAX)
      return comp.getMaximumSize();
    return comp.getPreferredSize();
  }
Tom Tromey committed
559

Tom Tromey committed
560
  /**
561 562
   * This is a helper function used to compute the various sizes for this
   * layout.
Tom Tromey committed
563 564 565
   */
  private Dimension calcSize(Container target, int what)
  {
566
    synchronized (target.getTreeLock())
Tom Tromey committed
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
      {
        Insets ins = target.getInsets();

        ComponentOrientation orient = target.getComponentOrientation ();
        boolean left_to_right = orient.isLeftToRight ();

        Component my_north = north;
        Component my_east = east;
        Component my_south = south;
        Component my_west = west;

        // Note that we currently don't handle vertical layouts.  Neither
        // does JDK 1.3.
        if (firstLine != null)
          my_north = firstLine;
        if (lastLine != null)
          my_south = lastLine;
        if (firstItem != null)
          {
            if (left_to_right)
              my_west = firstItem;
            else
              my_east = firstItem;
          }
        if (lastItem != null)
          {
            if (left_to_right)
              my_east = lastItem;
            else
              my_west = lastItem;
          }

        Dimension ndim = calcCompSize(my_north, what);
        Dimension sdim = calcCompSize(my_south, what);
        Dimension edim = calcCompSize(my_east, what);
        Dimension wdim = calcCompSize(my_west, what);
        Dimension cdim = calcCompSize(center, what);

        int width = edim.width + cdim.width + wdim.width + (hgap * 2);
        // Check for overflow.
        if (width < edim.width || width < cdim.width || width < cdim.width)
Tom Tromey committed
608 609
          width = Integer.MAX_VALUE;

Tom Tromey committed
610 611 612 613
        if (ndim.width > width)
          width = ndim.width;
        if (sdim.width > width)
          width = sdim.width;
Tom Tromey committed
614

Tom Tromey committed
615
        width += (ins.left + ins.right);
Tom Tromey committed
616

Tom Tromey committed
617 618 619 620 621
        int height = edim.height;
        if (cdim.height > height)
          height = cdim.height;
        if (wdim.height > height)
          height = wdim.height;
Tom Tromey committed
622

Tom Tromey committed
623 624 625 626
        int addedHeight = height + (ndim.height + sdim.height + (vgap * 2)
                                    + ins.top + ins.bottom);
        // Check for overflow.
        if (addedHeight < height)
Tom Tromey committed
627
          height = Integer.MAX_VALUE;
Tom Tromey committed
628
        else
Tom Tromey committed
629 630
          height = addedHeight;

Tom Tromey committed
631 632 633
        return(new Dimension(width, height));
      }
  }
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741

  /**
   * Return the component at the indicated location, or null if no component
   * is at that location.  The constraints argument must be one of the 
   * location constants specified by this class.   
   * @param constraints the location
   * @return the component at that location, or null
   * @throws IllegalArgumentException if the constraints argument is not 
   * recognized
   * @since 1.5
   */
  public Component getLayoutComponent(Object constraints)
  {
    if (constraints == CENTER)
      return center;
    if (constraints == NORTH)
      return north;
    if (constraints == EAST)
      return east;
    if (constraints == SOUTH)
      return south;
    if (constraints == WEST)
      return west;
    if (constraints == PAGE_START)
      return firstLine;
    if (constraints == PAGE_END)
      return lastLine;
    if (constraints == LINE_START)
      return firstItem;
    if (constraints == LINE_END)
      return lastItem;
    throw new IllegalArgumentException("constraint " + constraints 
                                       + " is not recognized");
  }

  /**
   * Return the component at the specified location, which must be one
   * of the absolute constants such as CENTER or SOUTH.  The container's
   * orientation is used to map this location to the correct corresponding
   * component, so for instance in a right-to-left container, a request
   * for the EAST component could return the LINE_END component.  This will
   * return null if no component is available at the given location.
   * @param container the container whose orientation is used
   * @param constraints the absolute location of the component
   * @return the component at the location, or null
   * @throws IllegalArgumentException if the constraint is not recognized
   */
  public Component getLayoutComponent(Container container, Object constraints)
  {
    ComponentOrientation orient = container.getComponentOrientation();
    if (constraints == CENTER)
      return center;
    // Note that we don't support vertical layouts.
    if (constraints == NORTH)
      return north;
    if (constraints == SOUTH)
      return south;
    if (constraints == WEST)
      {
        // Note that relative layout takes precedence.
        if (orient.isLeftToRight())
          return firstItem == null ? west : firstItem;
        return lastItem == null ? west : lastItem;
      }
    if (constraints == EAST)
      {
        // Note that relative layout takes precedence.
        if (orient.isLeftToRight())
          return lastItem == null ? east : lastItem;
        return firstItem == null ? east : firstItem;
      }
    throw new IllegalArgumentException("constraint " + constraints
                                       + " is not recognized");
  }

  /**
   * Return the constraint corresponding to a component in this layout.
   * If the component is null, or is not in this layout, returns null.
   * Otherwise, this will return one of the constraint constants defined
   * in this class.
   * @param c the component
   * @return the constraint, or null
   * @since 1.5
   */
  public Object getConstraints(Component c)
  {
    if (c == null)
      return null;
    if (c == center)
      return CENTER;
    if (c == north)
      return NORTH;
    if (c == east)
      return EAST;
    if (c == south)
      return SOUTH;
    if (c == west)
      return WEST;
    if (c == firstLine)
      return PAGE_START;
    if (c == lastLine)
      return PAGE_END;
    if (c == firstItem)
      return LINE_START;
    if (c == lastItem)
      return LINE_END;
    return null;
  }
Tom Tromey committed
742
}