OI: improved property value rectangles when there is a button

git-svn-id: trunk@11082 -
This commit is contained in:
mattias 2007-05-05 09:14:52 +00:00
parent fe4c46785a
commit 1cf140d3ce
3 changed files with 27 additions and 4 deletions

View File

@ -2044,21 +2044,21 @@ begin
then begin
RRect := RowRect(ItemIndex);
EditCompRect := RRect;
EditCompRect.Bottom := EditCompRect.Bottom - 1;
if Layout = oilHorizontal
then begin
EditCompRect.Top := RRect.Top - 1;
EditCompRect.Left := RRect.Left + SplitterX;
end
else begin
EditCompRect.Top := RRect.Top + GetNameRowHeight - 1;
EditCompRect.Top := RRect.Top + GetNameRowHeight;
EditCompRect.Left := RRect.Left + GetTreeIconX(ItemIndex) + Indent;
end;
if FCurrentButton<>nil then begin
// edit dialog button
with EditBtnRect do begin
Top := EditCompRect.Top + 1;
Top := EditCompRect.Top;
Left := EditCompRect.Right - 20;
Bottom := EditCompRect.Bottom;
Right := EditCompRect.Right;
@ -2071,7 +2071,9 @@ begin
end;
if FCurrentEdit<>nil then begin
// resize the edit component
EditCompRect.Left := EditCompRect.Left - 1;
Dec(EditCompRect.Left);
Dec(EditCompRect.Top);
Inc(EditCompRect.Bottom);
//debugln('TOICustomPropertyGrid.AlignEditComponents A ',dbgsName(FCurrentEdit),' ',dbgs(EditCompRect));
if not CompareRectangles(FCurrentEdit.BoundsRect,EditCompRect) then begin
FCurrentEdit.BoundsRect:=EditCompRect;
@ -2112,6 +2114,14 @@ begin
ValueRect := FullRect;
Inc(FullRect.Bottom, FRowSpacing);
if ARow = FItemIndex then begin
if Assigned(FCurrentButton) and (FCurrentButton.Visible) then
Dec(FullRect.Right, FCurrentButton.Width);
if Assigned(FCurrentEdit) and (FCurrentEdit.Visible) then
Dec(FullRect.Right, FCurrentEdit.Width);
end;
if Layout = oilHorizontal
then begin
NameRect.Right:=SplitterX;

View File

@ -112,6 +112,7 @@ procedure TCustomLabeledEdit.CreateInternalLabel;
begin
if FEditLabel<>nil then exit;
FEditLabel := TBoundLabel.Create(Self);
//Include(FEditLabel.ComponentStyle,csSubComponent);
FEditLabel.ControlStyle := FEditLabel.ControlStyle + [csNoDesignSelectable];
FEditLabel.FreeNotification(Self);
FEditLabel.FocusControl := Self;

View File

@ -85,6 +85,7 @@ function LCLSendMouseMultiClickMsg(const Target: TControl; XPos, YPos: SmallInt;
function LCLSendDrawListItemMsg(const Target: TControl; const DrawListItemStruct: PDrawListItemStruct): PtrInt;
function LCLSendInternalPaintMsg(const Target: TControl; DC: HDC): PtrInt;
function LCLSendDropDownMsg(const Target: TControl): PtrInt;
function LCLSendCloseUpMsg(const Target: TControl): PtrInt;
implementation
@ -1240,6 +1241,17 @@ begin
Result := DeliverMessage(Target, Mess);
end;
function LCLSendCloseUpMsg(const Target: TControl): PtrInt;
var
Mess : TLMCommand;
begin
FillChar(Mess, SizeOf(Mess), 0);
Mess.Msg := CN_Command;
Mess.NotifyCode := CBN_CLOSEUP;
Result := DeliverMessage(Target, Mess);
end;
// Remove these lines as you implement the function