  MultiDoc
  A Lazarus component to replace the standard MDI interface.
  
  Copyright (C) 2007 Patrick Chevalley, http://www.ap-i.net
  Contributions sent by Jnior Gonalves, <hipernetjr@yahoo.com.br>

License:

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

  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.

  This program 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 Library General Public License
  for more details.

  You should have received a copy of the GNU Library General Public License
  along with this library; if not, write to the Free Software Foundation,
  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.


Description:
  
  This component permit to write pseudo-MDI application with Lazarus.
  It is not a real implementation of the MDI interface but it give to your 
  application the capability to use many resizable sub-form. 
    
  Converting a MDI application is simplified by the availability of the same 
  component for Delphi. Convert first your application to MultiDoc in Delphi,
  then convert to Lazarus.
  This require some work but among the advantage you avoid the ugly XP border 
  around your child forms.
  
  This component is exclusively derived from high level standard component
  (TScrollBox). It must work on all the Lazarus platform without change.
  Look at the demo and component source for more explanation.


History:

Version 0.3 2007/12/31 Fixed the following:
	- Through of {$IFDEF}'s the component compiles into Lazarus/Delphi unchanged
	- Great move. Now the mouse not "escape" while the cursor is dragged
	- ChildDoc is now derived from TFormPanel (see suite LMDI)
	- No more code necessary on each component to focus child form
	- It is possible to change the "skin" of the title bar, according to the OS (see component TTitleBar)

Version 0.2 2007/01/06 Fix the following:
	- BorderWidth property not working
	- Wrong button order
	- Center the cursor to the title bar when moving the panel
	- Gtk2 and FPC 2.1.1 compatibility
	- Crash when closing a child using the close button
	- Change licensing to modified LGPL

Version 0.1 2006/01/20 First beta release.
