-
Notifications
You must be signed in to change notification settings - Fork 10
/
MindStream.dpr
171 lines (167 loc) · 9.28 KB
/
MindStream.dpr
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
program MindStream;
{$Include msDef.inc}
uses
msCoreObjects in 'Core\msCoreObjects.pas',
FMX.Forms,
uMain in 'uMain.pas' {fmMain},
msDiagramm in 'msDiagramm.pas',
msShape in 'AbstractShapes\msShape.pas',
msRegisteredShapes in 'msRegisteredShapes.pas',
msUtilityShapes in 'msUtilityShapes.pas',
msLine in 'ConcreteShapes\msLine.pas',
msTriangle in 'ConcreteShapes\msTriangle.pas',
msDiagramms in 'msDiagramms.pas',
msDiagrammsController in 'msDiagrammsController.pas',
msLineWithArrow in 'ConcreteShapes\msLineWithArrow.pas',
msOurShapes in 'msOurShapes.pas',
msTriangleDirectionRight in 'ConcreteShapes\msTriangleDirectionRight.pas',
msMover in 'ShapeTools\msMover.pas',
msSerializeInterfaces in 'msSerializeInterfaces.pas',
msTool in 'ShapeTools\msTool.pas',
msDiagrammMarshal in 'Marshal\msDiagrammMarshal.pas',
msShapeMarshal in 'Marshal\msShapeMarshal.pas',
msDiagrammsMarshal in 'Marshal\msDiagrammsMarshal.pas',
msStringList in 'Core\msStringList.pas',
msObject in 'Core\msObject.pas',
msInterfacedRefcounted in 'Core\msInterfacedRefcounted.pas',
msMarshalPrim in 'Marshal\msMarshalPrim.pas',
msInvalidators in 'msInvalidators.pas',
msInterfaces in 'msInterfaces.pas',
msStreamUtils in 'Core\msStreamUtils.pas',
msPicker in 'ShapeTools\msPicker.pas',
msUpToParent in 'ShapeTools\msUpToParent.pas',
msSwapParents in 'ShapeTools\msSwapParents.pas',
msShapeCreator in 'ShapeCreators\msShapeCreator.pas',
msFormatter in 'msFormatter.pas',
msDiagrammStack in 'msDiagrammStack.pas',
msShapeButton in 'ShapeButtons\msShapeButton.pas',
msCompletedShapeCreator in 'ShapeCreators\msCompletedShapeCreator.pas',
msPaletteShapeCreator in 'ShapeCreators\msPaletteShapeCreator.pas',
msNullClickShape in 'ShapeTools\msNullClickShape.pas',
msPaletteShape in 'ShapeTools\PaletteShapes\msPaletteShape.pas',
msShapeRemover in 'ShapeTools\msShapeRemover.pas',
msPolygonShape in 'AbstractShapes\msPolygonShape.pas',
msMoverIcon in 'SpecialShapes\ForButtons\msMoverIcon.pas',
msMoveIcon in 'SpecialShapes\msMoveIcon.pas',
msPointedShape in 'AbstractShapes\msPointedShape.pas',
msUpArrow in 'SpecialShapes\ForButtons\Arrows\msUpArrow.pas',
msDownArrow in 'SpecialShapes\ForButtons\Arrows\msDownArrow.pas',
msSpecialArrow in 'AbstractShapes\msSpecialArrow.pas',
msSpecialDiagonalArrow in 'AbstractShapes\msSpecialDiagonalArrow.pas',
msLeftArrow in 'SpecialShapes\ForButtons\Arrows\msLeftArrow.pas',
msRightArrow in 'SpecialShapes\ForButtons\Arrows\msRightArrow.pas',
msUpRightArrow in 'SpecialShapes\ForButtons\Arrows\msUpRightArrow.pas',
msUpLeftArrow in 'SpecialShapes\ForButtons\Arrows\msUpLeftArrow.pas',
msDownRightArrow in 'SpecialShapes\ForButtons\Arrows\msDownRightArrow.pas',
msDownLeftArrow in 'SpecialShapes\ForButtons\Arrows\msDownLeftArrow.pas',
msRemoverIcon in 'SpecialShapes\ForButtons\msRemoverIcon.pas',
msRemoveIcon in 'SpecialShapes\msRemoveIcon.pas',
msShapesGroup in 'ContainerShapes\msShapesGroup.pas',
msPointlessShape in 'AbstractShapes\msPointlessShape.pas',
msSwapParentsIcon in 'SpecialShapes\ForButtons\msSwapParentsIcon.pas',
msPickerIcon in 'SpecialShapes\ForButtons\msPickerIcon.pas',
msUpToParentIcon in 'SpecialShapes\ForButtons\msUpToParentIcon.pas',
msButtonIcon in 'SpecialShapes\ForButtons\msButtonIcon.pas',
msFolderToolIcon in 'SpecialShapes\ForButtons\msFolderToolIcon.pas',
msFolderIcon in 'SpecialShapes\ForButtons\msFolderIcon.pas',
msSVGShape in 'AbstractShapes\msSVGShape.pas',
msShapesList in 'msShapesList.pas',
msCircleWithRadius in 'ConcreteShapes\msCircleWithRadius.pas',
msShapeClassList in 'msShapeClassList.pas',
msProxyShape in 'ContainerShapes\msProxyShape.pas',
msShapeTool in 'ContainerShapes\msShapeTool.pas',
msMoveShapeUp in 'ShapeTools\FloatingButtons\msMoveShapeUp.pas',
msMoveShapeUpLeft in 'ShapeTools\FloatingButtons\msMoveShapeUpLeft.pas',
msMoveShapeUpRight in 'ShapeTools\FloatingButtons\msMoveShapeUpRight.pas',
msMoveShapeDown in 'ShapeTools\FloatingButtons\msMoveShapeDown.pas',
msMoveShapeDownRight in 'ShapeTools\FloatingButtons\msMoveShapeDownRight.pas',
msMoveShapeDownLeft in 'ShapeTools\FloatingButtons\msMoveShapeDownLeft.pas',
msMoveShapeLeft in 'ShapeTools\FloatingButtons\msMoveShapeLeft.pas',
msMoveShapeRight in 'ShapeTools\FloatingButtons\msMoveShapeRight.pas',
msShapeClass in 'MetaShapes\msShapeClass.pas',
msProxyShapeClass in 'MetaShapes\msProxyShapeClass.pas',
msMoveShapeTool in 'ContainerShapes\msMoveShapeTool.pas',
msBoundsCorrector in 'ContainerShapes\msBoundsCorrector.pas',
msSpecialDiagonalArrowBoundsCorrector in 'ContainerShapes\msSpecialDiagonalArrowBoundsCorrector.pas',
msFloatingButtonCircle in 'SpecialShapes\ForButtons\msFloatingButtonCircle.pas',
msCoreUtils in 'Core\msCoreUtils.pas',
msScalingShape in 'ContainerShapes\msScalingShape.pas',
FMX.DUnit.Interfaces in 'FMX.DUnit\FMX.DUnit.Interfaces.pas',
msScrollShapeUp in 'ShapeTools\ScrollButtons\msScrollShapeUp.pas',
msScrollShape in 'ShapeTools\ScrollButtons\msScrollShape.pas',
msScrollShapeDown in 'ShapeTools\ScrollButtons\msScrollShapeDown.pas',
msScrollShapeRight in 'ShapeTools\ScrollButtons\msScrollShapeRight.pas',
msScrollShapeLeft in 'ShapeTools\ScrollButtons\msScrollShapeLeft.pas',
msScrollShapeUpLeft in 'ShapeTools\ScrollButtons\msScrollShapeUpLeft.pas',
msScrollShapeUpRight in 'ShapeTools\ScrollButtons\msScrollShapeUpRight.pas',
msScrollShapeDownLeft in 'ShapeTools\ScrollButtons\msScrollShapeDownLeft.pas',
msScrollShapeDownRight in 'ShapeTools\ScrollButtons\msScrollShapeDownRight.pas',
msScrollShapePrim in 'ShapeTools\ScrollButtons\msScrollShapePrim.pas',
msScrollShapeResetOrigin in 'ShapeTools\ScrollButtons\msScrollShapeResetOrigin.pas',
msScrollingTool in 'ShapeTools\msScrollingTool.pas',
FMX.DUnit.msAppLog in 'fmx.dunit\FMX.DUnit.msAppLog.pas',
msMovingPointer in 'msMovingPointer.pas',
FMX.DUnit.msLog in 'fmx.dunit\FMX.DUnit.msLog.pas',
FMX.DUnit.Utils in 'fmx.dunit\FMX.DUnit.Utils.pas',
msConnector in 'ConcreteShapes\ForUML\msConnector.pas',
msLineF in 'Core\msLineF.pas',
msArrowHead in 'ConcreteShapes\msArrowHead.pas',
msPolylineShape in 'AbstractShapes\msPolylineShape.pas',
msShapeClassPrim in 'MetaShapes\msShapeClassPrim.pas',
Core.Obj in 'Core\Core.Obj.pas',
Script.Interfaces in 'FMX.DUnit\Script.Interfaces.pas',
Script.Word in 'Scripting\Script.Word.pas',
Script.WordsInterfaces in 'Scripting\Script.WordsInterfaces.pas',
Script.Dictionary in 'Scripting\Script.Dictionary.pas',
Script.Axiomatics in 'Scripting\Script.Axiomatics.pas',
Script.Engine in 'Scripting\Script.Engine.pas',
Script.Parser in 'Scripting\Script.Parser.pas',
Script.Code in 'Scripting\Script.Code.pas',
Script.StringWord in 'Scripting\Script.StringWord.pas',
Script.UnknownToken in 'Scripting\Script.UnknownToken.pas',
Script.Word.Examples in 'Scripting\Script.Word.Examples.pas',
Script.Word.Buttons in 'Scripting\Script.Word.Buttons.pas',
Testing.Engine in 'Scripting\Testing\Testing.Engine.pas',
u_fmGUITestRunner in 'FMX.DUnit\u_fmGUITestRunner.pas' {fmGUITestRunner},
FirstTest in 'Tests\Module\FirstTest.pas',
TestMsLine in 'Tests\Module\TestMsLine.pas',
TestMsRectangle in 'Tests\Module\TestMsRectangle.pas',
TestMsPointCircle in 'Tests\Module\TestMsPointCircle.pas',
TestMsCircle in 'Tests\Module\TestMsCircle.pas',
msShapeTest in 'Tests\Module\msShapeTest.pas',
msShapeTestSuite in 'Tests\Module\msShapeTestSuite.pas',
TestmsJsonFormatter in 'Tests\Module\TestmsJsonFormatter.pas',
TestSaveToPNG in 'Tests\Module\TestSaveToPNG.pas',
TestSaveMoverToPNG in 'Tests\Module\TestSaveMoverToPNG.pas',
msTestConstants in 'Tests\Module\msTestConstants.pas',
ForToolbarShapesTest in 'Tests\Integrated\ForToolbarShapesTest.pas',
RegisteredShapesTest in 'Tests\Integrated\RegisteredShapesTest.pas',
UtilityShapesTest in 'Tests\Integrated\UtilityShapesTest.pas',
msLoggedTest in 'Tests\Core\msLoggedTest.pas',
msRegisteredShapesTestPrim in 'Tests\Abstract\msRegisteredShapesTestPrim.pas',
msLineCrossTest in 'Tests\Module\msLineCrossTest.pas',
FMX.DUnit.Settings in 'fmx.dunit\FMX.DUnit.Settings.pas',
DUnit.Scripting.AutoTest in 'Tests\DUnitScripting\DUnit.Scripting.AutoTest.pas',
DUnit.Scripting.AutoTests in 'Tests\DUnitScripting\DUnit.Scripting.AutoTests.pas',
msGarbageCollector in 'Patches\msGarbageCollector.pas',
msShapeView in 'Views\msShapeView.pas',
msTextShapeView in 'Views\msTextShapeView.pas',
msRectangleView in 'Views\msRectangleView.pas',
msRectangle in 'ConcreteShapes\msRectangle.pas',
msCircleView in 'Views\msCircleView.pas',
msLineView in 'Views\msLineView.pas',
msPredefinedShapes in 'msPredefinedShapes.pas',
msActorView in 'Views\msActorView.pas',
msMovingPointerView in 'Views\msMovingPointerView.pas',
msScrollingToolView in 'Views\msScrollingToolView.pas',
msMoverView in 'Views\msMoverView.pas',
msPolygonShapeView in 'Views\msPolygonShapeView.pas',
msPolylineShapeView in 'Views\msPolylineShapeView.pas',
tfwScriptEngineEX in 'l3Parser\ScriptEngine\tfwScriptEngineEX.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfmMain, fmMain);
u_fmGUITestRunner.RunRegisteredTestsModeless;
Application.Run;
end.