-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdlg_colors.lfm
143 lines (143 loc) · 2.88 KB
/
dlg_colors.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
object ColorsDlg: TColorsDlg
Left = 540
Height = 233
Top = 548
Width = 424
Caption = 'Colors'
ClientHeight = 233
ClientWidth = 424
LCLVersion = '3.0.0.3'
object RadioGroup1: TRadioGroup
Left = 168
Height = 208
Top = 16
Width = 129
AutoFill = True
Caption = 'Dithering'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 188
ClientWidth = 125
ItemIndex = 1
Items.Strings = (
'None'
'Floyd-Steinberg'
'Burkes'
'Stucki'
'Jarvis'
'Atkinson'
'Sierra 2'
'Sierra 3'
'Sierra 4'
)
TabOrder = 0
end
object Button1: TButton
Left = 320
Height = 25
Top = 24
Width = 75
Caption = 'OK'
TabOrder = 1
OnClick = Button1Click
end
object GroupBox1: TGroupBox
Left = 16
Height = 208
Top = 16
Width = 137
Caption = 'Colors'
ClientHeight = 188
ClientWidth = 133
TabOrder = 2
object Edit1: TEdit
Left = 56
Height = 23
Top = 152
Width = 56
TabOrder = 0
Text = '256'
end
object UpDown1: TUpDown
Left = 112
Height = 23
Top = 152
Width = 17
Associate = Edit1
Max = 256
Min = 2
Position = 256
TabOrder = 1
end
object RadioButton1: TRadioButton
Tag = 2
Left = 8
Height = 19
Top = 11
Width = 24
Caption = '2'
TabOrder = 2
end
object RadioButton2: TRadioButton
Tag = 16
Left = 8
Height = 19
Top = 32
Width = 30
Caption = '16'
TabOrder = 3
end
object RadioButton3: TRadioButton
Tag = 32
Left = 8
Height = 19
Top = 56
Width = 30
Caption = '32'
TabOrder = 4
end
object RadioButton4: TRadioButton
Tag = 64
Left = 8
Height = 19
Top = 80
Width = 30
Caption = '64'
TabOrder = 5
end
object RadioButton5: TRadioButton
Tag = 128
Left = 8
Height = 19
Top = 104
Width = 36
Caption = '128'
TabOrder = 6
end
object RadioButton6: TRadioButton
Tag = 256
Left = 8
Height = 19
Top = 128
Width = 36
Caption = '256'
Checked = True
TabOrder = 7
TabStop = True
end
object RadioButton7: TRadioButton
Tag = 1
Left = 8
Height = 19
Top = 152
Width = 41
Caption = '--->'
TabOrder = 8
end
end
end