{----------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/MPL-1.1.html Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is: JvSpacer.PAS, released on 2000-11-22. The Initial Developer of the Original Code is Peter Below <100113 dott 1101 att compuserve dott com> Portions created by Peter Below are Copyright (C) 2000 Peter Below. All Rights Reserved. Contributor(s): ______________________________________. You may retrieve the latest version of this file at the Project JEDI's JVCL home page, located at http://jvcl.sourceforge.net Known Issues: -----------------------------------------------------------------------------} // $Id: JvSpacer.pas 10612 2006-05-19 19:04:09Z jfudickar $ unit JvSpacer; {$I jvcl.inc} interface uses {$IFDEF UNITVERSIONING} JclUnitVersioning, {$ENDIF UNITVERSIONING} SysUtils, Classes, Graphics, Controls, Forms, ExtCtrls, JvExtComponent; type TJvSpacer = class(TJvCustomPanel) private FSpacing: Integer; procedure SetSpacing(const Value: Integer); public constructor Create(AOwner: TComponent); override; procedure SetBounds(ALeft, ATop, AWidth, AHeight: Integer); override; published property Spacing: Integer read FSpacing write SetSpacing default 4; property Align; property BevelInner default bvNone; property BevelOuter default bvNone; property BorderStyle default bsNone; property Color; {$IFDEF VCL} property DragCursor; property DragKind; property OnCanResize; {$ENDIF VCL} property DragMode; property ParentColor; property Visible; property OnClick; property OnDblClick; property OnDragDrop; property OnDragOver; property OnEndDrag; property OnMouseDown; property OnMouseMove; property OnMouseUp; property OnResize; property OnStartDrag; end; {$IFDEF UNITVERSIONING} const UnitVersioning: TUnitVersionInfo = ( RCSfile: '$URL: https://jvcl.svn.sourceforge.net/svnroot/jvcl/tags/JVCL3_32/run/JvSpacer.pas $'; Revision: '$Revision: 10612 $'; Date: '$Date: 2006-05-19 21:04:09 +0200 (ven., 19 mai 2006) $'; LogPath: 'JVCL\run' ); {$ENDIF UNITVERSIONING} implementation constructor TJvSpacer.Create(AOwner: TComponent); begin inherited Create(AOwner); ControlStyle := ControlStyle - [csAcceptsControls, csSetCaption]; FSpacing := 4; BevelInner := bvNone; BevelOuter := bvNone; BorderStyle := bsNone; end; procedure TJvSpacer.SetBounds(ALeft, ATop, AWidth, AHeight: Integer); begin if Align in [alTop, alBottom] then AHeight := FSpacing else if Align in [alLeft, alRight] then AWidth := FSpacing; inherited SetBounds(ALeft, ATop, AWidth, AHeight); end; procedure TJvSpacer.SetSpacing(const Value: Integer); begin if FSpacing <> Value then begin FSpacing := Value; SetBounds(Left, Top, Width, Height); end; end; {$IFDEF UNITVERSIONING} initialization RegisterUnitVersion(HInstance, UnitVersioning); finalization UnregisterUnitVersion(HInstance); {$ENDIF UNITVERSIONING} end.