home *** CD-ROM | disk | FTP | other *** search
/ Web Programming with Visual J++ / Web_Programming_with_Visual_J_SAMS.NET_Version_1.0_1997.iso / source / chap16 / dialoglayout.java < prev    next >
Text File  |  1996-09-19  |  5KB  |  164 lines

  1. // This is a part of the Microsoft Visual J++ library.
  2. // Copyright (C) 1996 Microsoft Corporation
  3. // All rights reserved.
  4.  
  5. //package java.awt;
  6.  
  7. import java.util.Hashtable;
  8. import java.awt.LayoutManager;
  9. import java.awt.Component;
  10. import java.awt.Container;
  11. import java.awt.Dimension;
  12. import java.awt.Rectangle;
  13. import java.awt.FontMetrics;
  14. import java.awt.Insets;
  15. import java.awt.Label;
  16.  
  17. //
  18. // class DialogLayout
  19. //
  20. // DialogLayout is a simple layout manager which works with what the Win32
  21. // API calls "dialog logical units" (DLUs).  DLUs are resolution independent
  22. // coordinates which work well for laying out controls on a dialog box.  The
  23. // mapping from DLUs to pixels is based on the font in use in the dialog box.
  24. // An x-coordinate DLU is described as 1/4 (.25) of the of the average character
  25. // width of the font used in the dialog.  A y-coordinate DLU is described as
  26. // 1/8 (.125) of the character height used in the dialog.  One tricky issue to
  27. // note: The average character width is not the average of all characters --
  28. // rather it is the average of all alpha characters both uppercase and
  29. // lowercase. That is, it is the extent of the string "a...zA...Z" divided
  30. // by 52.
  31. //
  32. // This class allows you to associate a Rectangle (x, y, width, height) with a
  33. // Component in a Container.  If called upon to layout the container, this
  34. // layout manager will layout based on the translation of dialog units to
  35. // pixels.
  36. //
  37.  
  38. public class DialogLayout
  39.     implements LayoutManager
  40. {
  41.     protected Hashtable m_map = new Hashtable();
  42.     protected int m_width;
  43.     protected int m_height;
  44.  
  45.     // DialogLayout methods
  46.  
  47.     public DialogLayout(Container parent, int width, int height)
  48.     {
  49.         Construct(parent, width, height);
  50.     }
  51.  
  52.     public DialogLayout(Container parent, Dimension d)
  53.     {
  54.         Construct(parent, d.width, d.height);
  55.     }
  56.  
  57.     public void setShape(Component comp, int x, int y, int width, int height)
  58.     {
  59.         m_map.put(comp, new Rectangle(x, y, width, height));
  60.     }
  61.  
  62.     public void setShape(Component comp, Rectangle rect)
  63.     {
  64.         m_map.put(comp, new Rectangle(rect.x, rect.y, rect.width, rect.height));
  65.     }
  66.  
  67.     public Rectangle getShape(Component comp)
  68.     {
  69.         Rectangle rect = (Rectangle)m_map.get(comp);
  70.         return new Rectangle(rect.x, rect.y, rect.width, rect.height);
  71.     }
  72.  
  73.     public Dimension getDialogSize()
  74.     {
  75.         return new Dimension(m_width, m_height);
  76.     }
  77.  
  78.     // LayoutManager Methods
  79.  
  80.     public void addLayoutComponent(String name, Component comp) { }
  81.     public void removeLayoutComponent(Component comp) { }
  82.  
  83.     public Dimension preferredLayoutSize(Container parent)
  84.     {
  85.         return new Dimension(m_width, m_height);
  86.     }
  87.  
  88.     public Dimension minimumLayoutSize(Container parent)
  89.     {
  90.         return new Dimension(m_width, m_height);
  91.     }
  92.  
  93.     public void layoutContainer(Container parent)
  94.     {
  95.         int count = parent.countComponents();
  96.         Rectangle rect = new Rectangle();
  97.         int charHeight = getCharHeight(parent);
  98.         int charWidth = getCharWidth(parent);
  99.         Insets insets = parent.insets();
  100.         FontMetrics m = parent.getFontMetrics(parent.getFont());
  101.         
  102.         for (int i = 0; i < count; i++)
  103.         {
  104.             Component c = parent.getComponent(i);
  105.             Rectangle r = (Rectangle)m_map.get(c);
  106.             if (r != null)
  107.             {
  108.                 rect.x = r.x;
  109.                 rect.y = r.y;
  110.                 rect.height = r.height;
  111.                 rect.width = r.width;
  112.                 mapRectangle(rect, charWidth, charHeight);
  113.                 if (c instanceof Label)
  114.                 {
  115.                     // Adjusts for space at left of Java labels.
  116.                     rect.x     -= 12;
  117.                     rect.width += 12;
  118.                 }
  119.  
  120.                 rect.x += insets.left;
  121.                 rect.y += insets.top;
  122.                 c.reshape(rect.x, rect.y, rect.width, rect.height);
  123.             }
  124.         }
  125.     }
  126.  
  127.     // Implementation Helpers
  128.  
  129.     protected void Construct(Container parent, int width, int height)
  130.     {
  131.         Rectangle rect = new Rectangle(0, 0, width, height);
  132.         mapRectangle(rect, getCharWidth(parent), getCharHeight(parent));
  133.         m_width = rect.width;
  134.         m_height = rect.height;
  135.     }
  136.  
  137.     protected int getCharWidth(Container parent)
  138.     {
  139.         FontMetrics m = parent.getFontMetrics(parent.getFont());
  140.         String s     = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
  141.         int    width = m.stringWidth(s) / s.length();
  142.  
  143.         if (width <= 0)
  144.             width = 1;
  145.         return width;
  146.     }
  147.  
  148.     protected int getCharHeight(Container parent)
  149.     {
  150.         FontMetrics m = parent.getFontMetrics(parent.getFont());
  151.         int height = m.getHeight();
  152.         return height;
  153.     }
  154.  
  155.     protected void mapRectangle(Rectangle rect, int charWidth, int charHeight)
  156.     {
  157.         rect.x      = (rect.x      * charWidth)  / 4;
  158.         rect.y      = (rect.y      * charHeight) / 8;
  159.         rect.width  = (rect.width  * charWidth)  / 4;
  160.         rect.height = (rect.height * charHeight) / 8;
  161.     }
  162. }
  163.  
  164.