Container.java 9.65 KB
Newer Older
Bryce McKinlay committed
1
/* Copyright (C) 1999, 2000  Free Software Foundation
2 3 4 5 6 7 8 9 10

   This file is part of libjava.

This software is copyrighted work licensed under the terms of the
Libjava License.  Please consult the file "LIBJAVA_LICENSE" for
details.  */

package java.awt;

Bryce McKinlay committed
11 12 13 14
import java.awt.event.*;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.EventListener;
15 16
import java.awt.peer.ComponentPeer;
import java.awt.peer.ContainerPeer;
Bryce McKinlay committed
17

18 19 20 21
/* A very incomplete placeholder. */

public abstract class Container extends Component
{
Bryce McKinlay committed
22 23 24 25 26 27 28
  /* Serialized fields from the serialization spec. */
  int ncomponents;
  Component[] component;
  LayoutManager layoutMgr;
  /* LightweightDispatcher dispatcher; */ // wtf?
  Dimension maxSize;
  int containerSerializedDataVersion;
29

Bryce McKinlay committed
30 31
  /* Anything else is non-serializable, and should be declared "transient". */
  transient ContainerListener containerListener;  
32 33 34 35

  // Insets.
  private transient Insets myInsets;

Bryce McKinlay committed
36
  public Container()
37
  {
Bryce McKinlay committed
38 39 40 41 42 43 44 45 46 47 48
  }

  public int getComponentCount()
  {
    return ncomponents;
  }

  /** @deprecated Use getComponentCount() instead. */
  public int countComponents()
  {
    return ncomponents;
49 50 51 52
  }

  public Component getComponent (int n)
  {
Bryce McKinlay committed
53
    if (n < 0 || n >= ncomponents)
54
      throw new ArrayIndexOutOfBoundsException("no such component");
Bryce McKinlay committed
55 56 57 58 59 60 61 62 63 64 65 66 67
    return component[n];
  }

  public Component[] getComponents()
  {
    Component[] result = new Component[ncomponents];
    if (ncomponents > 0)
      System.arraycopy(component, 0, result, 0, ncomponents);
    return result;
  }

  public Insets getInsets()
  {
68
    return myInsets;
Bryce McKinlay committed
69
  }
70

Bryce McKinlay committed
71 72 73 74 75 76
  /** @deprecated Use getInsets() instead. */
  public Insets insets()
  {
    return getInsets();
  }
  
77
  public Component add (Component comp)
Bryce McKinlay committed
78
  {
79 80
    addImpl (comp, null, -1);
    return comp;
Bryce McKinlay committed
81
  }
82 83

  public Component add (String name, Component comp)
Bryce McKinlay committed
84
  {
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
    addImpl (comp, name, -1);
    return comp;
  }

  public Component add (Component comp, int index)
  {
    addImpl (comp, null, index);
    return comp;
  }

  public void add (Component comp, Object constraints)
  {
    addImpl (comp, constraints, -1);
  }

  public void add (Component comp, Object constraints, int index)
  {
    addImpl (comp, constraints, index);
Bryce McKinlay committed
103 104
  }

105
  protected void addImpl (Component comp, Object constraints, int index)
Bryce McKinlay committed
106
  {
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    if (index > ncomponents
	|| comp instanceof Window
	|| (comp instanceof Container
	    && ((Container) comp).isAncestorOf (this)))
      throw new IllegalArgumentException ();

    // Reparent component, and make sure component is instantiated if
    // we are.
    if (comp.parent != this)
      comp.parent.remove (comp);
    comp.parent = this;
    if (peer != null)
      comp.addNotify ();

    invalidate ();

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
    // This isn't the most efficient implementation.  We could do less
    // copying when growing the array.  It probably doesn't matter.
    if (ncomponents >= component.length)
      {
	int nl = component.length * 2;
	Component[] c = new Component[nl];
	System.arraycopy (component, 0, c, 0, ncomponents);
	component = c;
      }
    if (index == -1)
      component[ncomponents++] = comp;
    else
      {
	System.arraycopy (component, index, component, index + 1,
			  ncomponents - index);
	component[index] = comp;
	++ncomponents;
      }

142 143 144 145 146 147 148 149 150 151 152
    // Notify the layout manager.
    if (layoutMgr != null)
      {
	if (constraints != null && layoutMgr instanceof LayoutManager2)
	  {
	    LayoutManager2 lm2 = (LayoutManager2) layoutMgr;
	    lm2.addLayoutComponent (comp, constraints);
	  }
	else
	  layoutMgr.addLayoutComponent ((String) constraints, comp);
      }
Bryce McKinlay committed
153

154 155 156 157
    ContainerEvent ce = new ContainerEvent (this,
					    ContainerEvent.COMPONENT_ADDED,
					    comp);
    dispatchEvent (ce);
Bryce McKinlay committed
158 159
  }

160
  public void remove (int index)
Bryce McKinlay committed
161
  {
162 163 164 165
    Component r = component[index];

    r.removeNotify ();

166 167 168
    System.arraycopy (component, index + 1, component, index,
		      ncomponents - index - 1);
    component[--ncomponents] = null;
169 170 171 172 173 174 175 176 177 178

    invalidate ();

    if (layoutMgr != null)
      layoutMgr.removeLayoutComponent (r);

    ContainerEvent ce = new ContainerEvent (this,
					    ContainerEvent.COMPONENT_REMOVED,
					    r);
    dispatchEvent (ce);
Bryce McKinlay committed
179 180
  }

181
  public void remove (Component comp)
Bryce McKinlay committed
182
  {
183
    for (int i = 0; i < ncomponents; ++i)
184 185 186 187 188 189 190
      {
	if (component[i] == comp)
	  {
	    remove (i);
	    break;
	  }
      }
Bryce McKinlay committed
191 192 193 194
  }

