-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfileprops.lfm
151 lines (151 loc) · 2.61 KB
/
fileprops.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 FileProperties: TFileProperties
Left = 103
Height = 314
Top = 164
Width = 288
BorderStyle = bsDialog
Caption = 'Properties'
ClientHeight = 314
ClientWidth = 288
OnCreate = FormCreate
LCLVersion = '2.0.10.0'
object OKButton: TButton
Left = 184
Height = 25
Top = 264
Width = 75
Caption = 'OK'
OnClick = OKButtonClick
TabOrder = 0
end
object Label1: TLabel
Left = 40
Height = 1
Top = 8
Width = 1
ParentColor = False
end
object Label2: TLabel
Left = 24
Height = 15
Top = 24
Width = 116
Caption = 'PNG Tranparent RGBA'
ParentColor = False
end
object ColorIndexCheckBox: TCheckBox
Left = 40
Height = 19
Top = 48
Width = 81
Caption = 'Color Index'
OnChange = ValueChange
TabOrder = 1
end
object ColorIndexValue: TEdit
Left = 128
Height = 23
Top = 48
Width = 32
OnChange = ValueChange
TabOrder = 2
Text = '0'
end
object FuschiaCheckBox: TCheckBox
Left = 40
Height = 19
Top = 80
Width = 165
Caption = 'Fuschia (R=255 G=0 B=255)'
Checked = True
OnChange = ValueChange
State = cbChecked
TabOrder = 3
end
object CustomCheckBox: TCheckBox
Left = 40
Height = 19
Top = 110
Width = 62
Caption = 'Custom'
OnChange = ValueChange
TabOrder = 4
end
object RV: TEdit
Left = 40
Height = 23
Top = 160
Width = 32
OnChange = ValueChange
TabOrder = 5
Text = '0'
end
object R: TLabel
Left = 40
Height = 15
Top = 144
Width = 7
Caption = 'R'
ParentColor = False
end
object G: TLabel
Left = 80
Height = 15
Top = 144
Width = 8
Caption = 'G'
ParentColor = False
end
object GV: TEdit
Left = 80
Height = 23
Top = 160
Width = 32
OnChange = ValueChange
TabOrder = 6
Text = '0'
end
object B: TLabel
Left = 120
Height = 15
Top = 144
Width = 7
Caption = 'B'
ParentColor = False
end
object BV: TEdit
Left = 120
Height = 23
Top = 160
Width = 32
OnChange = ValueChange
TabOrder = 7
Text = '0'
end
object A: TLabel
Left = 160
Height = 15
Top = 144
Width = 8
Caption = 'A'
ParentColor = False
end
object AV: TEdit
Left = 160
Height = 23
Top = 160
Width = 32
OnChange = ValueChange
TabOrder = 8
Text = '0'
end
object TextToClipboardCheckBox: TCheckBox
Left = 40
Height = 19
Top = 208
Width = 174
Caption = 'Export Text Files to Clipboard'
OnChange = TextToClipboardCheckBoxChange
TabOrder = 9
end
end