📄 jvspacer.pas
字号:
{-----------------------------------------------------------------------------
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,v 1.9 2005/02/17 10:20:53 marquardt Exp $
unit JvSpacer;
{$I jvcl.inc}
interface
uses
{$IFDEF UNITVERSIONING}
JclUnitVersioning,
{$ENDIF UNITVERSIONING}
SysUtils, Classes, Graphics, Controls, Forms, ExtCtrls,
JvComponent;
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: '$RCSfile: JvSpacer.pas,v $';
Revision: '$Revision: 1.9 $';
Date: '$Date: 2005/02/17 10:20:53 $';
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.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -