This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
frmDetails.dfm
181 lines (181 loc) · 3.51 KB
/
frmDetails.dfm
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
object Details: TDetails
Left = 192
Top = 103
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Detailed information...'
ClientHeight = 234
ClientWidth = 296
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poDesktopCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 15
Top = 160
Width = 266
Height = 41
AutoSize = False
Caption =
'You can provided this information only in this moment! After cre' +
'ating nad saving the file, another edit will not be possible.'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
Layout = tlCenter
WordWrap = True
end
object Label2: TLabel
Left = 4
Top = 144
Width = 56
Height = 13
Caption = 'Warning!'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Panel5: TPanel
Left = 36
Top = 4
Width = 225
Height = 17
Caption = 'File details:'
TabOrder = 7
end
object Panel6: TPanel
Left = 4
Top = 50
Width = 93
Height = 17
Caption = 'Author:'
TabOrder = 8
end
object Panel7: TPanel
Left = 4
Top = 74
Width = 93
Height = 17
Caption = 'Mode:'
TabOrder = 9
end
object Panel8: TPanel
Left = 4
Top = 98
Width = 93
Height = 17
Caption = 'Creation date:'
TabOrder = 10
end
object Panel12: TPanel
Left = 4
Top = 122
Width = 93
Height = 17
Caption = 'Short description:'
TabOrder = 11
end
object BitBtn1: TBitBtn
Left = 8
Top = 206
Width = 137
Height = 25
Caption = 'Create new file'
Enabled = False
TabOrder = 5
Kind = bkOK
end
object BitBtn2: TBitBtn
Left = 152
Top = 206
Width = 137
Height = 25
Caption = 'Cancel'
TabOrder = 6
Kind = bkCancel
end
object Panel3: TPanel
Left = 4
Top = 24
Width = 260
Height = 21
BevelOuter = bvNone
BorderStyle = bsSingle
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 12
end
object Button1: TButton
Left = 271
Top = 24
Width = 21
Height = 21
Caption = '...'
TabOrder = 0
OnClick = Button1Click
end
object Edit1: TEdit
Left = 100
Top = 48
Width = 192
Height = 21
Enabled = False
MaxLength = 50
TabOrder = 1
end
object Edit2: TEdit
Left = 100
Top = 96
Width = 192
Height = 21
Enabled = False
MaxLength = 30
TabOrder = 3
end
object Edit3: TEdit
Left = 100
Top = 120
Width = 192
Height = 21
Enabled = False
MaxLength = 200
TabOrder = 4
end
object SpinEdit1: TSpinEdit
Left = 100
Top = 72
Width = 192
Height = 22
Enabled = False
MaxLength = 1
MaxValue = 3
MinValue = 1
TabOrder = 2
Value = 1
end
object SaveDialog1: TSaveDialog
DefaultExt = '*.nam'
Filter = 'GenName files (*.nam)|*.nam|All files (*.*)|*.*'
Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
Title = 'Save as...'
end
end