86 lines
1.6 KiB
Plaintext
86 lines
1.6 KiB
Plaintext
object fConvBW: TfConvBW
|
|
Left = 200
|
|
Top = 128
|
|
BorderStyle = bsDialog
|
|
Caption = 'Convert to Black & White'
|
|
ClientHeight = 135
|
|
ClientWidth = 297
|
|
Color = clBtnFace
|
|
Font.Charset = ANSI_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = True
|
|
Position = poMainFormCenter
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object RadioGroup1: TRadioGroup
|
|
Left = 8
|
|
Top = 12
|
|
Width = 89
|
|
Height = 81
|
|
Caption = ' Dithering '
|
|
ItemIndex = 0
|
|
Items.Strings = (
|
|
'Threshold'
|
|
'Ordered')
|
|
TabOrder = 0
|
|
OnClick = RadioGroup1Click
|
|
end
|
|
object Button1: TButton
|
|
Left = 8
|
|
Top = 100
|
|
Width = 75
|
|
Height = 25
|
|
Caption = 'OK'
|
|
Default = True
|
|
ModalResult = 1
|
|
TabOrder = 1
|
|
end
|
|
object Button2: TButton
|
|
Left = 92
|
|
Top = 100
|
|
Width = 75
|
|
Height = 25
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 2
|
|
end
|
|
object GroupBox1: TGroupBox
|
|
Left = 104
|
|
Top = 12
|
|
Width = 185
|
|
Height = 81
|
|
Caption = ' Threshold parameters '
|
|
TabOrder = 3
|
|
object Label1: TLabel
|
|
Left = 6
|
|
Top = 22
|
|
Width = 76
|
|
Height = 13
|
|
Caption = 'Threshold value'
|
|
FocusControl = Edit1
|
|
end
|
|
object SpeedButton1: TSpeedButton
|
|
Left = 128
|
|
Top = 17
|
|
Width = 41
|
|
Height = 25
|
|
AllowAllUp = True
|
|
GroupIndex = 1
|
|
Caption = 'Auto'
|
|
OnClick = SpeedButton1Click
|
|
end
|
|
object Edit1: TEdit
|
|
Left = 87
|
|
Top = 19
|
|
Width = 34
|
|
Height = 21
|
|
TabOrder = 0
|
|
Text = '1'
|
|
end
|
|
end
|
|
end
|