104 lines
2.0 KiB
Plaintext
104 lines
2.0 KiB
Plaintext
object frmHistogram: TfrmHistogram
|
|
Left = 167
|
|
Top = 126
|
|
BorderIcons = [biSystemMenu]
|
|
BorderStyle = bsDialog
|
|
Caption = 'Histogram'
|
|
ClientHeight = 223
|
|
ClientWidth = 319
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = True
|
|
Position = poScreenCenter
|
|
OnCreate = FormCreate
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Label1: TLabel
|
|
Left = 23
|
|
Top = 152
|
|
Width = 43
|
|
Height = 13
|
|
Caption = 'Channel:'
|
|
end
|
|
object Label2: TLabel
|
|
Left = 191
|
|
Top = 152
|
|
Width = 28
|
|
Height = 13
|
|
Caption = 'Style:'
|
|
end
|
|
object Panel1: TPanel
|
|
Left = 12
|
|
Top = 10
|
|
Width = 297
|
|
Height = 129
|
|
BevelOuter = bvLowered
|
|
BorderWidth = 5
|
|
TabOrder = 0
|
|
object HistogramBox1: THistogramBox
|
|
Left = 6
|
|
Top = 6
|
|
Width = 285
|
|
Height = 117
|
|
AttachedImageEnProc = ImageEnProc1
|
|
Background = clBtnFace
|
|
Align = alClient
|
|
end
|
|
end
|
|
object ComboBox1: TComboBox
|
|
Left = 73
|
|
Top = 148
|
|
Width = 80
|
|
Height = 21
|
|
Style = csDropDownList
|
|
ItemHeight = 13
|
|
TabOrder = 1
|
|
OnChange = ComboBox1Change
|
|
Items.Strings = (
|
|
'RGB (Gray)'
|
|
'RGB (All)'
|
|
'Red'
|
|
'Green'
|
|
'Blue'
|
|
'Hue')
|
|
end
|
|
object ComboBox2: TComboBox
|
|
Left = 224
|
|
Top = 148
|
|
Width = 78
|
|
Height = 21
|
|
Style = csDropDownList
|
|
ItemHeight = 13
|
|
TabOrder = 2
|
|
OnChange = ComboBox2Change
|
|
Items.Strings = (
|
|
'Bars'
|
|
'Lines'
|
|
'Combined')
|
|
end
|
|
object Button1: TButton
|
|
Left = 234
|
|
Top = 184
|
|
Width = 75
|
|
Height = 25
|
|
Caption = 'Close'
|
|
Default = True
|
|
ModalResult = 1
|
|
TabOrder = 3
|
|
end
|
|
object ImageEnProc1: TImageEnProc
|
|
PreviewsParams = [prppShowResetButton, prppHardReset]
|
|
PreviewFont.Charset = DEFAULT_CHARSET
|
|
PreviewFont.Color = clWindowText
|
|
PreviewFont.Height = -11
|
|
PreviewFont.Name = 'Tahoma'
|
|
PreviewFont.Style = []
|
|
Left = 48
|
|
Top = 24
|
|
end
|
|
end
|