mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-20 09:59:09 +02:00
packages: apply patch of Maxim Ganetsky which fixes open installed package dialog open button event and change listview to select full row
git-svn-id: trunk@18693 -
This commit is contained in:
parent
c7f5567ce6
commit
b302ed9634
@ -3,106 +3,40 @@ object OpenInstalledPackagesDlg: TOpenInstalledPackagesDlg
|
|||||||
Height = 370
|
Height = 370
|
||||||
Top = 303
|
Top = 303
|
||||||
Width = 453
|
Width = 453
|
||||||
HelpContext = 0
|
|
||||||
ActiveControl = PkgListView
|
ActiveControl = PkgListView
|
||||||
Align = alNone
|
|
||||||
AllowDropFiles = False
|
|
||||||
AutoScroll = True
|
|
||||||
AutoSize = False
|
|
||||||
BorderIcons = [biSystemMenu, biMinimize, biMaximize]
|
|
||||||
BorderStyle = bsSizeable
|
|
||||||
Caption = 'OpenInstalledPackagesDlg'
|
Caption = 'OpenInstalledPackagesDlg'
|
||||||
ChildSizing.LeftRightSpacing = 0
|
|
||||||
ChildSizing.TopBottomSpacing = 0
|
|
||||||
ChildSizing.HorizontalSpacing = 0
|
|
||||||
ChildSizing.VerticalSpacing = 0
|
|
||||||
ChildSizing.ControlsPerLine = 0
|
|
||||||
ClientHeight = 370
|
ClientHeight = 370
|
||||||
ClientWidth = 453
|
ClientWidth = 453
|
||||||
DockSite = False
|
|
||||||
DragKind = dkDrag
|
|
||||||
DragMode = dmManual
|
|
||||||
Enabled = True
|
|
||||||
Font.Height = 0
|
|
||||||
Font.Style = []
|
|
||||||
FormStyle = fsNormal
|
|
||||||
OnCreate = FormCreate
|
OnCreate = FormCreate
|
||||||
ParentBiDiMode = True
|
|
||||||
ParentFont = False
|
|
||||||
Position = poScreenCenter
|
Position = poScreenCenter
|
||||||
ShowInTaskBar = stDefault
|
|
||||||
UseDockManager = False
|
|
||||||
LCLVersion = '0.9.27'
|
LCLVersion = '0.9.27'
|
||||||
WindowState = wsNormal
|
|
||||||
object HintMemo: TMemo
|
object HintMemo: TMemo
|
||||||
AnchorSideBottom.Control = CancelButton
|
AnchorSideBottom.Control = CancelButton
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 94
|
Height = 97
|
||||||
Top = 235
|
Top = 235
|
||||||
Width = 453
|
Width = 453
|
||||||
HelpContext = 0
|
|
||||||
Align = alTop
|
Align = alTop
|
||||||
Alignment = taLeftJustify
|
|
||||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||||
BorderSpacing.Left = 0
|
|
||||||
BorderSpacing.Top = 0
|
|
||||||
BorderSpacing.Right = 0
|
|
||||||
BorderSpacing.Bottom = 0
|
|
||||||
BorderSpacing.Around = 0
|
|
||||||
BorderSpacing.CellAlignHorizontal = ccaFill
|
|
||||||
BorderSpacing.CellAlignVertical = ccaFill
|
|
||||||
DragCursor = crDrag
|
|
||||||
DragMode = dmManual
|
|
||||||
Enabled = True
|
|
||||||
Lines.Strings = (
|
Lines.Strings = (
|
||||||
'Memo1'
|
'Memo1'
|
||||||
)
|
)
|
||||||
MaxLength = -1
|
|
||||||
ParentBidiMode = True
|
|
||||||
ParentFont = True
|
|
||||||
ReadOnly = True
|
ReadOnly = True
|
||||||
ScrollBars = ssAutoBoth
|
ScrollBars = ssAutoBoth
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
TabStop = True
|
|
||||||
Visible = True
|
|
||||||
WantReturns = True
|
|
||||||
WantTabs = False
|
|
||||||
end
|
end
|
||||||
object PkgListView: TListView
|
object PkgListView: TListView
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 230
|
Height = 230
|
||||||
Top = 0
|
Top = 0
|
||||||
Width = 453
|
Width = 453
|
||||||
HelpContext = 0
|
|
||||||
Align = alTop
|
Align = alTop
|
||||||
BorderSpacing.Left = 0
|
|
||||||
BorderSpacing.Top = 0
|
|
||||||
BorderSpacing.Right = 0
|
|
||||||
BorderSpacing.Bottom = 0
|
|
||||||
BorderSpacing.Around = 0
|
|
||||||
BorderSpacing.CellAlignHorizontal = ccaFill
|
|
||||||
BorderSpacing.CellAlignVertical = ccaFill
|
|
||||||
BorderWidth = 0
|
|
||||||
Checkboxes = False
|
|
||||||
Columns = <>
|
Columns = <>
|
||||||
ColumnClick = True
|
ParentColor = False
|
||||||
DragCursor = crDrag
|
RowSelect = True
|
||||||
DragMode = dmManual
|
|
||||||
Enabled = True
|
|
||||||
HideSelection = True
|
|
||||||
MultiSelect = False
|
|
||||||
ParentShowHint = True
|
|
||||||
ReadOnly = False
|
|
||||||
RowSelect = False
|
|
||||||
ScrollBars = ssBoth
|
|
||||||
ShowColumnHeaders = True
|
|
||||||
SortColumn = 0
|
SortColumn = 0
|
||||||
SortType = stNone
|
SortType = stNone
|
||||||
TabStop = True
|
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
ToolTips = True
|
|
||||||
Visible = True
|
|
||||||
ViewStyle = vsList
|
|
||||||
OnDblClick = PkgListViewDblClick
|
OnDblClick = PkgListViewDblClick
|
||||||
OnSelectItem = PkgListViewSelectItem
|
OnSelectItem = PkgListViewSelectItem
|
||||||
end
|
end
|
||||||
@ -111,60 +45,31 @@ object OpenInstalledPackagesDlg: TOpenInstalledPackagesDlg
|
|||||||
AnchorSideBottom.Control = Owner
|
AnchorSideBottom.Control = Owner
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 6
|
Left = 6
|
||||||
Height = 34
|
Height = 26
|
||||||
Top = 330
|
Top = 338
|
||||||
Width = 66
|
Width = 66
|
||||||
HelpContext = 0
|
|
||||||
Align = alNone
|
|
||||||
Anchors = [akLeft, akBottom]
|
Anchors = [akLeft, akBottom]
|
||||||
AutoSize = True
|
AutoSize = True
|
||||||
BorderSpacing.Left = 0
|
|
||||||
BorderSpacing.Top = 0
|
|
||||||
BorderSpacing.Right = 0
|
|
||||||
BorderSpacing.Bottom = 0
|
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
BorderSpacing.CellAlignHorizontal = ccaFill
|
|
||||||
BorderSpacing.CellAlignVertical = ccaFill
|
|
||||||
Cancel = False
|
|
||||||
Caption = '&Help'
|
Caption = '&Help'
|
||||||
Default = False
|
|
||||||
Enabled = True
|
|
||||||
Kind = bkHelp
|
Kind = bkHelp
|
||||||
Layout = blGlyphLeft
|
|
||||||
Margin = -1
|
|
||||||
ModalResult = 0
|
|
||||||
NumGlyphs = 0
|
NumGlyphs = 0
|
||||||
OnClick = HelpButtonClick
|
OnClick = HelpButtonClick
|
||||||
ParentFont = True
|
|
||||||
ParentShowHint = True
|
|
||||||
Spacing = 3
|
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
TabStop = True
|
|
||||||
Visible = True
|
|
||||||
end
|
end
|
||||||
object OpenButton: TBitBtn
|
object OpenButton: TBitBtn
|
||||||
AnchorSideRight.Control = CancelButton
|
AnchorSideRight.Control = CancelButton
|
||||||
AnchorSideBottom.Control = Owner
|
AnchorSideBottom.Control = Owner
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 216
|
Left = 229
|
||||||
Height = 29
|
Height = 26
|
||||||
Top = 335
|
Top = 338
|
||||||
Width = 108
|
Width = 103
|
||||||
HelpContext = 0
|
|
||||||
Align = alNone
|
|
||||||
Anchors = [akRight, akBottom]
|
Anchors = [akRight, akBottom]
|
||||||
AutoSize = True
|
AutoSize = True
|
||||||
BorderSpacing.Left = 0
|
|
||||||
BorderSpacing.Top = 0
|
|
||||||
BorderSpacing.Right = 0
|
|
||||||
BorderSpacing.Bottom = 0
|
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
BorderSpacing.CellAlignHorizontal = ccaFill
|
|
||||||
BorderSpacing.CellAlignVertical = ccaFill
|
|
||||||
Cancel = False
|
|
||||||
Caption = 'OpenButton'
|
Caption = 'OpenButton'
|
||||||
Default = True
|
Default = True
|
||||||
Enabled = True
|
|
||||||
Glyph.Data = {
|
Glyph.Data = {
|
||||||
36040000424D3604000000000000360000002800000010000000100000000100
|
36040000424D3604000000000000360000002800000010000000100000000100
|
||||||
2000000000000004000064000000640000000000000000000000FFFFFF00FFFF
|
2000000000000004000064000000640000000000000000000000FFFFFF00FFFF
|
||||||
@ -201,42 +106,24 @@ object OpenInstalledPackagesDlg: TOpenInstalledPackagesDlg
|
|||||||
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
|
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
|
||||||
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00
|
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00
|
||||||
}
|
}
|
||||||
Kind = bkCustom
|
|
||||||
Layout = blGlyphLeft
|
|
||||||
Margin = -1
|
|
||||||
ModalResult = 0
|
|
||||||
NumGlyphs = 0
|
NumGlyphs = 0
|
||||||
ParentFont = True
|
OnClick = OpenButtonClick
|
||||||
ParentShowHint = True
|
|
||||||
Spacing = 3
|
|
||||||
TabOrder = 3
|
TabOrder = 3
|
||||||
TabStop = True
|
|
||||||
Visible = True
|
|
||||||
end
|
end
|
||||||
object CancelButton: TBitBtn
|
object CancelButton: TBitBtn
|
||||||
AnchorSideRight.Control = Owner
|
AnchorSideRight.Control = Owner
|
||||||
AnchorSideRight.Side = asrBottom
|
AnchorSideRight.Side = asrBottom
|
||||||
AnchorSideBottom.Control = Owner
|
AnchorSideBottom.Control = Owner
|
||||||
AnchorSideBottom.Side = asrBottom
|
AnchorSideBottom.Side = asrBottom
|
||||||
Left = 330
|
Left = 338
|
||||||
Height = 29
|
Height = 26
|
||||||
Top = 335
|
Top = 338
|
||||||
Width = 117
|
Width = 109
|
||||||
HelpContext = 0
|
|
||||||
Align = alNone
|
|
||||||
Anchors = [akRight, akBottom]
|
Anchors = [akRight, akBottom]
|
||||||
AutoSize = True
|
AutoSize = True
|
||||||
BorderSpacing.Left = 0
|
|
||||||
BorderSpacing.Top = 0
|
|
||||||
BorderSpacing.Right = 0
|
|
||||||
BorderSpacing.Bottom = 0
|
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
BorderSpacing.CellAlignHorizontal = ccaFill
|
|
||||||
BorderSpacing.CellAlignVertical = ccaFill
|
|
||||||
Cancel = True
|
Cancel = True
|
||||||
Caption = 'CancelButton'
|
Caption = 'CancelButton'
|
||||||
Default = False
|
|
||||||
Enabled = True
|
|
||||||
Glyph.Data = {
|
Glyph.Data = {
|
||||||
36040000424D3604000000000000360000002800000010000000100000000100
|
36040000424D3604000000000000360000002800000010000000100000000100
|
||||||
2000000000000004000064000000640000000000000000000000FFFFFF00FFFF
|
2000000000000004000064000000640000000000000000000000FFFFFF00FFFF
|
||||||
@ -273,17 +160,9 @@ object OpenInstalledPackagesDlg: TOpenInstalledPackagesDlg
|
|||||||
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
|
FF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFFFF00FFFF
|
||||||
FF00FFFFFF00FFFFFF006360F80AFFFFFF00FFFFFF00FFFFFF00
|
FF00FFFFFF00FFFFFF006360F80AFFFFFF00FFFFFF00FFFFFF00
|
||||||
}
|
}
|
||||||
Kind = bkCustom
|
|
||||||
Layout = blGlyphLeft
|
|
||||||
Margin = -1
|
|
||||||
ModalResult = 2
|
ModalResult = 2
|
||||||
NumGlyphs = 0
|
NumGlyphs = 0
|
||||||
ParentFont = True
|
|
||||||
ParentShowHint = True
|
|
||||||
Spacing = 3
|
|
||||||
TabOrder = 4
|
TabOrder = 4
|
||||||
TabStop = True
|
|
||||||
Visible = True
|
|
||||||
end
|
end
|
||||||
object Splitter1: TSplitter
|
object Splitter1: TSplitter
|
||||||
Cursor = crVSplit
|
Cursor = crVSplit
|
||||||
@ -291,15 +170,7 @@ object OpenInstalledPackagesDlg: TOpenInstalledPackagesDlg
|
|||||||
Height = 5
|
Height = 5
|
||||||
Top = 230
|
Top = 230
|
||||||
Width = 453
|
Width = 453
|
||||||
HelpContext = 0
|
|
||||||
Align = alTop
|
Align = alTop
|
||||||
AutoSnap = True
|
|
||||||
Beveled = False
|
|
||||||
MinSize = 30
|
|
||||||
ParentColor = True
|
|
||||||
ParentShowHint = True
|
|
||||||
ResizeAnchor = akTop
|
ResizeAnchor = akTop
|
||||||
ResizeStyle = rsUpdate
|
|
||||||
Visible = True
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -2,168 +2,127 @@
|
|||||||
|
|
||||||
LazarusResources.Add('TOpenInstalledPackagesDlg','FORMDATA',[
|
LazarusResources.Add('TOpenInstalledPackagesDlg','FORMDATA',[
|
||||||
'TPF0'#25'TOpenInstalledPackagesDlg'#24'OpenInstalledPackagesDlg'#4'Left'#3'/'
|
'TPF0'#25'TOpenInstalledPackagesDlg'#24'OpenInstalledPackagesDlg'#4'Left'#3'/'
|
||||||
+#2#6'Height'#3'r'#1#3'Top'#3'/'#1#5'Width'#3#197#1#11'HelpContext'#2#0#13'Ac'
|
+#2#6'Height'#3'r'#1#3'Top'#3'/'#1#5'Width'#3#197#1#13'ActiveControl'#7#11'Pk'
|
||||||
+'tiveControl'#7#11'PkgListView'#5'Align'#7#6'alNone'#14'AllowDropFiles'#8#10
|
+'gListView'#7'Caption'#6#24'OpenInstalledPackagesDlg'#12'ClientHeight'#3'r'#1
|
||||||
+'AutoScroll'#9#8'AutoSize'#8#11'BorderIcons'#11#12'biSystemMenu'#10'biMinimi'
|
+#11'ClientWidth'#3#197#1#8'OnCreate'#7#10'FormCreate'#8'Position'#7#14'poScr'
|
||||||
+'ze'#10'biMaximize'#0#11'BorderStyle'#7#10'bsSizeable'#7'Caption'#6#24'OpenI'
|
+'eenCenter'#10'LCLVersion'#6#6'0.9.27'#0#5'TMemo'#8'HintMemo'#24'AnchorSideB'
|
||||||
+'nstalledPackagesDlg'#28'ChildSizing.LeftRightSpacing'#2#0#28'ChildSizing.To'
|
+'ottom.Control'#7#12'CancelButton'#4'Left'#2#0#6'Height'#2'a'#3'Top'#3#235#0
|
||||||
+'pBottomSpacing'#2#0#29'ChildSizing.HorizontalSpacing'#2#0#27'ChildSizing.Ve'
|
+#5'Width'#3#197#1#5'Align'#7#5'alTop'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akR'
|
||||||
+'rticalSpacing'#2#0#27'ChildSizing.ControlsPerLine'#2#0#12'ClientHeight'#3'r'
|
+'ight'#8'akBottom'#0#13'Lines.Strings'#1#6#5'Memo1'#0#8'ReadOnly'#9#10'Scrol'
|
||||||
+#1#11'ClientWidth'#3#197#1#8'DockSite'#8#8'DragKind'#7#6'dkDrag'#8'DragMode'
|
+'lBars'#7#10'ssAutoBoth'#8'TabOrder'#2#0#0#0#9'TListView'#11'PkgListView'#4
|
||||||
+#7#8'dmManual'#7'Enabled'#9#11'Font.Height'#2#0#10'Font.Style'#11#0#9'FormSt'
|
+'Left'#2#0#6'Height'#3#230#0#3'Top'#2#0#5'Width'#3#197#1#5'Align'#7#5'alTop'
|
||||||
+'yle'#7#8'fsNormal'#8'OnCreate'#7#10'FormCreate'#14'ParentBiDiMode'#9#10'Par'
|
+#7'Columns'#14#0#11'ParentColor'#8#9'RowSelect'#9#10'SortColumn'#2#0#8'SortT'
|
||||||
+'entFont'#8#8'Position'#7#14'poScreenCenter'#13'ShowInTaskBar'#7#9'stDefault'
|
+'ype'#7#6'stNone'#8'TabOrder'#2#1#10'OnDblClick'#7#19'PkgListViewDblClick'#12
|
||||||
+#14'UseDockManager'#8#10'LCLVersion'#6#6'0.9.27'#11'WindowState'#7#8'wsNorma'
|
|
||||||
+'l'#0#5'TMemo'#8'HintMemo'#24'AnchorSideBottom.Control'#7#12'CancelButton'#4
|
|
||||||
+'Left'#2#0#6'Height'#2'^'#3'Top'#3#235#0#5'Width'#3#197#1#11'HelpContext'#2#0
|
|
||||||
+#5'Align'#7#5'alTop'#9'Alignment'#7#13'taLeftJustify'#7'Anchors'#11#5'akTop'
|
|
||||||
+#6'akLeft'#7'akRight'#8'akBottom'#0#18'BorderSpacing.Left'#2#0#17'BorderSpac'
|
|
||||||
+'ing.Top'#2#0#19'BorderSpacing.Right'#2#0#20'BorderSpacing.Bottom'#2#0#20'Bo'
|
|
||||||
+'rderSpacing.Around'#2#0'!BorderSpacing.CellAlignHorizontal'#7#7'ccaFill'#31
|
|
||||||
+'BorderSpacing.CellAlignVertical'#7#7'ccaFill'#10'DragCursor'#7#6'crDrag'#8
|
|
||||||
+'DragMode'#7#8'dmManual'#7'Enabled'#9#13'Lines.Strings'#1#6#5'Memo1'#0#9'Max'
|
|
||||||
+'Length'#2#255#14'ParentBidiMode'#9#10'ParentFont'#9#8'ReadOnly'#9#10'Scroll'
|
|
||||||
+'Bars'#7#10'ssAutoBoth'#8'TabOrder'#2#0#7'TabStop'#9#7'Visible'#9#11'WantRet'
|
|
||||||
+'urns'#9#8'WantTabs'#8#0#0#9'TListView'#11'PkgListView'#4'Left'#2#0#6'Height'
|
|
||||||
+#3#230#0#3'Top'#2#0#5'Width'#3#197#1#11'HelpContext'#2#0#5'Align'#7#5'alTop'
|
|
||||||
+#18'BorderSpacing.Left'#2#0#17'BorderSpacing.Top'#2#0#19'BorderSpacing.Right'
|
|
||||||
+#2#0#20'BorderSpacing.Bottom'#2#0#20'BorderSpacing.Around'#2#0'!BorderSpacin'
|
|
||||||
+'g.CellAlignHorizontal'#7#7'ccaFill'#31'BorderSpacing.CellAlignVertical'#7#7
|
|
||||||
+'ccaFill'#11'BorderWidth'#2#0#10'Checkboxes'#8#7'Columns'#14#0#11'ColumnClic'
|
|
||||||
+'k'#9#10'DragCursor'#7#6'crDrag'#8'DragMode'#7#8'dmManual'#7'Enabled'#9#13'H'
|
|
||||||
+'ideSelection'#9#11'MultiSelect'#8#14'ParentShowHint'#9#8'ReadOnly'#8#9'RowS'
|
|
||||||
+'elect'#8#10'ScrollBars'#7#6'ssBoth'#17'ShowColumnHeaders'#9#10'SortColumn'#2
|
|
||||||
+#0#8'SortType'#7#6'stNone'#7'TabStop'#9#8'TabOrder'#2#1#8'ToolTips'#9#7'Visi'
|
|
||||||
+'ble'#9#9'ViewStyle'#7#6'vsList'#10'OnDblClick'#7#19'PkgListViewDblClick'#12
|
|
||||||
+'OnSelectItem'#7#21'PkgListViewSelectItem'#0#0#7'TBitBtn'#10'HelpButton'#22
|
+'OnSelectItem'#7#21'PkgListViewSelectItem'#0#0#7'TBitBtn'#10'HelpButton'#22
|
||||||
+'AnchorSideLeft.Control'#7#5'Owner'#24'AnchorSideBottom.Control'#7#5'Owner'
|
+'AnchorSideLeft.Control'#7#5'Owner'#24'AnchorSideBottom.Control'#7#5'Owner'
|
||||||
+#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'"'#3'Top'#3
|
+#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#26#3'Top'#3
|
||||||
+'J'#1#5'Width'#2'B'#11'HelpContext'#2#0#5'Align'#7#6'alNone'#7'Anchors'#11#6
|
+'R'#1#5'Width'#2'B'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#8'AutoSize'#9#20'B'
|
||||||
+'akLeft'#8'akBottom'#0#8'AutoSize'#9#18'BorderSpacing.Left'#2#0#17'BorderSpa'
|
+'orderSpacing.Around'#2#6#7'Caption'#6#5'&Help'#4'Kind'#7#6'bkHelp'#9'NumGly'
|
||||||
+'cing.Top'#2#0#19'BorderSpacing.Right'#2#0#20'BorderSpacing.Bottom'#2#0#20'B'
|
+'phs'#2#0#7'OnClick'#7#15'HelpButtonClick'#8'TabOrder'#2#2#0#0#7'TBitBtn'#10
|
||||||
+'orderSpacing.Around'#2#6'!BorderSpacing.CellAlignHorizontal'#7#7'ccaFill'#31
|
+'OpenButton'#23'AnchorSideRight.Control'#7#12'CancelButton'#24'AnchorSideBot'
|
||||||
+'BorderSpacing.CellAlignVertical'#7#7'ccaFill'#6'Cancel'#8#7'Caption'#6#5'&H'
|
+'tom.Control'#7#5'Owner'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3
|
||||||
+'elp'#7'Default'#8#7'Enabled'#9#4'Kind'#7#6'bkHelp'#6'Layout'#7#11'blGlyphLe'
|
+#229#0#6'Height'#2#26#3'Top'#3'R'#1#5'Width'#2'g'#7'Anchors'#11#7'akRight'#8
|
||||||
+'ft'#6'Margin'#2#255#11'ModalResult'#2#0#9'NumGlyphs'#2#0#7'OnClick'#7#15'He'
|
+'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#10'Open'
|
||||||
+'lpButtonClick'#10'ParentFont'#9#14'ParentShowHint'#9#7'Spacing'#2#3#8'TabOr'
|
+'Button'#7'Default'#9#10'Glyph.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0
|
||||||
+'der'#2#2#7'TabStop'#9#7'Visible'#9#0#0#7'TBitBtn'#10'OpenButton'#23'AnchorS'
|
+'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0
|
||||||
+'ideRight.Control'#7#12'CancelButton'#24'AnchorSideBottom.Control'#7#5'Owner'
|
+#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
+#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3#216#0#6'Height'#2#29#3'T'
|
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
+'op'#3'O'#1#5'Width'#2'l'#11'HelpContext'#2#0#5'Align'#7#6'alNone'#7'Anchors'
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+#11#7'akRight'#8'akBottom'#0#8'AutoSize'#9#18'BorderSpacing.Left'#2#0#17'Bor'
|
|
||||||
+'derSpacing.Top'#2#0#19'BorderSpacing.Right'#2#0#20'BorderSpacing.Bottom'#2#0
|
|
||||||
+#20'BorderSpacing.Around'#2#6'!BorderSpacing.CellAlignHorizontal'#7#7'ccaFil'
|
|
||||||
+'l'#31'BorderSpacing.CellAlignVertical'#7#7'ccaFill'#6'Cancel'#8#7'Caption'#6
|
|
||||||
+#10'OpenButton'#7'Default'#9#7'Enabled'#9#10'Glyph.Data'#10':'#4#0#0'6'#4#0#0
|
|
||||||
+'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4
|
|
||||||
+#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255
|
|
||||||
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
+#255#255#255#0'1z6'#10'-u2'#7#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+#255#0#255#255#255#0#255#255#255#0'1z6'#10'-u2'#7#255#255#255#0#255#255#255#0
|
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'9'#133'@'#10
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
+'7'#131'='#255'1{7'#251'.v3'#7#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+#255#0'9'#133'@'#10'7'#131'='#255'1{7'#251'.v3'#7#255#255#255#0#255#255#255#0
|
+#255#0#255#255#255#0#255#255#255#0'B'#146'I'#10'@'#142'G'#255'T'#163'\'#255
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
+'O'#159'W'#255'2|8'#254'.w4'#8#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
,#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'B'#146'I'#10'@'#142'G'
|
|
||||||
+#255'T'#163'\'#255'O'#159'W'#255'2|8'#254'.w4'#8#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
|
||||||
+#255#255#0#255#255#255#0'K'#158'S'#10'I'#154'Q'#255'['#172'd'#255'w'#202#130
|
|
||||||
+#255't'#200'~'#255'Q'#160'Y'#255'3}9'#254'/x5'#8#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'S'#169
|
|
||||||
+'\'#10'Q'#166'Z'#255'c'#181'm'#255'~'#206#137#255'{'#204#135#255'v'#202#129
|
|
||||||
+#255'v'#201#129#255'R'#162'Z'#255'4~:'#254'0y5'#8#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0'Z'#180'e'#9'Y'#176'c'#255'k'#189
|
|
||||||
+'v'#255#132#210#144#255'z'#201#133#255'`'#178'j'#255'c'#180'm'#255'x'#201#131
|
|
||||||
+#255'x'#203#130#255'S'#163'\'#255'4:'#253'1z6'#8#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0'^'#185'iF['#181'f'#228'y'#201#134#255#128#206
|
|
||||||
+#141#255'Q'#166'Z'#252'M'#161'VoI'#156'Q'#139'\'#173'g'#255'|'#204#134#255'y'
|
|
||||||
+#203#133#255'T'#164']'#255'5'#128';'#252'1{7'#8#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0'_'#186'j<\'#182'f'#230'm'#192'y'#255'U'#172'_o'
|
|
||||||
+#255#255#255#0#255#255#255#0'J'#157'R'#145'^'#174'h'#255'}'#205#137#255'|'
|
|
||||||
+#205#135#255'V'#165'_'#255'6'#129'<'#252'2|8'#8#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0'_'#187'jC\'#183'ge'#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0'K'#158'S'#145'_'#175'i'#255''#206#138#255'~'
|
|
||||||
+#206#137#255'W'#166'`'#255'7'#130'='#252'3}9'#8#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0'K'#159'T'#145'`'#176'j'#255#129#207
|
|
||||||
+#141#255''#207#139#255'X'#167'a'#255'9'#133'@'#255'4~:'#8#255#255#255#0#255
|
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0'L'#160'U'#145'b'#178'l'#255
|
+#255#0'K'#158'S'#10'I'#154'Q'#255'['#172'd'#255'w'#202#130#255't'#200'~'#255
|
||||||
+#130#209#143#255'z'#200#133#255'W'#166'`'#255'8'#132'?{'#255#255#255#0#255
|
+'Q'#160'Y'#255'3}9'#254'/x5'#8#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'S'#169'\'#10'Q'#166'Z'
|
||||||
|
+#255'c'#181'm'#255'~'#206#137#255'{'#204#135#255'v'#202#129#255'v'#201#129
|
||||||
|
+#255'R'#162'Z'#255'4~:'#254'0y5'#8#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0#255#255#255#0'Z'#180'e'#9'Y'#176'c'#255'k'#189'v'#255#132#210
|
||||||
|
+#144#255'z'#201#133#255'`'#178'j'#255'c'#180'm'#255'x'#201#131#255'x'#203#130
|
||||||
|
+#255'S'#163'\'#255'4:'#253'1z6'#8#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0'^'#185'iF['#181'f'#228'y'#201#134#255#128#206#141#255'Q'#166
|
||||||
|
+'Z'#252'M'#161'VoI'#156'Q'#139'\'#173'g'#255'|'#204#134#255'y'#203#133#255'T'
|
||||||
|
+#164']'#255'5'#128';'#252'1{7'#8#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0'_'#186'j<\'#182'f'#230'm'#192'y'#255'U'#172'_o'#255#255#255#0
|
||||||
|
+#255#255#255#0'J'#157'R'#145'^'#174'h'#255'}'#205#137#255'|'#205#135#255'V'
|
||||||
|
+#165'_'#255'6'#129'<'#252'2|8'#8#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0'_'#187'jC\'#183'ge'#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0'K'#158'S'#145'_'#175'i'#255''#206#138#255'~'#206#137#255'W'
|
||||||
|
+#166'`'#255'7'#130'='#252'3}9'#8#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
|
+#255#255#0#255#255#255#0'K'#159'T'#145'`'#176'j'#255#129#207#141#255''#207
|
||||||
|
+#139#255'X'#167'a'#255'9'#133'@'#255'4~:'#8#255#255#255#0#255#255#255#0#255
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'M'#161'V'#145
|
+#255#0#255#255#255#0#255#255#255#0'L'#160'U'#145'b'#178'l'#255#130#209#143
|
||||||
+'c'#179'm'#255'_'#175'i'#255'A'#145'Iy'#255#255#255#0#255#255#255#0#255#255
|
+#255'z'#200#133#255'W'#166'`'#255'8'#132'?{'#255#255#255#0#255#255#255#0#255
|
||||||
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
|
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0'M'#161'V'#145'c'#179'm'#255
|
||||||
|
+'_'#175'i'#255'A'#145'Iy'#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'N'#162
|
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'N'#162'W'#145'J'#157
|
||||||
+'W'#145'J'#157'R'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
,'R'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#4'Kind'#7#8'bkCustom'#6'Lay'
|
+#255#0#255#255#255#0#255#255#255#0#9'NumGlyphs'#2#0#7'OnClick'#7#15'OpenButt'
|
||||||
+'out'#7#11'blGlyphLeft'#6'Margin'#2#255#11'ModalResult'#2#0#9'NumGlyphs'#2#0
|
+'onClick'#8'TabOrder'#2#3#0#0#7'TBitBtn'#12'CancelButton'#23'AnchorSideRight'
|
||||||
+#10'ParentFont'#9#14'ParentShowHint'#9#7'Spacing'#2#3#8'TabOrder'#2#3#7'TabS'
|
+'.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideB'
|
||||||
+'top'#9#7'Visible'#9#0#0#7'TBitBtn'#12'CancelButton'#23'AnchorSideRight.Cont'
|
+'ottom.Control'#7#5'Owner'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3
|
||||||
+'rol'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBottom'
|
+'R'#1#6'Height'#2#26#3'Top'#3'R'#1#5'Width'#2'm'#7'Anchors'#11#7'akRight'#8
|
||||||
+'.Control'#7#5'Owner'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3'J'#1
|
+'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#6'Cancel'#9#7'Captio'
|
||||||
+#6'Height'#2#29#3'Top'#3'O'#1#5'Width'#2'u'#11'HelpContext'#2#0#5'Align'#7#6
|
+'n'#6#12'CancelButton'#10'Glyph.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0
|
||||||
+'alNone'#7'Anchors'#11#7'akRight'#8'akBottom'#0#8'AutoSize'#9#18'BorderSpaci'
|
+'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0
|
||||||
+'ng.Left'#2#0#17'BorderSpacing.Top'#2#0#19'BorderSpacing.Right'#2#0#20'Borde'
|
+#0#0#0#0#0#0#0#0#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
+'rSpacing.Bottom'#2#0#20'BorderSpacing.Around'#2#6'!BorderSpacing.CellAlignH'
|
|
||||||
+'orizontal'#7#7'ccaFill'#31'BorderSpacing.CellAlignVertical'#7#7'ccaFill'#6
|
|
||||||
+'Cancel'#9#7'Caption'#6#12'CancelButton'#7'Default'#8#7'Enabled'#9#10'Glyph.'
|
|
||||||
+'Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16
|
|
||||||
+#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#255#255#255
|
|
||||||
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
|
||||||
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0'?='#237'A;8'#235#8#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'!'#31#227#8#30#28
|
|
||||||
+#226'A'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
|
||||||
+'JG'#240'AOL'#242#255'@>'#237#253'<9'#235#8#255#255#255#0#255#255#255#0#255
|
|
||||||
+#255#255#0#255#255#255#0'''%'#229#8'$"'#228#252'1/'#234#255#31#29#226'A'#255
|
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0'TQ'#243'AXV'#245#255'ca'#250#255'XU'
|
|
||||||
+#246#255'A?'#237#252'=:'#236#8#255#255#255#0#255#255#255#0'0-'#231#8',*'#230
|
|
||||||
+#252'A?'#241#255'LJ'#246#255'1/'#234#255#31#29#226'A'#255#255#255#0#255#255
|
|
||||||
+#255#0'YV'#245'+[X'#246#255'eb'#250#255'qp'#255#255'YV'#246#255'B@'#238#252
|
|
||||||
+'>;'#236#8'97'#235#8'52'#233#252'GE'#242#255'cb'#255#255'JH'#244#255'/-'#233
|
|
||||||
,#255'" '#227'+'#255#255#255#0#255#255#255#0#255#255#255#0'ZW'#245'+[Y'#246
|
|
||||||
+#255'fc'#250#255'tq'#255#255'ZX'#246#255'CA'#238#252'><'#236#253'PM'#244#255
|
|
||||||
+'hg'#255#255'PN'#245#255'64'#235#255'*'''#229'+'#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0'[X'#246'+\Z'#246#255'gd'#250#255
|
|
||||||
+'tr'#255#255'sp'#255#255'pn'#255#255'nl'#255#255'WU'#247#255'?='#238#255'20'
|
|
||||||
+#232'+'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0'\Y'#246'+]['#247#255'yv'#255#255'YV'#255#255'WT'
|
|
||||||
+#255#255'rp'#255#255'HF'#240#255'<9'#235'+'#255#255#255#0#255#255#255#0#255
|
|
||||||
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
|
||||||
+#255#0'a^'#248#8']Z'#246#253'}y'#255#255'^['#255#255'[X'#255#255'vt'#255#255
|
|
||||||
+'FC'#239#253'A?'#237#8#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
|
|
||||||
+#0#255#255#255#0#255#255#255#0#255#255#255#0'ig'#251#8'fc'#249#252'pm'#251
|
|
||||||
+#255#128'~'#255#255'~{'#255#255'|y'#255#255'yw'#255#255'^\'#247#255'GD'#239
|
|
||||||
+#252'B@'#238#8#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
|
||||||
+#255#255#0'qn'#253#8'nk'#252#252'wt'#253#255#134#130#255#255'vs'#252#255'db'
|
|
||||||
+#248#255'`]'#247#255'mj'#250#255'{y'#255#255'`]'#247#255'HE'#239#252'CA'#238
|
|
||||||
+#8#255#255#255#0#255#255#255#0#255#255#255#0'vs'#255#8'tq'#254#253'}z'#254
|
|
||||||
+#255#138#135#255#255'|y'#253#255'li'#251#255'ca'#249'+_\'#247'+a^'#248#255'n'
|
|
||||||
+'l'#250#255'}z'#255#255'a_'#247#255'IF'#240#252'DA'#238#5#255#255#255#0#255
|
|
||||||
+#255#255#0'wt'#255#31'zw'#255#255#129'~'#255#255#129'~'#254#255'tq'#253#255
|
|
||||||
+'li'#251'+'#255#255#255#0#255#255#255#0'`]'#247'+b_'#248#255'om'#251#255'~|'
|
|
||||||
+#255#255'b_'#248#255'JG'#240'oEB'#238#2#255#255#255#0#255#255#255#0'wt'#255
|
|
||||||
+#31'zw'#255#255'yv'#254#255'ro'#253'+'#255#255#255#0#255#255#255#0#255#255
|
|
||||||
+#255#0#255#255#255#0'a^'#248'+da'#248#255'jh'#249#255'TQ'#243#168'OM'#242')'
|
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'wt'#255#31'wt'#255
|
|
||||||
+'+'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
|
||||||
+#255#255#0'b_'#248'+]['#247'oYV'#245'>'#255#255#255#0#255#255#255#0#255#255
|
|
||||||
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
|
||||||
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
|
||||||
+#255#255#0'c`'#248#10#255#255#255#0#255#255#255#0#255#255#255#0#4'Kind'#7#8
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
+'bkCustom'#6'Layout'#7#11'blGlyphLeft'#6'Margin'#2#255#11'ModalResult'#2#2#9
|
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'?='#237'A;8'
|
||||||
+'NumGlyphs'#2#0#10'ParentFont'#9#14'ParentShowHint'#9#7'Spacing'#2#3#8'TabOr'
|
+#235#8#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
+'der'#2#4#7'TabStop'#9#7'Visible'#9#0#0#9'TSplitter'#9'Splitter1'#6'Cursor'#7
|
+#255#255#255#0'!'#31#227#8#30#28#226'A'#255#255#255#0#255#255#255#0#255#255
|
||||||
+#8'crVSplit'#4'Left'#2#0#6'Height'#2#5#3'Top'#3#230#0#5'Width'#3#197#1#11'He'
|
+#255#0#255#255#255#0#255#255#255#0'JG'#240'AOL'#242#255'@>'#237#253'<9'#235#8
|
||||||
+'lpContext'#2#0#5'Align'#7#5'alTop'#8'AutoSnap'#9#7'Beveled'#8#7'MinSize'#2
|
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'''%'#229#8'$"'#228
|
||||||
+#30#11'ParentColor'#9#14'ParentShowHint'#9#12'ResizeAnchor'#7#5'akTop'#11'Re'
|
+#252'1/'#234#255#31#29#226'A'#255#255#255#0#255#255#255#0#255#255#255#0'TQ'
|
||||||
+'sizeStyle'#7#8'rsUpdate'#7'Visible'#9#0#0#0
|
+#243'AXV'#245#255'ca'#250#255'XU'#246#255'A?'#237#252'=:'#236#8#255#255#255#0
|
||||||
|
+#255#255#255#0'0-'#231#8',*'#230#252'A?'#241#255'LJ'#246#255'1/'#234#255#31
|
||||||
|
+#29#226'A'#255#255#255#0#255#255#255#0'YV'#245'+[X'#246#255'eb'#250#255'qp'
|
||||||
|
+#255#255'YV'#246#255'B@'#238#252'>;'#236#8'97'#235#8'52'#233#252'GE'#242#255
|
||||||
|
+'cb'#255#255'JH'#244#255'/-'#233#255'" '#227'+'#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0'ZW'#245'+[Y'#246#255'fc'#250#255'tq'#255#255'ZX'#246#255'CA'
|
||||||
|
+#238#252'><'#236#253'PM'#244#255'hg'#255#255'PN'#245#255'64'#235#255'*'''#229
|
||||||
|
+'+'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'[X'
|
||||||
|
+#246'+\Z'#246#255'gd'#250#255'tr'#255#255'sp'#255#255'pn'#255#255'nl'#255#255
|
||||||
|
+'WU'#247#255'?='#238#255'20'#232'+'#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'\Y'#246'+]['#247#255
|
||||||
|
+'yv'#255#255'YV'#255#255'WT'#255#255'rp'#255#255'HF'#240#255'<9'#235'+'#255
|
||||||
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
|
+#255#0#255#255#255#0#255#255#255#0'a^'#248#8']Z'#246#253'}y'#255#255'^['#255
|
||||||
|
+#255'[X'#255#255'vt'#255#255'FC'#239#253'A?'#237#8#255#255#255#0#255#255#255
|
||||||
|
+#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0'ig'
|
||||||
|
+#251#8'fc'#249#252'pm'#251#255#128'~'#255#255'~{'#255#255'|y'#255#255'yw'#255
|
||||||
|
+#255'^\'#247#255'GD'#239#252'B@'#238#8#255#255#255#0#255#255#255#0#255#255
|
||||||
|
+#255#0#255#255#255#0#255#255#255#0'qn'#253#8'nk'#252#252'wt'#253#255#134#130
|
||||||
|
+#255#255'vs'#252#255'db'#248#255'`]'#247#255'mj'#250#255'{y'#255#255'`]'#247
|
||||||
|
+#255'HE'#239#252'CA'#238#8#255#255#255#0#255#255#255#0#255#255#255#0'vs'#255
|
||||||
|
+#8'tq'#254#253'}z'#254#255#138#135#255#255'|y'#253#255'li'#251#255'ca'#249'+'
|
||||||
|
+'_\'#247'+a^'#248#255'nl'#250#255'}z'#255#255'a_'#247#255'IF'#240#252'DA'#238
|
||||||
|
+#5#255#255#255#0#255#255#255#0'wt'#255#31'zw'#255#255#129'~'#255#255#129'~'
|
||||||
|
+#254#255'tq'#253#255'li'#251'+'#255#255#255#0#255#255#255#0'`]'#247'+b_'#248
|
||||||
|
+#255'om'#251#255'~|'#255#255'b_'#248#255'JG'#240'oEB'#238#2#255#255#255#0#255
|
||||||
|
+#255#255#0'wt'#255#31'zw'#255#255'yv'#254#255'ro'#253'+'#255#255#255#0#255
|
||||||
|
+#255#255#0#255#255#255#0#255#255#255#0'a^'#248'+da'#248#255'jh'#249#255'TQ'
|
||||||
|
+#243#168'OM'#242')'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+'wt'#255#31'wt'#255'+'#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255
|
||||||
|
+#0#255#255#255#0#255#255#255#0'b_'#248'+]['#247'oYV'#245'>'#255#255#255#0#255
|
||||||
|
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255
|
||||||
|
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0
|
||||||
|
+#255#255#255#0#255#255#255#0'c`'#248#10#255#255#255#0#255#255#255#0#255#255
|
||||||
|
+#255#0#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8'TabOrder'#2#4#0#0#9'TSplitter'
|
||||||
|
+#9'Splitter1'#6'Cursor'#7#8'crVSplit'#4'Left'#2#0#6'Height'#2#5#3'Top'#3#230
|
||||||
|
+#0#5'Width'#3#197#1#5'Align'#7#5'alTop'#12'ResizeAnchor'#7#5'akTop'#0#0#0
|
||||||
]);
|
]);
|
||||||
|
Loading…
Reference in New Issue
Block a user