mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
38 lines
682 B
ObjectPascal
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.
|
|
|