doublecmd/src/fsyncdirsperformdlg.pas
2015-07-05 07:38:49 +00:00

38 lines
682 B
ObjectPascal

unit fSyncDirsPerformDlg;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
ExtCtrls, ButtonPanel;
type
{ TfrmSyncDirsPerformDlg }
TfrmSyncDirsPerformDlg = class(TForm)
Bevel1: TBevel;
ButtonPanel1: TButtonPanel;
chkDeleteRight: TCheckBox;
chkConfirmOverwrites: TCheckBox;
chkLeftToRight: TCheckBox;
chkRightToLeft: TCheckBox;
edRightPath: TEdit;
edLeftPath: TEdit;
private
{ private declarations }
public
{ public declarations }
end;
var
frmSyncDirsPerformDlg: TfrmSyncDirsPerformDlg;
implementation
{$R *.lfm}
end.