mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 09:58:12 +02:00
134 lines
3.0 KiB
Plaintext
134 lines
3.0 KiB
Plaintext
object ColorsFrm: TColorsFrm
|
|
Left = 549
|
|
Height = 194
|
|
Top = 321
|
|
Width = 372
|
|
BorderIcons = [biSystemMenu]
|
|
BorderStyle = bsDialog
|
|
Caption = 'Colors'
|
|
ClientHeight = 194
|
|
ClientWidth = 372
|
|
OnCreate = FormCreate
|
|
Position = poOwnerFormCenter
|
|
LCLVersion = '1.9.0.0'
|
|
object lbName: TLabel
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = Owner
|
|
Left = 85
|
|
Height = 15
|
|
Top = 25
|
|
Width = 32
|
|
BorderSpacing.Left = 85
|
|
BorderSpacing.Top = 25
|
|
Caption = 'Name'
|
|
ParentColor = False
|
|
end
|
|
object lbDescription: TLabel
|
|
AnchorSideLeft.Control = lbName
|
|
AnchorSideTop.Control = lbName
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 85
|
|
Height = 15
|
|
Top = 60
|
|
Width = 60
|
|
BorderSpacing.Top = 20
|
|
Caption = 'Description'
|
|
ParentColor = False
|
|
end
|
|
object lbLicense: TLabel
|
|
AnchorSideLeft.Control = lbName
|
|
AnchorSideTop.Control = lbDescription
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 85
|
|
Height = 15
|
|
Top = 95
|
|
Width = 39
|
|
BorderSpacing.Top = 20
|
|
Caption = 'License'
|
|
ParentColor = False
|
|
end
|
|
object shName: TShape
|
|
AnchorSideLeft.Control = lbName
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = lbName
|
|
AnchorSideTop.Side = asrCenter
|
|
Left = 167
|
|
Height = 27
|
|
Top = 19
|
|
Width = 76
|
|
BorderSpacing.Left = 50
|
|
OnMouseUp = shNameMouseUp
|
|
end
|
|
object shDescription: TShape
|
|
Tag = 1
|
|
AnchorSideLeft.Control = lbName
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = lbDescription
|
|
AnchorSideTop.Side = asrCenter
|
|
Left = 167
|
|
Height = 27
|
|
Top = 54
|
|
Width = 76
|
|
BorderSpacing.Left = 50
|
|
OnMouseDown = shNameMouseUp
|
|
end
|
|
object shLicense: TShape
|
|
Tag = 2
|
|
AnchorSideLeft.Control = lbName
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = lbLicense
|
|
AnchorSideTop.Side = asrCenter
|
|
Left = 167
|
|
Height = 27
|
|
Top = 89
|
|
Width = 76
|
|
BorderSpacing.Left = 50
|
|
OnMouseDown = shNameMouseUp
|
|
end
|
|
object bp: TButtonPanel
|
|
Left = 6
|
|
Height = 34
|
|
Top = 154
|
|
Width = 360
|
|
OKButton.Name = 'OKButton'
|
|
OKButton.DefaultCaption = True
|
|
HelpButton.Name = 'HelpButton'
|
|
HelpButton.Caption = '&Restore defaults'
|
|
HelpButton.DefaultCaption = False
|
|
HelpButton.OnClick = HelpButtonClick
|
|
CloseButton.Name = 'CloseButton'
|
|
CloseButton.DefaultCaption = True
|
|
CancelButton.Name = 'CancelButton'
|
|
CancelButton.DefaultCaption = True
|
|
TabOrder = 0
|
|
ShowButtons = [pbOK, pbCancel, pbHelp]
|
|
end
|
|
object CD: TColorDialog
|
|
Color = clBlack
|
|
CustomColors.Strings = (
|
|
'ColorA=000000'
|
|
'ColorB=000080'
|
|
'ColorC=008000'
|
|
'ColorD=008080'
|
|
'ColorE=800000'
|
|
'ColorF=800080'
|
|
'ColorG=808000'
|
|
'ColorH=808080'
|
|
'ColorI=C0C0C0'
|
|
'ColorJ=0000FF'
|
|
'ColorK=00FF00'
|
|
'ColorL=00FFFF'
|
|
'ColorM=FF0000'
|
|
'ColorN=FF00FF'
|
|
'ColorO=FFFF00'
|
|
'ColorP=FFFFFF'
|
|
'ColorQ=C0DCC0'
|
|
'ColorR=F0CAA6'
|
|
'ColorS=F0FBFF'
|
|
'ColorT=A4A0A0'
|
|
)
|
|
left = 8
|
|
top = 112
|
|
end
|
|
end
|