unit SVNCommitForm; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, ButtonPanel, StdCtrls, Process, LCLProc; type { TSVNCommitFrm } TSVNCommitFrm = class(TForm) ButtonPanel: TButtonPanel; SVNCommitMemo: TMemo; procedure FormCreate(Sender: TObject); procedure FormShow(Sender: TObject); private { private declarations } FSVNCommandLine: string; public { public declarations } procedure Execute(Data: PtrInt); property SVNCommandLine: string read FSVNCommandLine write FSVNCommandLine; end; procedure ShowSVNCommitFrm(ACmdLine: string); implementation uses SVNClasses; procedure ShowSVNCommitFrm(ACmdLine: string); var SVNCommitFrm: TSVNCommitFrm; begin SVNCommitFrm := TSVNCommitFrm.Create(nil); SVNCommitFrm.SVNCommandLine:=ACmdLine; SVNCommitFrm.ShowModal; SVNCommitFrm.Free; end; { TSVNCommitFrm } procedure TSVNCommitFrm.FormShow(Sender: TObject); begin Application.QueueAsyncCall(@Execute, 0); end; procedure TSVNCommitFrm.Execute(Data: PtrInt); begin CmdLineToMemo(SVNCommandLine, SVNCommitMemo); end; procedure TSVNCommitFrm.FormCreate(Sender: TObject); begin Caption := rsLazarusSVNCommit; end; initialization {$I svncommitform.lrs} end.