richmemo: implementing Redo and CanRedo for Win32

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5844 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
skalogryz
2017-04-30 02:22:02 +00:00
parent a11167faac
commit d9a05ba0b9
3 changed files with 47 additions and 1 deletions

View File

@@ -203,6 +203,7 @@ type
CurrentPage: Integer; var AbortPrint: Boolean);
procedure DoLinkAction(ALinkAction: TLinkAction; const AMouseInfo: TLinkMouseInfo;
LinkStart, LinkEnd: Integer);
function GetCanRedo: Boolean; virtual;
public
constructor Create(AOwner: TComponent); override;
@@ -257,11 +258,14 @@ type
function CharAtPos(x, y: Integer): Integer;
procedure Redo; virtual;
property HideSelection : Boolean read fHideSelection write SetHideSelection;
property OnSelectionChange: TNotifyEvent read fOnSelectionChange write fOnSelectionChange;
property ZoomFactor: Double read GetZoomFactor write SetZoomFactor;
property OnPrintAction: TPrintActionEvent read fOnPrintAction write fOnPrintAction;
property OnLinkAction: TLinkActionEvent read fOnLinkAction write fOnLinkAction;
property CanRedo: Boolean read GetCanRedo;
end;
{ TRichMemo }
@@ -1102,6 +1106,14 @@ begin
Result:=-1;
end;
function TCustomRichMemo.GetCanRedo: Boolean;
begin
if HandleAllocated then
Result:=TWSCustomRichMemoClass(WidgetSetClass).GetCanRedo(Self)
else
Result:=false;
end;
function TCustomRichMemo.PrintMeasure(const params: TPrintParams; var est: TPrintMeasure): Boolean;
begin
if not Assigned(Printer) then begin
@@ -1117,5 +1129,11 @@ begin
Result:=false;
end;
procedure TCustomRichMemo.Redo;
begin
if HandleAllocated then
TWSCustomRichMemoClass(WidgetSetClass).Redo(Self);
end;
end.