-
Notifications
You must be signed in to change notification settings - Fork 13
/
SCCopyErrorForm.pas
121 lines (101 loc) · 3.13 KB
/
SCCopyErrorForm.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
This file is part of SuperCopier.
SuperCopier is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
SuperCopier is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
}
unit SCCopyErrorForm;
{$MODE Delphi}
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, SCCopier,SCCommon,
SCFileNameLabel, ScPopupButton, Menus, SCLocEngine;
type
TCopyErrorForm = class(TForm)
imIcon: TImage;
llCopyErrorText3: TLabel;
llCopyErrorText1: TLabel;
llCopyErrorText2: TLabel;
mmErrorText: TMemo;
llFileName: TSCFileNameLabel;
pmRetry: TPopupMenu;
Retry1: TMenuItem;
Alwaysretry1: TMenuItem;
btRetry: TScPopupButton;
btEndOfList: TScPopupButton;
pmEndOfList: TPopupMenu;
pmSkip: TPopupMenu;
Skip1: TMenuItem;
Alwaysskip1: TMenuItem;
btSkip: TScPopupButton;
btCancel: TScPopupButton;
Endoflist1: TMenuItem;
Alwaysputtoendoflist1: TMenuItem;
procedure FormCreate(Sender: TObject);
procedure btCancelClick(Sender: TObject; ItemIndex: Integer);
procedure btSkipClick(Sender: TObject; ItemIndex: Integer);
procedure btEndOfListClick(Sender: TObject; ItemIndex: Integer);
procedure btRetryClick(Sender: TObject; ItemIndex: Integer);
private
{ Dйclarations privйes }
procedure DisableButtons;
public
{ Dйclarations publiques }
Action:TCopyErrorAction;
SameForNext:Boolean;
end;
var
CopyErrorForm: TCopyErrorForm;
implementation
{$R *.lfm}
procedure TCopyErrorForm.DisableButtons;
begin
btCancel.Enabled:=False;
btSkip.Enabled:=False;
btRetry.Enabled:=False;
btEndOfList.Enabled:=False;
end;
procedure TCopyErrorForm.FormCreate(Sender: TObject);
begin
LocEngine.TranslateForm(Self);
//HACK: ne pas mettre directement la fenкtre en resizeable pour que
// la gestion des grandes polices puisse la redimentionner
BorderStyle:=bsSizeToolWin;
// empйcher le resize vertical
Constraints.MaxHeight:=Height;
Constraints.MinHeight:=Height;
Action:=ceaNone;
SameForNext:=False;
end;
procedure TCopyErrorForm.btCancelClick(Sender: TObject;
ItemIndex: Integer);
begin
Action:=ceaCancel;
DisableButtons;
end;
procedure TCopyErrorForm.btSkipClick(Sender: TObject; ItemIndex: Integer);
begin
Action:=ceaSkip;
SameForNext:=ItemIndex=1;
DisableButtons;
end;
procedure TCopyErrorForm.btEndOfListClick(Sender: TObject;
ItemIndex: Integer);
begin
Action:=ceaEndOfList;
SameForNext:=ItemIndex=1;
DisableButtons;
end;
procedure TCopyErrorForm.btRetryClick(Sender: TObject; ItemIndex: Integer);
begin
Action:=ceaRetry;
SameForNext:=ItemIndex=1;
DisableButtons;
end;
end.