TLama hits the nail in his comments: somehow the designer prevents components from becoming too small. Strange though that the designer does not set this minimum size (10 x 10), but instead seems to randomly set the size to arbitrary values: 140 x 41 in D6 as stated by OP, and 100 x 41 here in D7.
Well, since TBevel does use nor publish the AutoSize property, and that property name kind of relates to wished behaviour, I chose to stretch its use:
type
TSSPacer = class(TBevel)
protected
procedure SetParent(AParent: TWinControl); override;
public
constructor Create(AOwner: TComponent); override;
procedure SetBounds(ALeft, ATop, AWidth, AHeight: Integer); override;
published
property Shape default bsSpacer;
end;
constructor TSSPacer.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
Shape := bsSpacer;
end;
procedure TSSPacer.SetBounds(ALeft, ATop, AWidth, AHeight: Integer);
begin
if AutoSize then
inherited SetBounds(ALeft, ATop, 8, 8)
else
inherited SetBounds(ALeft, ATop, AWidth, AHeight);
end;
procedure TSSPacer.SetParent(AParent: TWinControl);
begin
AutoSize := (csDesigning in ComponentState) and (Parent = nil) and
(AParent <> nil);
inherited SetParent(AParent);
end;
This works here in D7, but a more reliable implementation might be:
private
FFixDesignSize: Boolean;
procedure TSSPacer.SetBounds(ALeft, ATop, AWidth, AHeight: Integer);
begin
if FFixDesignSize then
begin
inherited SetBounds(ALeft, ATop, 8, 8);
FFixDesignSize := False;
end
else
inherited SetBounds(ALeft, ATop, AWidth, AHeight);
end;
procedure TSSPacer.SetParent(AParent: TWinControl);
begin
FFixDesignSize := (csDesigning in ComponentState) and (Parent = nil) and
(AParent <> nil);
inherited SetParent(AParent);
end;
And to complete this answer with a call stack of dropping this control in the designer on a form:
- Before SetBounds
- After SetBounds
- Before SetBounds
- After SetBounds
- Before SetParent
- Before SetBounds
- After SetBounds
- After SetParent
- Before SetBounds
- After SetBounds
- Before SetParent
- After SetParent
But I think you should not rely on this specific order or number of calls: I suspect it might differ between Delphi versions.
SetBoundsdetermine that the component is in design time AND its creation has been finished (Loadedprocedure is just for run-time). I've tried a quick (have no time :) debug and it seems that something in the property filler modifies these values. +1 anyway, interesting question! – TLama Jan 25 at 17:58