  public void removeAll()
  {
195 196
    while (ncomponents > 0)
      remove (0);
Bryce McKinlay committed
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
  }

  public LayoutManager getLayout()
  {
    return layoutMgr;
  }
  
  public void setLayout(LayoutManager mgr)
  {
    layoutMgr = mgr;
    // FIXME
  }
  
  public void doLayout()
  {
212 213
    if (layoutMgr != null)
      layoutMgr.layoutContainer (this);
Bryce McKinlay committed
214 215 216 217 218 219 220 221 222 223
  }

  /** @deprecated Use doLayout() instead. */
  public void layout()
  {
    doLayout();
  }

  public void invalidate()
  {
224
    super.invalidate ();
Bryce McKinlay committed
225 226 227 228
  }

  public void validate()
  {
229 230 231 232 233
    if (! isValid ())
      {
	doLayout ();
	validateTree ();
      }
Bryce McKinlay committed
234 235 236 237
  }

  protected void validateTree()
  {
238 239
    for (int i = 0; i < ncomponents; ++i)
      component[i].validate ();
Bryce McKinlay committed
240 241 242 243 244 245 246 247 248
  }

  public void setFont(Font f)
  {
    // FIXME
  }

  public Dimension getPreferredSize()
  {
249 250 251 252
    if (layoutMgr != null)
      return layoutMgr.preferredLayoutSize (this);
    else
      return super.getPreferredSize ();
Bryce McKinlay committed
253 254 255 256 257 258 259 260 261 262
  }
  
  /** @deprecated Use getPreferredSize() instead */
  public Dimension preferredSize()
  {
    return getPreferredSize();
  }
  
  public Dimension getMinimumSize()
  {
263 264 265 266
    if (layoutMgr != null)
      return layoutMgr.minimumLayoutSize (this);
    else
      return super.getMinimumSize ();
Bryce McKinlay committed
267 268 269 270 271 272 273 274 275 276
  }
  
  /** @deprecated Use getMinimumSize() instead */
  public Dimension minimumSize()
  {
    return getMinimumSize();
  }
  
  public Dimension getMaximumSize()
  {
277 278 279 280 281 282 283
    if (layoutMgr != null && layoutMgr instanceof LayoutManager2)
      {
	LayoutManager2 lm2 = (LayoutManager2) layoutMgr;
	return lm2.maximumLayoutSize (this);
      }
    else
      return super.getMaximumSize ();
Bryce McKinlay committed
284
  }
285

Bryce McKinlay committed
286 287
  public float getAlignmentX()
  {
288 289 290 291 292 293 294
    if (layoutMgr instanceof LayoutManager2)
      {
	LayoutManager2 lm2 = (LayoutManager2) layoutMgr;
	return lm2.getLayoutAlignmentX (this);
      }
    else
      return CENTER_ALIGNMENT;
Bryce McKinlay committed
295 296 297 298
  }

  public float getAlignmentY()
  {
299 300 301 302 303 304 305
    if (layoutMgr instanceof LayoutManager2)
      {
	LayoutManager2 lm2 = (LayoutManager2) layoutMgr;
	return lm2.getLayoutAlignmentY (this);
      }
    else
      return CENTER_ALIGNMENT;
Bryce McKinlay committed
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
  }

  public void paint(Graphics g)
  {
    // FIXME
  }

  public void update(Graphics g)
  {
    // FIXME
  }

  public void print(Graphics g)
  {
    // FIXME
  }

  public void paintComponents(Graphics g)
  {
    // FIXME
  }

  public void printComponents(Graphics g)
  {
330 331
    for (int i = 0; i < ncomponents; ++i)
      component[i].printAll (g);
Bryce McKinlay committed
332 333 334 335 336 337 338 339 340 341 342 343 344 345
  }
  
  void dispatchEventImpl(AWTEvent e)
  {
    if ((e.id <= ContainerEvent.CONTAINER_LAST
             && e.id >= ContainerEvent.CONTAINER_FIRST)
	&& (containerListener != null
	    || (eventMask & AWTEvent.CONTAINER_EVENT_MASK) != 0))
      processEvent(e); 
    else super.dispatchEventImpl(e);
  }  

  public void addContainerListener(ContainerListener l)
  {
346
    containerListener = AWTEventMulticaster.add (containerListener, l);
Bryce McKinlay committed
347 348 349 350
  }

  public void removeContainerListener(ContainerListener l)
  {
351
    containerListener = AWTEventMulticaster.remove(containerListener, l);
Bryce McKinlay committed
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
  }

  /** @since 1.3 */
  public EventListener[] getListeners(Class listenerType)
  {
    if (listenerType == ContainerListener.class)
      return getListenersImpl(listenerType, containerListener);
    else return super.getListeners(listenerType);
  }
  
  protected void processEvent(AWTEvent e)
  {
    if (e instanceof ContainerEvent)
      processContainerEvent((ContainerEvent) e);
    else super.processEvent(e);
  }
  
  protected void processContainerEvent(ContainerEvent e)
  {
371
    if (containerListener == null)
Bryce McKinlay committed
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
      return;
    switch (e.id)
      {
	case ContainerEvent.COMPONENT_ADDED:
	  containerListener.componentAdded(e);
	break;

	case ContainerEvent.COMPONENT_REMOVED:
	  containerListener.componentRemoved(e);
	break;    
      }
  }

  /** @deprecated */
  public void deliverEvent(Event e)
  {
  }
  
390
  public Component getComponentAt (int x, int y)
Bryce McKinlay committed
391
  {
392 393 394 395 396 397 398 399 400
    if (! contains (x, y))
      return null;
    for (int i = 0; i < ncomponents; ++i)
      {
	int x2 = x - component[i].x;
	int y2 = y - component[i].y;
	if (component[i].contains (x2, y2))
	  return component[i];
      }
Bryce McKinlay committed
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
    return null;
  }

  /** @deprecated Use getComponentAt() instead */
  public Component locate(int x, int y)
  {
    return getComponentAt(x, y);
  }

  public Component getComponentAt(Point p)
  {
    return getComponentAt(p.x, p.y);
  }

  public Component findComponentAt(int x, int y)
  {
    // FIXME
    return null;
  }

  public Component findComponentAt(Point p)
  {
    return findComponentAt(p.x, p.y);
  }

  public void addNotify ()
  {
    for (int i = ncomponents;  --i >= 0; )
      component[i].addNotify();
430
  }
Bryce McKinlay committed
431 432 433

  public void removeNotify()
  {
434 435 436
    for (int i = 0; i < ncomponents; ++i)
      component[i].removeNotify ();
    // FIXME: remove our peer.
437 438 439 440 441 442 443 444 445 446 447 448 449 450
  }

  public boolean isAncestorOf (Component comp)
  {
    for (;;)
      {
	if (comp == null)
	  return false;
	if (comp == this)
	  return true;
	comp = comp.getParent();
      }
  }

Bryce McKinlay committed
451
  protected String paramString()
452
  {
Bryce McKinlay committed
453
    return "FIXME";
454
  }
Bryce McKinlay committed
455
  
456
  public void list (PrintStream out, int indent)
457
  {
458 459 460 461 462
    for (int i = 0; i < indent; ++i)
      out.print (' ');
    out.println (toString ());
    for (int i = 0; i < ncomponents; ++i)
      component[i].list (out, indent + 2);
Bryce McKinlay committed
463
  }
464

Bryce McKinlay committed
465 466
  public void list(PrintWriter out, int indent)
  {
467 468 469 470 471
    for (int i = 0; i < indent; ++i)
      out.print (' ');
    out.println (toString ());
    for (int i = 0; i < ncomponents; ++i)
      component[i].list (out, indent + 2);
472 473
  }
}