forked from lmbelo/python4delphi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit1.lfm
More file actions
93 lines (93 loc) · 1.85 KB
/
unit1.lfm
File metadata and controls
93 lines (93 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
object Form1: TForm1
Left = 290
Height = 391
Top = 175
Width = 547
Caption = 'Form1'
ClientHeight = 391
ClientWidth = 547
LCLVersion = '0.9.30.2'
object Panel1: TPanel
Left = 0
Height = 391
Top = 0
Width = 547
Align = alClient
ClientHeight = 391
ClientWidth = 547
TabOrder = 0
object Memo1: TMemo
Left = 1
Height = 183
Top = 1
Width = 545
Align = alTop
TabOrder = 0
end
object PairSplitter1: TPairSplitter
Left = 1
Height = 8
Top = 184
Width = 545
Align = alTop
Position = 45
object PairSplitterSide1: TPairSplitterSide
Cursor = crArrow
Left = 0
Height = 8
Top = 0
Width = 45
end
object PairSplitterSide2: TPairSplitterSide
Cursor = crArrow
Left = 50
Height = 8
Top = 0
Width = 495
end
end
object Memo2: TMemo
Left = 1
Height = 152
Top = 192
Width = 545
Align = alClient
Lines.Strings = (
'print(2+2)'
)
TabOrder = 2
end
object Panel2: TPanel
Left = 1
Height = 46
Top = 344
Width = 545
Align = alBottom
ClientHeight = 46
ClientWidth = 545
TabOrder = 3
object Button1: TButton
Left = 223
Height = 25
Top = 8
Width = 75
Caption = 'Execute'
OnClick = Button1Click
TabOrder = 0
end
end
end
object PythonEngine1: TPythonEngine
IO = PythonGUIInputOutput1
left = 96
top = 48
end
object PythonGUIInputOutput1: TPythonGUIInputOutput
DelayWrites = True
UnicodeIO = False
RawOutput = False
Output = Memo1
left = 338
top = 48
end
end