IDE: ssh debugger note: worwrap, bug #16444

git-svn-id: trunk@25381 -
This commit is contained in:
mattias 2010-05-13 18:29:46 +00:00
parent 88fada8125
commit e7a23e60aa

View File

@ -62,6 +62,8 @@ implementation
type
{ TSSHGDBMINotePropertyEditor }
TSSHGDBMINotePropertyEditor = class(TStringPropertyEditor)
private
protected
@ -71,6 +73,8 @@ type
procedure SetValue(const NewValue: ansistring); override;
procedure PropMeasureHeight(const NewValue: ansistring; ACanvas:TCanvas;
var AHeight:Integer); override;
procedure PropDrawValue(ACanvas: TCanvas; const ARect: TRect;
AState: TPropEditDrawState); override;
end;
{ TSSHGDBMINotePropertyEditor }
@ -91,6 +95,26 @@ begin
AHeight := 100;
end;
procedure TSSHGDBMINotePropertyEditor.PropDrawValue(ACanvas: TCanvas;
const ARect: TRect; AState: TPropEditDrawState);
var
Style : TTextStyle;
begin
FillChar(Style,SizeOf(Style),0);
With Style do begin
Alignment := taLeftJustify;
Layout := tlTop;
Opaque := False;
Clipping := True;
ShowPrefix := True;
WordBreak := True;
SingleLine := False;
ExpandTabs := True;
SystemFont := False;
end;
ACanvas.TextRect(ARect,ARect.Left+3,ARect.Top,GetVisualValue, Style);
end;
procedure TSSHGDBMINotePropertyEditor.SetValue (const NewValue: ansistring);
begin
// cannot write to note