forked from ThePacielloGroup/CCA-Win
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormIMGConvert.dfm
More file actions
116 lines (116 loc) · 2.43 KB
/
FormIMGConvert.dfm
File metadata and controls
116 lines (116 loc) · 2.43 KB
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
object frmIMGConvert: TfrmIMGConvert
Left = 287
Top = 223
Caption = 'Image file convert'
ClientHeight = 483
ClientWidth = 777
Color = clBtnFace
Constraints.MinHeight = 325
ParentFont = True
OldCreateOrder = False
PopupMode = pmExplicit
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object ScrollBox1: TScrollBox
Left = 0
Top = 65
Width = 777
Height = 418
Align = alClient
TabOrder = 1
TabStop = True
object Image1: TImage
Left = 0
Top = 0
Width = 79
Height = 96
AutoSize = True
end
end
object ScrollBox2: TScrollBox
Left = 0
Top = 0
Width = 777
Height = 65
Align = alTop
TabOrder = 0
TabStop = True
object gbSimulation: TGroupBox
Left = 408
Top = 11
Width = 354
Height = 47
Caption = 'Simulation'
TabOrder = 1
object btnSave: TButton
Left = 164
Top = 17
Width = 87
Height = 27
Caption = '&Save'
Enabled = False
TabOrder = 0
OnClick = btnSaveClick
end
object btnPreview: TButton
Left = 257
Top = 17
Width = 88
Height = 27
Caption = '&Preview'
Enabled = False
TabOrder = 1
OnClick = btnPreviewClick
end
object cmbSimu: TAccComboBox
Left = 3
Top = 14
Width = 155
Height = 21
Style = csDropDownList
TabOrder = 2
AccName = 'Simuration Combobox'
end
end
object gbSelIMG: TGroupBox
Left = 3
Top = 10
Width = 399
Height = 47
Caption = 'Select image file'
TabOrder = 0
object edtFileName: TEdit
Left = 3
Top = 15
Width = 310
Height = 21
TabOrder = 0
OnKeyPress = edtFileNameKeyPress
end
object btnBrowse: TButton
Left = 319
Top = 17
Width = 71
Height = 27
Caption = '&Browse'
TabOrder = 1
OnClick = btnBrowseClick
end
end
end
object OpenDialog1: TOpenDialog
Filter = 'BMP File (*.bmp)|*.bmp|JPEG File (*.jpg)|*.jpg'
FilterIndex = 2
Left = 208
Top = 272
end
object SaveDialog1: TSaveDialog
Filter = 'BMP File (*.bmp)|*.bmp|JPEG File (*.jpg)|*.jpg'
FilterIndex = 2
Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
Left = 240
Top = 272
end
end