mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 10:18:05 +02:00
parent
88fada8125
commit
e7a23e60aa
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user