You've already forked lazarus-ccr
Change MIME type of all package files to text/xml. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7246 8e941d3f-bd1b-0410-a28a-d453659cc2b4
193 lines
5.0 KiB
Plaintext
193 lines
5.0 KiB
Plaintext
object Form1: TForm1
|
|
Left = 450
|
|
Height = 690
|
|
Top = 165
|
|
Width = 965
|
|
Caption = 'Form1'
|
|
ClientHeight = 690
|
|
ClientWidth = 965
|
|
Color = clBtnFace
|
|
Font.Color = clWindowText
|
|
OnShow = FormShow
|
|
LCLVersion = '2.1.0.0'
|
|
object Label1: TLabel
|
|
AnchorSideLeft.Control = Button2
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = Edit1
|
|
AnchorSideTop.Side = asrCenter
|
|
Left = 456
|
|
Height = 15
|
|
Top = 13
|
|
Width = 35
|
|
BorderSpacing.Left = 200
|
|
Caption = 'Result:'
|
|
ParentColor = False
|
|
end
|
|
inline JvHLEditor1: TSynEdit
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = Button2
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = Owner
|
|
AnchorSideBottom.Side = asrBottom
|
|
Left = 12
|
|
Height = 637
|
|
Top = 41
|
|
Width = 941
|
|
BorderSpacing.Left = 12
|
|
BorderSpacing.Top = 8
|
|
BorderSpacing.Right = 12
|
|
BorderSpacing.Bottom = 12
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
Font.Height = -13
|
|
Font.Name = 'Courier New'
|
|
Font.Pitch = fpFixed
|
|
Font.Quality = fqCleartype
|
|
ParentColor = False
|
|
ParentFont = False
|
|
TabOrder = 0
|
|
Gutter.Width = 57
|
|
Gutter.MouseActions = <>
|
|
RightGutter.Width = 0
|
|
RightGutter.MouseActions = <>
|
|
Highlighter = SynPasSyn1
|
|
Keystrokes = <>
|
|
MouseActions = <>
|
|
MouseTextActions = <>
|
|
MouseSelActions = <>
|
|
Lines.Strings = (
|
|
'unit UserFunctions;'
|
|
''
|
|
'// sample of a user-created-library of jvinterpreter functions that your compiled'
|
|
'// program might access:'
|
|
''
|
|
''
|
|
'// notice that there is no interface/implementation section in this '
|
|
'// interpreter-only unit.'
|
|
''
|
|
'function MyFunction(B:String):Integer;'
|
|
'begin'
|
|
' result := Length(B);'
|
|
'end;'
|
|
''
|
|
'function MyFunction2(A,B:Integer):Integer;'
|
|
'begin'
|
|
' result := A+B;'
|
|
'end;'
|
|
''
|
|
''
|
|
'end.'
|
|
)
|
|
VisibleSpecialChars = [vscSpace, vscTabAtLast]
|
|
SelectedColor.BackPriority = 50
|
|
SelectedColor.ForePriority = 50
|
|
SelectedColor.FramePriority = 50
|
|
SelectedColor.BoldPriority = 50
|
|
SelectedColor.ItalicPriority = 50
|
|
SelectedColor.UnderlinePriority = 50
|
|
SelectedColor.StrikeOutPriority = 50
|
|
BracketHighlightStyle = sbhsBoth
|
|
BracketMatchColor.Background = clNone
|
|
BracketMatchColor.Foreground = clNone
|
|
BracketMatchColor.Style = [fsBold]
|
|
FoldedCodeColor.Background = clNone
|
|
FoldedCodeColor.Foreground = clGray
|
|
FoldedCodeColor.FrameColor = clGray
|
|
MouseLinkColor.Background = clNone
|
|
MouseLinkColor.Foreground = clBlue
|
|
LineHighlightColor.Background = clNone
|
|
LineHighlightColor.Foreground = clNone
|
|
inline SynLeftGutterPartList1: TSynGutterPartList
|
|
object SynGutterMarks1: TSynGutterMarks
|
|
Width = 24
|
|
MouseActions = <>
|
|
end
|
|
object SynGutterLineNumber1: TSynGutterLineNumber
|
|
Width = 17
|
|
MouseActions = <>
|
|
MarkupInfo.Background = clBtnFace
|
|
MarkupInfo.Foreground = clNone
|
|
DigitCount = 2
|
|
ShowOnlyLineNumbersMultiplesOf = 1
|
|
ZeroStart = False
|
|
LeadingZeros = False
|
|
end
|
|
object SynGutterChanges1: TSynGutterChanges
|
|
Width = 4
|
|
MouseActions = <>
|
|
ModifiedColor = 59900
|
|
SavedColor = clGreen
|
|
end
|
|
object SynGutterSeparator1: TSynGutterSeparator
|
|
Width = 2
|
|
MouseActions = <>
|
|
MarkupInfo.Background = clWhite
|
|
MarkupInfo.Foreground = clGray
|
|
end
|
|
object SynGutterCodeFolding1: TSynGutterCodeFolding
|
|
MouseActions = <>
|
|
MarkupInfo.Background = clNone
|
|
MarkupInfo.Foreground = clGray
|
|
MouseActionsExpanded = <>
|
|
MouseActionsCollapsed = <>
|
|
end
|
|
end
|
|
end
|
|
object Button1: TButton
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = Owner
|
|
Left = 12
|
|
Height = 25
|
|
Top = 8
|
|
Width = 113
|
|
AutoSize = True
|
|
BorderSpacing.Left = 12
|
|
BorderSpacing.Top = 8
|
|
Caption = 'Call MyFunction'
|
|
OnClick = Button1Click
|
|
TabOrder = 1
|
|
end
|
|
object Button2: TButton
|
|
AnchorSideLeft.Control = Button1
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = Button1
|
|
Left = 137
|
|
Height = 25
|
|
Top = 8
|
|
Width = 119
|
|
AutoSize = True
|
|
BorderSpacing.Left = 12
|
|
Caption = 'Call MyFunction2'
|
|
OnClick = Button2Click
|
|
TabOrder = 2
|
|
end
|
|
object Edit1: TEdit
|
|
AnchorSideLeft.Control = Label1
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = Button1
|
|
AnchorSideTop.Side = asrCenter
|
|
Left = 503
|
|
Height = 23
|
|
Top = 9
|
|
Width = 121
|
|
BorderSpacing.Left = 12
|
|
ReadOnly = True
|
|
TabOrder = 3
|
|
end
|
|
object JvInterpreterProgram1: TJvInterpreterProgram
|
|
OnGetValue = JvInterpreterProgram1GetValue
|
|
left = 328
|
|
top = 96
|
|
end
|
|
object SynPasSyn1: TSynPasSyn
|
|
Enabled = False
|
|
CommentAttri.Foreground = clTeal
|
|
CompilerMode = pcmDelphi
|
|
NestedComments = False
|
|
TypeHelpers = True
|
|
left = 325
|
|
top = 272
|
|
end
|
|
end
|