-
Notifications
You must be signed in to change notification settings - Fork 0
/
imagestodepot.lfm
151 lines (151 loc) · 3.21 KB
/
imagestodepot.lfm
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
object FormSaveImagesOnDepot: TFormSaveImagesOnDepot
Left = 680
Height = 292
Top = 253
Width = 544
BorderStyle = bsDialog
Caption = 'Save images on depot'
ClientHeight = 292
ClientWidth = 544
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.0.10.0'
object ButtonCopy: TButton
Left = 9
Height = 25
Top = 256
Width = 142
AutoSize = True
Caption = 'Save images on depot'
OnClick = ButtonCopyClick
TabOrder = 0
end
object ButtonClose: TButton
Left = 396
Height = 25
Top = 256
Width = 142
Caption = 'Close'
OnClick = ButtonCloseClick
TabOrder = 1
end
object GroupBoxMountDepot: TGroupBox
Left = 8
Height = 80
Top = 89
Width = 530
Caption = 'Mount depot'
ClientHeight = 60
ClientWidth = 526
Enabled = False
ParentFont = False
TabOrder = 2
object LabelUser: TLabel
Left = 6
Height = 15
Top = 2
Width = 23
Caption = 'User'
ParentColor = False
ParentFont = False
end
object EditUser: TEdit
Left = 6
Height = 23
Top = 19
Width = 194
ParentFont = False
TabOrder = 0
end
object LabelPassword: TLabel
Left = 216
Height = 15
Top = 2
Width = 50
Caption = 'Password'
ParentColor = False
ParentFont = False
end
object EditPassword: TEdit
Left = 215
Height = 23
Top = 19
Width = 305
EchoMode = emPassword
ParentFont = False
PasswordChar = '*'
TabOrder = 1
end
end
object GroupBoxPath: TGroupBox
Left = 9
Height = 73
Top = 7
Width = 529
Caption = 'Path to depot'
ClientHeight = 53
ClientWidth = 525
TabOrder = 3
object DirectoryEditPathToDepot: TDirectoryEdit
Left = 6
Height = 23
Top = 0
Width = 515
ShowHidden = False
ButtonWidth = 23
NumGlyphs = 1
MaxLength = 0
TabOrder = 0
OnChange = DirectoryEditPathToDepotChange
end
object CheckBoxMountDepot: TCheckBox
Left = 7
Height = 19
Top = 29
Width = 90
Caption = 'Mount depot'
OnChange = CheckBoxMountDepotChange
TabOrder = 1
end
end
object GroupBoxProgress: TGroupBox
Left = 9
Height = 72
Top = 176
Width = 529
Caption = 'Progress'
ClientHeight = 52
ClientWidth = 525
TabOrder = 4
object PanelInfo: TPanel
Left = 0
Height = 44
Top = 0
Width = 524
BevelOuter = bvNone
ClientHeight = 44
ClientWidth = 524
TabOrder = 0
object LabelInfo: TLabel
Left = 5
Height = 15
Top = 5
Width = 514
Align = alTop
Anchors = [akTop, akLeft, akRight, akBottom]
AutoSize = False
BorderSpacing.Around = 5
ParentColor = False
end
object ProgressBar: TProgressBar
Left = 5
Height = 15
Top = 24
Width = 514
Align = alBottom
BorderSpacing.Around = 5
TabOrder = 0
end
end
end
end