home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D1 / GRABBAR.ZIP / GrabBar.txt < prev   
Text File  |  1998-09-23  |  5KB  |  79 lines

  1. TGrabBar v1.11
  2.  
  3. Description:
  4.   A bar that allows two TWinControl components to be resized by dragging it.
  5.  
  6. Contact Information:
  7.   Feel free to contact me if you have any questions, comments or suggestions
  8.   at bstowers@pobox.com.
  9.   The lateset version will always be available on the web at:
  10.     http://www.pobox.com/~bstowers/delphi/
  11.  
  12. Known Issues:
  13.   * Because of the DCX_PARENTCLIP in GetDCEx, moving bar over controls that
  14.     are not involved in the moving process will get a bar drawn on them.
  15.     But, in practice, the bar should never be in a position to move over
  16.     windows that it is not connected with.  Without this, couldn't see bar
  17.     over controls created after it.
  18.   * Does not get along with siblings who are alClient aligned.  Use a TPanel
  19.     as parent of bar and siblings and align the panel as alClient.
  20.   * Needs a keyboard interface.
  21.  
  22. Revision History:
  23.   1.11:  + Added GBarReg unit.  All IDE specific code (i.e. registering the
  24.            component, property editors, etc.) are contained in this unit.  This
  25.            was done for two primary reasons:  1) Using the component in a Delphi
  26.            or C++Builder expert would register the component as well.  2) Reduce
  27.            code size in some cases -- usually the smart linker removes this sort
  28.            of stuff since the app never references it, but now it's for certain
  29.            since it isn't even in the unit.  This change means that you need to
  30.            install the component using the new "registration" unit instead of
  31.            the unit containing the component.
  32.   1.10:  + SetBounds method was inadvertently redeclared in the protected
  33.            section.  It should have been, and now is, in the public section.
  34.   1.09:  + If parent of the bar was a panel, it's BorderWidth was not honored.
  35.            This was fixed by Rob Leland <leland@cais.com>, many thanks to him.
  36.   1.08:  + Added Version property.
  37.   1.07:  + Updated for new DFS.INC file, component tab name, history/comments
  38.            file.
  39.   1.06:  + Optimized painting.  Removed Paint method entirely, BorderStyle is
  40.            now drawn by Windows itself via WS_BORDER style flag (geez, I can be
  41.            dense) and Ctl3D painting is done in WM_ERASEBKGND message handler
  42.            where it is MUCH faster.  This was really bad when MS Plus! was
  43.            installed and windows were redrawn as they were resized.
  44.          + Resizing the parent window will now honor the WindowBMinSize property
  45.            as best it can.  Trying honor both WindowAMinSize and WindowBMinSize
  46.            is going to be a mess (have to handle WM_GETMINMAXINFO) and I'm just
  47.            too lazy to get into it right now.
  48.   1.05:  + Fixed small painting problem when maximizing or restoring window.
  49.          + WindowAMinSize and WindowBMinSize properties added to allow limiting
  50.            of the size a window can be shrunk to.  Most code provided by Beth
  51.            Weiss (bweiss@wpgate1.wpafb.af.mil).
  52.   1.04:  + Fixed problem that could allow bar to be moved under controls that
  53.            were not being separated by the bar.  This would hide the bar from
  54.            the user.
  55.          + Fixed bug that would, under certain conditions, cause the bar to
  56.            have an incorrect thickness.
  57.          + Fixed bug that would allow you to select the same window for both
  58.            WindowA and WindowB properties.  Caused nasty crash when the control
  59.            is removed.
  60.          + Added DragUpdate property that resizes the split windows as you drag
  61.            the grab bar.
  62.   1.03:  + Resource for 16 and 32-bit version.  This takes the place of a
  63.            DCR file, which can't be compatible with both.  See the $R directive
  64.            below. To compile the resource file, use the following
  65.              Delphi 1: BRCC.EXE -foGrabBar.r16 -31 GrabBar.rc
  66.              Delphi 2: BRCC32.EXE -foGrabBar.r32 -w32 GrabBar.rc
  67.   1.02:  + Automatically adjusts windows it owns to proper alignment in this
  68.            way:  Alignment of alNone is not adjusted.  alClient is changed to
  69.            alLeft/alRight or alTop/alBottom based on current divider style.
  70.            alLeft/alRight and alTop/alBottom are validated, i.e. if WindowA
  71.            property is aligned alRight, it is changed to be alLeft, or if
  72.            WindowB was alLeft in gbHorizonal bar, it would be changed to alTop.
  73.          + Changing the style now will now move the control to the center of
  74.            parent window.  Before it would be something silly like flush top or
  75.            left.
  76.   1.01:  + Stupid last minute optimization broke the thing.  Fixed.
  77.   1.00:  + Initial release
  78.  
  79.