110 lines
2.1 KiB
Plaintext
110 lines
2.1 KiB
Plaintext
object PickDialog: TPickDialog
|
|
Left = 200
|
|
Top = 114
|
|
BorderStyle = bsToolWindow
|
|
Caption = 'Pick Transparent Color'
|
|
ClientHeight = 189
|
|
ClientWidth = 349
|
|
Color = clWindow
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -12
|
|
Font.Name = 'Segoe UI'
|
|
Font.Style = []
|
|
FormStyle = fsStayOnTop
|
|
OldCreateOrder = True
|
|
Position = poOwnerFormCenter
|
|
OnCreate = FormCreate
|
|
PixelsPerInch = 96
|
|
TextHeight = 15
|
|
object Label1: TLabel
|
|
Left = 149
|
|
Top = 4
|
|
Width = 141
|
|
Height = 15
|
|
Caption = 'Selected Transparent Color'
|
|
end
|
|
object Label2: TLabel
|
|
Left = 15
|
|
Top = 110
|
|
Width = 314
|
|
Height = 32
|
|
AutoSize = False
|
|
Caption =
|
|
'Click on color to change color then click on Set or click on the' +
|
|
' image with left mouse button.'
|
|
WordWrap = True
|
|
end
|
|
object Label3: TLabel
|
|
Left = 15
|
|
Top = 68
|
|
Width = 25
|
|
Height = 15
|
|
Caption = 'RGB:'
|
|
end
|
|
object Label4: TLabel
|
|
Left = 15
|
|
Top = 89
|
|
Width = 32
|
|
Height = 15
|
|
Caption = 'Color:'
|
|
end
|
|
object Label5: TLabel
|
|
Left = 15
|
|
Top = 4
|
|
Width = 102
|
|
Height = 15
|
|
Caption = 'Color Under Cursor'
|
|
end
|
|
object PickColor: TPanel
|
|
Left = 149
|
|
Top = 22
|
|
Width = 54
|
|
Height = 36
|
|
Color = clBlack
|
|
ParentBackground = False
|
|
TabOrder = 0
|
|
OnClick = PickColorClick
|
|
end
|
|
object Panel1: TPanel
|
|
Left = 0
|
|
Top = 148
|
|
Width = 349
|
|
Height = 41
|
|
Align = alBottom
|
|
BevelOuter = bvNone
|
|
TabOrder = 1
|
|
object Button1: TButton
|
|
Left = 8
|
|
Top = 9
|
|
Width = 75
|
|
Height = 25
|
|
Caption = 'Set'
|
|
TabOrder = 0
|
|
OnClick = Button1Click
|
|
end
|
|
object Button2: TButton
|
|
Left = 89
|
|
Top = 9
|
|
Width = 75
|
|
Height = 25
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 1
|
|
OnClick = Button2Click
|
|
end
|
|
end
|
|
object ColorUnderCursor1: TPanel
|
|
Left = 15
|
|
Top = 22
|
|
Width = 54
|
|
Height = 36
|
|
ParentBackground = False
|
|
TabOrder = 2
|
|
end
|
|
object ColorDialog1: TColorDialog
|
|
Left = 301
|
|
Top = 4
|
|
end
|
|
end
|