PostRender form added
This commit is contained in:
parent
0fa8300993
commit
0c003c61b0
@ -30,7 +30,7 @@
|
|||||||
<Compiler Name="L">1</Compiler>
|
<Compiler Name="L">1</Compiler>
|
||||||
<Compiler Name="M">0</Compiler>
|
<Compiler Name="M">0</Compiler>
|
||||||
<Compiler Name="N">1</Compiler>
|
<Compiler Name="N">1</Compiler>
|
||||||
<Compiler Name="O">0</Compiler>
|
<Compiler Name="O">1</Compiler>
|
||||||
<Compiler Name="P">1</Compiler>
|
<Compiler Name="P">1</Compiler>
|
||||||
<Compiler Name="Q">0</Compiler>
|
<Compiler Name="Q">0</Compiler>
|
||||||
<Compiler Name="R">0</Compiler>
|
<Compiler Name="R">0</Compiler>
|
||||||
|
@ -13,5 +13,7 @@
|
|||||||
<Transaction>2005-03-26 11:30:03.171.pas,X:\Code\Delphi\Apophysis\2.02h\Project\delphi2005\Unit1.pas=X:\Code\Delphi\Apophysis\2.02h\Source\RandomCP.pas</Transaction>
|
<Transaction>2005-03-26 11:30:03.171.pas,X:\Code\Delphi\Apophysis\2.02h\Project\delphi2005\Unit1.pas=X:\Code\Delphi\Apophysis\2.02h\Source\RandomCP.pas</Transaction>
|
||||||
<Transaction>2005-03-26 11:45:01.078.pas,X:\Code\Delphi\Apophysis\2.02h\Source\RandomCP.pas=X:\Code\Delphi\Apophysis\2.02h\Source\RandomFlame.pas</Transaction>
|
<Transaction>2005-03-26 11:45:01.078.pas,X:\Code\Delphi\Apophysis\2.02h\Source\RandomCP.pas=X:\Code\Delphi\Apophysis\2.02h\Source\RandomFlame.pas</Transaction>
|
||||||
<Transaction>2005-03-26 11:53:30.875.pas,X:\Code\Delphi\Apophysis\2.02h\Source\RandomFlame.pas=X:\Code\Delphi\Apophysis\2.02h\Source\RndFlame.pas</Transaction>
|
<Transaction>2005-03-26 11:53:30.875.pas,X:\Code\Delphi\Apophysis\2.02h\Source\RandomFlame.pas=X:\Code\Delphi\Apophysis\2.02h\Source\RndFlame.pas</Transaction>
|
||||||
|
<Transaction>2005-04-09 09:05:14.015.pas,X:\Code\Delphi\Apophysis\2.02h\Project\delphi2005\Unit1.pas=X:\Code\Delphi\Apophysis\2.02h\Source\formPostProcess.pas</Transaction>
|
||||||
|
<Transaction>2005-04-09 09:05:14.031.dfm,X:\Code\Delphi\Apophysis\2.02h\Project\delphi2005\Unit1.dfm=X:\Code\Delphi\Apophysis\2.02h\Source\formPostProcess.dfm</Transaction>
|
||||||
</Transactions>
|
</Transactions>
|
||||||
</BorlandProject>
|
</BorlandProject>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
-$L+
|
-$L+
|
||||||
-$M-
|
-$M-
|
||||||
-$N+
|
-$N+
|
||||||
-$O-
|
-$O+
|
||||||
-$P+
|
-$P+
|
||||||
-$Q-
|
-$Q-
|
||||||
-$R-
|
-$R-
|
||||||
|
@ -23,6 +23,7 @@ program Apophysis202;
|
|||||||
uses
|
uses
|
||||||
Forms,
|
Forms,
|
||||||
SysUtils,
|
SysUtils,
|
||||||
|
Dialogs,
|
||||||
Main in '..\..\Source\Main.pas' {MainForm},
|
Main in '..\..\Source\Main.pas' {MainForm},
|
||||||
Editor in '..\..\Source\Editor.pas' {EditForm},
|
Editor in '..\..\Source\Editor.pas' {EditForm},
|
||||||
Global in '..\..\Source\Global.pas',
|
Global in '..\..\Source\Global.pas',
|
||||||
@ -57,13 +58,19 @@ uses
|
|||||||
RenderMM in '..\..\Source\RenderMM.pas',
|
RenderMM in '..\..\Source\RenderMM.pas',
|
||||||
ImageColoring in '..\..\Source\ImageColoring.pas' {frmImageColoring},
|
ImageColoring in '..\..\Source\ImageColoring.pas' {frmImageColoring},
|
||||||
GradientHlpr in '..\..\Source\GradientHlpr.pas',
|
GradientHlpr in '..\..\Source\GradientHlpr.pas',
|
||||||
RndFlame in '..\..\Source\RndFlame.pas';
|
RndFlame in '..\..\Source\RndFlame.pas',
|
||||||
|
formPostProcess in '..\..\Source\formPostProcess.pas' {frmPostProcess};
|
||||||
|
|
||||||
// ImageColoring in '..\..\Source\ImageColoring.pas' {frmImageColoring};
|
// ImageColoring in '..\..\Source\ImageColoring.pas' {frmImageColoring};
|
||||||
|
|
||||||
{$R *.RES}
|
{$R *.RES}
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
if now > EncodeDate(2005,6,20) then begin
|
||||||
|
ShowMessage('This version has expired. Please go to http://sourceforge.net/project/apophysis and download the latest version.');
|
||||||
|
Halt
|
||||||
|
end;
|
||||||
|
|
||||||
Application.Initialize;
|
Application.Initialize;
|
||||||
Application.Title := 'Apophysis';
|
Application.Title := 'Apophysis';
|
||||||
Application.HelpFile := 'Apophysis 2.0.chm';
|
Application.HelpFile := 'Apophysis 2.0.chm';
|
||||||
@ -86,6 +93,7 @@ begin
|
|||||||
Application.CreateForm(TSizeTool, SizeTool);
|
Application.CreateForm(TSizeTool, SizeTool);
|
||||||
Application.CreateForm(TExportDialog, ExportDialog);
|
Application.CreateForm(TExportDialog, ExportDialog);
|
||||||
Application.CreateForm(TSheepDialog, SheepDialog);
|
Application.CreateForm(TSheepDialog, SheepDialog);
|
||||||
|
Application.CreateForm(TfrmPostProcess, frmPostProcess);
|
||||||
// Application.CreateForm(TfrmImageColoring, frmImageColoring);
|
// Application.CreateForm(TfrmImageColoring, frmImageColoring);
|
||||||
Application.UpdateFormatSettings := False;
|
Application.UpdateFormatSettings := False;
|
||||||
DecimalSeparator := '.';
|
DecimalSeparator := '.';
|
||||||
|
@ -1,101 +1,75 @@
|
|||||||
[Closed Files]
|
[Closed Files]
|
||||||
File_0=TSourceModule,'c:\develop\borland\bds\3.0\source\Win32\rtl\win\Windows.pas',0,1,29720,1,29752,0,0,,
|
File_0=TSourceModule,'X:\Code\Delphi\Apophysis\2.02h\Source\FormRender.pas',0,1,151,18,177,0,0,,
|
||||||
File_1=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\Gradient.pas',0,1,439,15,475,0,0,,
|
File_1=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\Main.pas',0,1,2168,33,2195,0,0,,{1
|
||||||
File_2=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\GradientHlpr.pas',0,1,1,35,23,0,0,,
|
File_2=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\ControlPoint.pas',0,1,41,26,73,0,0,,
|
||||||
File_3=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\ImageColoring.pas',0,1,91,49,94,0,0,,
|
File_3=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\Render32.pas',0,1,166,5,209,0,0,,
|
||||||
File_4=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\cmap.pas',0,1,20,3,26,0,0,,
|
File_4=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\RenderMM.pas',0,1,410,1,435,0,0,,
|
||||||
|
File_5=TSourceModule,'X:\Code\Delphi\Apophysis\2.02h\Source\About.pas',0,1,1,1,1,0,0,,
|
||||||
|
File_6=TSourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\RenderThread.pas',0,1,1,44,16,0,0,,
|
||||||
|
|
||||||
[Modules]
|
[Modules]
|
||||||
Module0=X:\Code\Delphi\Apophysis\2.02g\Source\RenderMM.pas
|
Module0=X:\Code\Delphi\Apophysis\2.02h\Source\ControlPoint.pas
|
||||||
Module1=X:\Code\Delphi\Apophysis\2.02g\Source\XForm.pas
|
Module1=X:\Code\Delphi\Apophysis\2.02h\Source\Render64.pas
|
||||||
Module2=X:\Code\Delphi\Apophysis\2.02g\Source\Main.pas
|
Module2=X:\Code\Delphi\Apophysis\2.02h\Source\XForm.pas
|
||||||
Module3=X:\Code\Delphi\Apophysis\2.02g\Project\delphi2005\Apophysis202.bdsproj
|
Module3=X:\Code\Delphi\Apophysis\2.02h\Source\Editor.pas
|
||||||
Module4=X:\Code\Delphi\Apophysis\2.02g\Source\Mutate.pas
|
Module4=X:\Code\Delphi\Apophysis\2.02h\Source\formPostProcess.pas
|
||||||
Module5=X:\Code\Delphi\Apophysis\2.02g\Source\RenderThread.pas
|
Module5=X:\Code\Delphi\Apophysis\2.02h\Source\Adjust.pas
|
||||||
Module6=X:\Code\Delphi\Apophysis\2.02g\Source\Render32.pas
|
Module6=X:\Code\Delphi\Apophysis\2.02h\Source\Render.pas
|
||||||
Module7=X:\Code\Delphi\Apophysis\2.02g\Source\Render64.pas
|
Module7=X:\Code\Delphi\Apophysis\2.02h\Source\Render32.pas
|
||||||
Module8=X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3-render.c
|
Module8=default.htm
|
||||||
Module9=X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\rect.c
|
Count=9
|
||||||
Module10=X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3.h
|
|
||||||
Module11=X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3.c
|
|
||||||
Module12=X:\Code\Delphi\Apophysis\2.02g\Source\ControlPoint.pas
|
|
||||||
Module13=c:\develop\borland\bds\3.0\source\Win32\rtl\sys\System.pas
|
|
||||||
Module14=X:\Code\Delphi\Apophysis\2.02g\Source\ScriptForm.pas
|
|
||||||
Module15=default.htm
|
|
||||||
Count=16
|
|
||||||
EditWindowCount=1
|
EditWindowCount=1
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\RenderMM.pas]
|
[X:\Code\Delphi\Apophysis\2.02h\Source\ControlPoint.pas]
|
||||||
ModuleType=TSourceModule
|
ModuleType=TSourceModule
|
||||||
FormState=0
|
FormState=0
|
||||||
FormOnTop=0
|
FormOnTop=0
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\XForm.pas]
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Render64.pas]
|
||||||
ModuleType=TSourceModule
|
ModuleType=TSourceModule
|
||||||
FormState=0
|
FormState=0
|
||||||
FormOnTop=0
|
FormOnTop=0
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\Main.pas]
|
[X:\Code\Delphi\Apophysis\2.02h\Source\XForm.pas]
|
||||||
|
ModuleType=TSourceModule
|
||||||
|
FormState=0
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Editor.pas]
|
||||||
ModuleType=TSourceModule
|
ModuleType=TSourceModule
|
||||||
FormState=1
|
FormState=1
|
||||||
FormOnTop=0
|
FormOnTop=0
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Project\delphi2005\Apophysis202.bdsproj]
|
[X:\Code\Delphi\Apophysis\2.02h\Source\formPostProcess.pas]
|
||||||
ModuleType=TBaseProject
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\Mutate.pas]
|
|
||||||
ModuleType=TSourceModule
|
ModuleType=TSourceModule
|
||||||
FormState=1
|
FormState=1
|
||||||
FormOnTop=0
|
FormOnTop=0
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\RenderThread.pas]
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Adjust.pas]
|
||||||
ModuleType=TSourceModule
|
|
||||||
FormState=0
|
|
||||||
FormOnTop=0
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\Render32.pas]
|
|
||||||
ModuleType=TSourceModule
|
|
||||||
FormState=0
|
|
||||||
FormOnTop=0
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\Render64.pas]
|
|
||||||
ModuleType=TSourceModule
|
|
||||||
FormState=0
|
|
||||||
FormOnTop=0
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3-render.c]
|
|
||||||
ModuleType=TSourceModule
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\rect.c]
|
|
||||||
ModuleType=TSourceModule
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3.h]
|
|
||||||
ModuleType=TSourceModule
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3.c]
|
|
||||||
ModuleType=TSourceModule
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\ControlPoint.pas]
|
|
||||||
ModuleType=TSourceModule
|
|
||||||
FormState=0
|
|
||||||
FormOnTop=0
|
|
||||||
|
|
||||||
[c:\develop\borland\bds\3.0\source\Win32\rtl\sys\System.pas]
|
|
||||||
ModuleType=TSourceModule
|
|
||||||
FormState=0
|
|
||||||
FormOnTop=0
|
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Source\ScriptForm.pas]
|
|
||||||
ModuleType=TSourceModule
|
ModuleType=TSourceModule
|
||||||
FormState=1
|
FormState=1
|
||||||
FormOnTop=0
|
FormOnTop=0
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Render.pas]
|
||||||
|
ModuleType=TSourceModule
|
||||||
|
FormState=0
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Render32.pas]
|
||||||
|
ModuleType=TSourceModule
|
||||||
|
FormState=0
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
[default.htm]
|
[default.htm]
|
||||||
ModuleType=TURLModule
|
ModuleType=TURLModule
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Main.pas]
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
[EditWindow0]
|
[EditWindow0]
|
||||||
ViewCount=16
|
ViewCount=9
|
||||||
CurrentEditView=X:\Code\Delphi\Apophysis\2.02g\Source\RenderMM.pas
|
CurrentEditView=X:\Code\Delphi\Apophysis\2.02h\Source\ControlPoint.pas
|
||||||
View0=0
|
View0=0
|
||||||
View1=1
|
View1=1
|
||||||
View2=2
|
View2=2
|
||||||
@ -105,13 +79,6 @@ View5=5
|
|||||||
View6=6
|
View6=6
|
||||||
View7=7
|
View7=7
|
||||||
View8=8
|
View8=8
|
||||||
View9=9
|
|
||||||
View10=10
|
|
||||||
View11=11
|
|
||||||
View12=12
|
|
||||||
View13=13
|
|
||||||
View14=14
|
|
||||||
View15=15
|
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
Visible=1
|
||||||
@ -119,28 +86,28 @@ Docked=1
|
|||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=0
|
||||||
Width=9930
|
Width=9938
|
||||||
Height=9145
|
Height=9145
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=9930
|
ClientWidth=9938
|
||||||
ClientHeight=9145
|
ClientHeight=9145
|
||||||
DockedToMainForm=1
|
DockedToMainForm=1
|
||||||
MessageView=MessageView@EditWindow0
|
MessageView=MessageView@EditWindow0
|
||||||
BorlandEditorCodeExplorer=BorlandEditorCodeExplorer@EditWindow0
|
BorlandEditorCodeExplorer=BorlandEditorCodeExplorer@EditWindow0
|
||||||
TopPanelSize=0
|
TopPanelSize=0
|
||||||
LeftPanelSize=1906
|
LeftPanelSize=2602
|
||||||
LeftPanelClients=StructureView,DockSite1
|
LeftPanelClients=PropertyInspector,CallStackWindow,WatchWindow,LocalVarsWindow
|
||||||
LeftPanelData=00000800010100000000AE170000000000000172070000000000000100000000C50D00001100000053747275637475726556696577466F726D01000000009A1D000009000000446F636B5369746531FFFFFFFF
|
LeftPanelData=000008000102010000001100000050726F7065727479496E73706563746F72B40C00000000000002161B00000000000001000000012A0A0000000000000200000000DA0800000F00000043616C6C537461636B57696E646F770200000000B31100000B000000576174636857696E646F770200000000161B00000F0000004C6F63616C5661727357696E646F77FFFFFFFF
|
||||||
RightPanelSize=2258
|
RightPanelSize=1688
|
||||||
RightPanelClients=ToolForm,DockSite0
|
RightPanelClients=ToolForm,ProjectManager
|
||||||
RightPanelData=00000800010100000000AE1700000000000001D20800000000000001000000006511000009000000446F636B536974653001000000009A1D000008000000546F6F6C466F726DFFFFFFFF
|
RightPanelData=0000080001020100000008000000546F6F6C466F726D3D0800000000000002161B000000000000010000000198060000000000000200000000161B00001200000050726F6A6563744D616E61676572466F726DFFFFFFFF
|
||||||
BottomPanelSize=1270
|
BottomPanelSize=1914
|
||||||
BottomPanelClients=MessageView@EditWindow0,ToDo List,DockSite3
|
BottomPanelClients=MessageView@EditWindow0,ToDo List,DockSite0
|
||||||
BottomPanelData=000008000102020000000E000000546F446F4C69737457696E646F7709000000446F636B53697465337C3000000000000002F60400000000000001000000007C3000000B0000004D65737361676556696577FFFFFFFF
|
BottomPanelData=000008000102020000000B0000004D657373616765566965770E000000546F446F4C69737457696E646F778630000000000000027A0700000000000001000000008630000009000000446F636B5369746530FFFFFFFF
|
||||||
BottomMiddlePanelSize=0
|
BottomMiddlePanelSize=0
|
||||||
BottomMiddlePanelClients=DockSite2
|
BottomMiddlePanelClients=DockSite1
|
||||||
BottomMiddelPanelData=0000080001000100000009000000446F636B53697465320000000000000000000000000000000000FFFFFFFF
|
BottomMiddelPanelData=0000080001020100000009000000446F636B53697465313F23000000000000025F06000000000000FFFFFFFF
|
||||||
|
|
||||||
[View0]
|
[View0]
|
||||||
CustomEditViewType=TWelcomePageView
|
CustomEditViewType=TWelcomePageView
|
||||||
@ -148,59 +115,59 @@ WelcomePageURL=bds:/default.htm
|
|||||||
|
|
||||||
[View1]
|
[View1]
|
||||||
CustomEditViewType=TEditView
|
CustomEditViewType=TEditView
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Project\delphi2005\Apophysis202.dpr
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Editor.pas
|
||||||
CursorX=1
|
CursorX=1
|
||||||
CursorY=88
|
CursorY=1515
|
||||||
TopLine=59
|
TopLine=1498
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
Elisions=
|
Elisions=
|
||||||
Bookmarks=
|
Bookmarks=
|
||||||
|
|
||||||
[View2]
|
[View2]
|
||||||
CustomEditViewType=TEditView
|
CustomEditViewType=TEditView
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\Main.pas
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\XForm.pas
|
||||||
CursorX=33
|
CursorX=1
|
||||||
CursorY=2195
|
CursorY=451
|
||||||
TopLine=2168
|
TopLine=434
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
Elisions=
|
Elisions=
|
||||||
Bookmarks={1,4280,5}
|
Bookmarks=
|
||||||
|
|
||||||
[View3]
|
[View3]
|
||||||
CustomEditViewType=TEditView
|
CustomEditViewType=TEditView
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\ControlPoint.pas
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\formPostProcess.pas
|
||||||
CursorX=26
|
CursorX=24
|
||||||
CursorY=73
|
CursorY=147
|
||||||
TopLine=41
|
TopLine=123
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
Elisions=
|
Elisions=
|
||||||
Bookmarks=
|
Bookmarks=
|
||||||
|
|
||||||
[View4]
|
[View4]
|
||||||
CustomEditViewType=TEditView
|
CustomEditViewType=TEditView
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\Render32.pas
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Adjust.pas
|
||||||
CursorX=5
|
CursorX=53
|
||||||
CursorY=209
|
CursorY=502
|
||||||
TopLine=166
|
TopLine=453
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
Elisions=
|
Elisions=
|
||||||
Bookmarks=
|
Bookmarks=
|
||||||
|
|
||||||
[View5]
|
[View5]
|
||||||
CustomEditViewType=TEditView
|
CustomEditViewType=TEditView
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\RenderMM.pas
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\ControlPoint.pas
|
||||||
CursorX=1
|
CursorX=49
|
||||||
CursorY=435
|
CursorY=671
|
||||||
TopLine=410
|
TopLine=653
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
Elisions=
|
Elisions=
|
||||||
Bookmarks=
|
Bookmarks=
|
||||||
|
|
||||||
[View6]
|
[View6]
|
||||||
CustomEditViewType=TEditView
|
CustomEditViewType=TEditView
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\RenderThread.pas
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Render.pas
|
||||||
CursorX=44
|
CursorX=1
|
||||||
CursorY=16
|
CursorY=1
|
||||||
TopLine=1
|
TopLine=1
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
Elisions=
|
Elisions=
|
||||||
@ -208,93 +175,23 @@ Bookmarks=
|
|||||||
|
|
||||||
[View7]
|
[View7]
|
||||||
CustomEditViewType=TEditView
|
CustomEditViewType=TEditView
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\Mutate.pas
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Render32.pas
|
||||||
CursorX=34
|
CursorX=15
|
||||||
CursorY=362
|
CursorY=86
|
||||||
TopLine=314
|
TopLine=86
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
Elisions=
|
Elisions=
|
||||||
Bookmarks=
|
Bookmarks=
|
||||||
|
|
||||||
[View8]
|
[View8]
|
||||||
CustomEditViewType=TEditView
|
CustomEditViewType=TEditView
|
||||||
Module=X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3.c
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Render64.pas
|
||||||
CursorX=18
|
|
||||||
CursorY=1603
|
|
||||||
TopLine=1560
|
|
||||||
LeftCol=1
|
|
||||||
Elisions=
|
|
||||||
Bookmarks=
|
|
||||||
|
|
||||||
[View9]
|
|
||||||
CustomEditViewType=TEditView
|
|
||||||
Module=X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3-render.c
|
|
||||||
CursorX=23
|
|
||||||
CursorY=78
|
|
||||||
TopLine=46
|
|
||||||
LeftCol=1
|
|
||||||
Elisions=
|
|
||||||
Bookmarks=
|
|
||||||
|
|
||||||
[View10]
|
|
||||||
CustomEditViewType=TEditView
|
|
||||||
Module=X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\rect.c
|
|
||||||
CursorX=38
|
|
||||||
CursorY=270
|
|
||||||
TopLine=238
|
|
||||||
LeftCol=1
|
|
||||||
Elisions=
|
|
||||||
Bookmarks=
|
|
||||||
|
|
||||||
[View11]
|
|
||||||
CustomEditViewType=TEditView
|
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\Render64.pas
|
|
||||||
CursorX=1
|
CursorX=1
|
||||||
CursorY=179
|
CursorY=437
|
||||||
TopLine=155
|
TopLine=564
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
Elisions=
|
Elisions=
|
||||||
Bookmarks=
|
Bookmarks={1,636,1}
|
||||||
|
|
||||||
[View12]
|
|
||||||
CustomEditViewType=TEditView
|
|
||||||
Module=X:\Code\Delphi\Apophysis\flam3-2.5\flam3-2.5\flam3.h
|
|
||||||
CursorX=25
|
|
||||||
CursorY=135
|
|
||||||
TopLine=103
|
|
||||||
LeftCol=1
|
|
||||||
Elisions=
|
|
||||||
Bookmarks=
|
|
||||||
|
|
||||||
[View13]
|
|
||||||
CustomEditViewType=TEditView
|
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\XForm.pas
|
|
||||||
CursorX=1
|
|
||||||
CursorY=511
|
|
||||||
TopLine=486
|
|
||||||
LeftCol=1
|
|
||||||
Elisions=
|
|
||||||
Bookmarks=
|
|
||||||
|
|
||||||
[View14]
|
|
||||||
CustomEditViewType=TEditView
|
|
||||||
Module=c:\develop\borland\bds\3.0\source\Win32\rtl\sys\System.pas
|
|
||||||
CursorX=16
|
|
||||||
CursorY=1253
|
|
||||||
TopLine=1233
|
|
||||||
LeftCol=1
|
|
||||||
Elisions=
|
|
||||||
Bookmarks=
|
|
||||||
|
|
||||||
[View15]
|
|
||||||
CustomEditViewType=TEditView
|
|
||||||
Module=X:\Code\Delphi\Apophysis\2.02g\Source\ScriptForm.pas
|
|
||||||
CursorX=35
|
|
||||||
CursorY=1329
|
|
||||||
TopLine=1293
|
|
||||||
LeftCol=1
|
|
||||||
Elisions=
|
|
||||||
Bookmarks=
|
|
||||||
|
|
||||||
[Watches]
|
[Watches]
|
||||||
Count=0
|
Count=0
|
||||||
@ -308,15 +205,15 @@ Visible=1
|
|||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=255
|
||||||
Width=3766
|
Width=2602
|
||||||
Height=724
|
Height=2062
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=3766
|
ClientWidth=2602
|
||||||
ClientHeight=724
|
ClientHeight=2062
|
||||||
TBDockHeight=201
|
TBDockHeight=1821
|
||||||
LRDockWidth=13602
|
LRDockWidth=2602
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
@ -332,13 +229,13 @@ Create=1
|
|||||||
Visible=1
|
Visible=1
|
||||||
Docked=0
|
Docked=0
|
||||||
State=0
|
State=0
|
||||||
Left=8
|
Left=0
|
||||||
Top=-10
|
Top=0
|
||||||
Width=9992
|
Width=10000
|
||||||
Height=10010
|
Height=10010
|
||||||
MaxLeft=-8
|
MaxLeft=-8
|
||||||
MaxTop=-10
|
MaxTop=-10
|
||||||
ClientWidth=9930
|
ClientWidth=9938
|
||||||
ClientHeight=9668
|
ClientHeight=9668
|
||||||
BottomPanelSize=8877
|
BottomPanelSize=8877
|
||||||
BottomPanelClients=EditWindow0
|
BottomPanelClients=EditWindow0
|
||||||
@ -351,75 +248,56 @@ Visible=1
|
|||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=23
|
||||||
Width=2195
|
Width=1688
|
||||||
Height=3964
|
Height=6911
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=2195
|
ClientWidth=1688
|
||||||
ClientHeight=3964
|
ClientHeight=6911
|
||||||
TBDockHeight=5905
|
TBDockHeight=7093
|
||||||
LRDockWidth=3156
|
LRDockWidth=1688
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
[ToolForm]
|
[ToolForm]
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
Visible=0
|
||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=-1060
|
||||||
Top=479
|
Top=-82
|
||||||
Width=2258
|
Width=1688
|
||||||
Height=2988
|
Height=6640
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=2258
|
ClientWidth=1688
|
||||||
ClientHeight=2988
|
ClientHeight=6640
|
||||||
TBDockHeight=6911
|
TBDockHeight=6640
|
||||||
LRDockWidth=2258
|
LRDockWidth=1688
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
[PropertyInspector]
|
[PropertyInspector]
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
|
||||||
Docked=1
|
|
||||||
State=0
|
|
||||||
Left=0
|
|
||||||
Top=0
|
|
||||||
Width=1844
|
|
||||||
Height=3843
|
|
||||||
MaxLeft=-1
|
|
||||||
MaxTop=-1
|
|
||||||
ClientWidth=1844
|
|
||||||
ClientHeight=3843
|
|
||||||
TBDockHeight=412
|
|
||||||
LRDockWidth=1906
|
|
||||||
Dockable=1
|
|
||||||
StayOnTop=0
|
|
||||||
SplitPos=95
|
|
||||||
|
|
||||||
[RMAddinTool]
|
|
||||||
PercentageSizes=1
|
|
||||||
Create=1
|
|
||||||
Visible=0
|
Visible=0
|
||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=-9
|
Left=-4
|
||||||
Top=265
|
Top=-82
|
||||||
Width=5305
|
Width=2602
|
||||||
Height=5141
|
Height=6640
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=5305
|
ClientWidth=2602
|
||||||
ClientHeight=5141
|
ClientHeight=6640
|
||||||
TBDockHeight=5141
|
TBDockHeight=6640
|
||||||
LRDockWidth=5305
|
LRDockWidth=2602
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
SplitPos=77
|
||||||
|
|
||||||
[CallStackWindow]
|
[CallStackWindow]
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
@ -428,32 +306,32 @@ Visible=1
|
|||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=23
|
||||||
Width=3766
|
Width=2602
|
||||||
Height=724
|
Height=2062
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=3766
|
ClientWidth=2602
|
||||||
ClientHeight=724
|
ClientHeight=2062
|
||||||
TBDockHeight=2072
|
TBDockHeight=1871
|
||||||
LRDockWidth=3484
|
LRDockWidth=2602
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
[DataExplorer]
|
[DataExplorer]
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
Visible=0
|
||||||
Docked=1
|
Docked=0
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=7742
|
||||||
Top=0
|
Top=1338
|
||||||
Width=2195
|
Width=5305
|
||||||
Height=3964
|
Height=5080
|
||||||
MaxLeft=-1
|
MaxLeft=-8
|
||||||
MaxTop=-1
|
MaxTop=-10
|
||||||
ClientWidth=2195
|
ClientWidth=5242
|
||||||
ClientHeight=3964
|
ClientHeight=4819
|
||||||
TBDockHeight=4879
|
TBDockHeight=4879
|
||||||
LRDockWidth=7148
|
LRDockWidth=7148
|
||||||
Dockable=1
|
Dockable=1
|
||||||
@ -465,15 +343,15 @@ Create=1
|
|||||||
Visible=0
|
Visible=0
|
||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=-5
|
Left=-4
|
||||||
Top=-990
|
Top=-795
|
||||||
Width=3672
|
Width=3672
|
||||||
Height=1157
|
Height=1811
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=3672
|
ClientWidth=3672
|
||||||
ClientHeight=1157
|
ClientHeight=1811
|
||||||
TBDockHeight=1157
|
TBDockHeight=1811
|
||||||
LRDockWidth=3672
|
LRDockWidth=3672
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
@ -494,14 +372,14 @@ Docked=1
|
|||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=0
|
||||||
Width=2273
|
Width=2742
|
||||||
Height=1962
|
Height=1127
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=2273
|
ClientWidth=2742
|
||||||
ClientHeight=1962
|
ClientHeight=1127
|
||||||
TBDockHeight=2314
|
TBDockHeight=2928
|
||||||
LRDockWidth=2828
|
LRDockWidth=3398
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
@ -513,14 +391,14 @@ Docked=1
|
|||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=0
|
||||||
Width=2273
|
Width=2742
|
||||||
Height=1962
|
Height=1127
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=2273
|
ClientWidth=2742
|
||||||
ClientHeight=1962
|
ClientHeight=1127
|
||||||
TBDockHeight=3209
|
TBDockHeight=1730
|
||||||
LRDockWidth=2828
|
LRDockWidth=3398
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
@ -532,14 +410,14 @@ Docked=1
|
|||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=0
|
||||||
Width=3766
|
Width=9875
|
||||||
Height=724
|
Height=1388
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=3766
|
ClientWidth=9875
|
||||||
ClientHeight=724
|
ClientHeight=1388
|
||||||
TBDockHeight=412
|
TBDockHeight=3360
|
||||||
LRDockWidth=4953
|
LRDockWidth=3625
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
@ -551,14 +429,14 @@ Docked=1
|
|||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=0
|
||||||
Width=3766
|
Width=9875
|
||||||
Height=724
|
Height=1388
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=3766
|
ClientWidth=9875
|
||||||
ClientHeight=724
|
ClientHeight=1388
|
||||||
TBDockHeight=201
|
TBDockHeight=775
|
||||||
LRDockWidth=7414
|
LRDockWidth=5422
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
Column0Width=145
|
Column0Width=145
|
||||||
@ -573,32 +451,32 @@ Visible=1
|
|||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=487
|
||||||
Width=3766
|
Width=2602
|
||||||
Height=724
|
Height=2243
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=3766
|
ClientWidth=2602
|
||||||
ClientHeight=724
|
ClientHeight=2243
|
||||||
TBDockHeight=262
|
TBDockHeight=8863
|
||||||
LRDockWidth=3484
|
LRDockWidth=2602
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
[ModelViewTool]
|
[ModelViewTool]
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
Visible=0
|
||||||
Docked=1
|
Docked=0
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=7742
|
||||||
Top=0
|
Top=1338
|
||||||
Width=2195
|
Width=5305
|
||||||
Height=3964
|
Height=5080
|
||||||
MaxLeft=-1
|
MaxLeft=-8
|
||||||
MaxTop=-1
|
MaxTop=-10
|
||||||
ClientWidth=2195
|
ClientWidth=5242
|
||||||
ClientHeight=3964
|
ClientHeight=4819
|
||||||
TBDockHeight=4879
|
TBDockHeight=4879
|
||||||
LRDockWidth=5305
|
LRDockWidth=5305
|
||||||
Dockable=1
|
Dockable=1
|
||||||
@ -612,17 +490,17 @@ Docked=1
|
|||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=0
|
Top=0
|
||||||
Width=3766
|
Width=9875
|
||||||
Height=724
|
Height=1388
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=3766
|
ClientWidth=9875
|
||||||
ClientHeight=724
|
ClientHeight=1388
|
||||||
TBDockHeight=1549
|
TBDockHeight=2082
|
||||||
LRDockWidth=8742
|
LRDockWidth=6398
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
Column0Width=100
|
Column0Width=130
|
||||||
Column1Width=75
|
Column1Width=75
|
||||||
Column2Width=200
|
Column2Width=200
|
||||||
Column3Width=200
|
Column3Width=200
|
||||||
@ -632,38 +510,38 @@ Column5Width=75
|
|||||||
[StructureView]
|
[StructureView]
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
Visible=0
|
||||||
Docked=1
|
Docked=0
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=23
|
Top=885
|
||||||
Width=1906
|
Width=1453
|
||||||
Height=3360
|
Height=3622
|
||||||
MaxLeft=-1
|
MaxLeft=-8
|
||||||
MaxTop=-1
|
MaxTop=-10
|
||||||
ClientWidth=1906
|
ClientWidth=1391
|
||||||
ClientHeight=3360
|
ClientHeight=3360
|
||||||
TBDockHeight=3672
|
TBDockHeight=3622
|
||||||
LRDockWidth=1906
|
LRDockWidth=1453
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
[MessageView@EditWindow0]
|
[MessageView@EditWindow0]
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
Visible=0
|
||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=-4
|
||||||
Top=23
|
Top=-795
|
||||||
Width=9930
|
Width=3852
|
||||||
Height=1076
|
Height=1157
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=9930
|
ClientWidth=3852
|
||||||
ClientHeight=1076
|
ClientHeight=1157
|
||||||
TBDockHeight=1076
|
TBDockHeight=1157
|
||||||
LRDockWidth=4328
|
LRDockWidth=3852
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
@ -687,7 +565,7 @@ Dockable=1
|
|||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
|
|
||||||
[DockHosts]
|
[DockHosts]
|
||||||
DockHostCount=4
|
DockHostCount=2
|
||||||
|
|
||||||
[DockSite0]
|
[DockSite0]
|
||||||
DockSiteType=1
|
DockSiteType=1
|
||||||
@ -698,86 +576,40 @@ Docked=1
|
|||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=23
|
Top=23
|
||||||
Width=2258
|
Width=9938
|
||||||
Height=4316
|
Height=1740
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=2258
|
ClientWidth=9938
|
||||||
ClientHeight=4316
|
ClientHeight=1740
|
||||||
TBDockHeight=1740
|
TBDockHeight=1740
|
||||||
LRDockWidth=2258
|
LRDockWidth=2453
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
TabPosition=1
|
TabPosition=1
|
||||||
ActiveTabID=ProjectManager
|
ActiveTabID=DebugLogView
|
||||||
TabDockClients=ProjectManager,ModelViewTool,DataExplorer
|
TabDockClients=DebugLogView,BreakpointWindow,ThreadStatusWindow
|
||||||
|
|
||||||
[DockSite1]
|
[DockSite1]
|
||||||
DockSiteType=1
|
DockSiteType=1
|
||||||
PercentageSizes=1
|
PercentageSizes=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
|
||||||
Docked=1
|
|
||||||
State=0
|
|
||||||
Left=0
|
|
||||||
Top=384
|
|
||||||
Width=1906
|
|
||||||
Height=3944
|
|
||||||
MaxLeft=-1
|
|
||||||
MaxTop=-1
|
|
||||||
ClientWidth=1906
|
|
||||||
ClientHeight=3944
|
|
||||||
TBDockHeight=5040
|
|
||||||
LRDockWidth=1906
|
|
||||||
Dockable=1
|
|
||||||
StayOnTop=0
|
|
||||||
TabPosition=1
|
|
||||||
ActiveTabID=RMAddinTool
|
|
||||||
TabDockClients=RMAddinTool,PropertyInspector
|
|
||||||
|
|
||||||
[DockSite2]
|
|
||||||
DockSiteType=1
|
|
||||||
PercentageSizes=1
|
|
||||||
Create=1
|
|
||||||
Visible=0
|
Visible=0
|
||||||
Docked=1
|
Docked=1
|
||||||
State=0
|
State=0
|
||||||
Left=-252
|
Left=-340
|
||||||
Top=-857
|
Top=-792
|
||||||
Width=2336
|
Width=2805
|
||||||
Height=2314
|
Height=1479
|
||||||
MaxLeft=-1
|
MaxLeft=-1
|
||||||
MaxTop=-1
|
MaxTop=-1
|
||||||
ClientWidth=2336
|
ClientWidth=2805
|
||||||
ClientHeight=2314
|
ClientHeight=1479
|
||||||
TBDockHeight=2314
|
TBDockHeight=1479
|
||||||
LRDockWidth=2336
|
LRDockWidth=2805
|
||||||
Dockable=1
|
Dockable=1
|
||||||
StayOnTop=0
|
StayOnTop=0
|
||||||
TabPosition=1
|
TabPosition=1
|
||||||
ActiveTabID=FindReferencsForm
|
ActiveTabID=RefactoringForm
|
||||||
TabDockClients=RefactoringForm,FindReferencsForm
|
TabDockClients=RefactoringForm,FindReferencsForm
|
||||||
|
|
||||||
[DockSite3]
|
|
||||||
DockSiteType=1
|
|
||||||
PercentageSizes=1
|
|
||||||
Create=1
|
|
||||||
Visible=0
|
|
||||||
Docked=1
|
|
||||||
State=0
|
|
||||||
Left=635
|
|
||||||
Top=23
|
|
||||||
Width=3828
|
|
||||||
Height=1076
|
|
||||||
MaxLeft=-1
|
|
||||||
MaxTop=-1
|
|
||||||
ClientWidth=3828
|
|
||||||
ClientHeight=1076
|
|
||||||
TBDockHeight=1076
|
|
||||||
LRDockWidth=3828
|
|
||||||
Dockable=1
|
|
||||||
StayOnTop=0
|
|
||||||
TabPosition=1
|
|
||||||
ActiveTabID=LocalVarsWindow
|
|
||||||
TabDockClients=BreakpointWindow,ThreadStatusWindow,DebugLogView,CallStackWindow,WatchWindow,LocalVarsWindow
|
|
||||||
|
|
||||||
|
Binary file not shown.
@ -50,19 +50,18 @@ uses
|
|||||||
ScriptForm in '..\..\Source\ScriptForm.pas' {ScriptEditor},
|
ScriptForm in '..\..\Source\ScriptForm.pas' {ScriptEditor},
|
||||||
Preview in '..\..\Source\Preview.pas' {PreviewForm},
|
Preview in '..\..\Source\Preview.pas' {PreviewForm},
|
||||||
ScriptRender in '..\..\Source\ScriptRender.pas' {ScriptRenderForm},
|
ScriptRender in '..\..\Source\ScriptRender.pas' {ScriptRenderForm},
|
||||||
ap_Math in '..\..\Source\ap_Math.pas',
|
|
||||||
ap_SysUtils in '..\..\Source\ap_SysUtils.pas',
|
|
||||||
FormFavorites in '..\..\Source\FormFavorites.pas' {FavoritesForm},
|
FormFavorites in '..\..\Source\FormFavorites.pas' {FavoritesForm},
|
||||||
Size in '..\..\Source\Size.pas' {SizeTool},
|
Size in '..\..\Source\Size.pas' {SizeTool},
|
||||||
FormExport in '..\..\Source\FormExport.pas' {ExportDialog},
|
FormExport in '..\..\Source\FormExport.pas' {ExportDialog},
|
||||||
MsMultiPartFormData in '..\..\Source\MsMultiPartFormData.pas',
|
MsMultiPartFormData in '..\..\Source\MsMultiPartFormData.pas',
|
||||||
Sheep in '..\..\Source\Sheep.pas' {SheepDialog},
|
Sheep in '..\..\Source\Sheep.pas' {SheepDialog},
|
||||||
ap_FileCtrl in '..\..\Source\ap_FileCtrl.pas',
|
|
||||||
XForm in '..\..\Source\XForm.pas',
|
XForm in '..\..\Source\XForm.pas',
|
||||||
cmapdata in '..\..\Source\cmapdata.pas',
|
cmapdata in '..\..\Source\cmapdata.pas',
|
||||||
RenderMM in '..\..\Source\RenderMM.pas',
|
RenderMM in '..\..\Source\RenderMM.pas',
|
||||||
ImageColoring in '..\..\Source\ImageColoring.pas' {frmImageColoring},
|
ImageColoring in '..\..\Source\ImageColoring.pas' {frmImageColoring},
|
||||||
GradientHlpr in '..\..\Source\GradientHlpr.pas';
|
GradientHlpr in '..\..\Source\GradientHlpr.pas',
|
||||||
|
formPostProcess in '..\..\Source\formPostProcess.pas' {frmPostProcess},
|
||||||
|
RndFlame in '..\..\Source\RndFlame.pas';
|
||||||
|
|
||||||
{$R *.RES}
|
{$R *.RES}
|
||||||
|
|
||||||
@ -95,6 +94,7 @@ begin
|
|||||||
Application.CreateForm(TExportDialog, ExportDialog);
|
Application.CreateForm(TExportDialog, ExportDialog);
|
||||||
Application.CreateForm(TSheepDialog, SheepDialog);
|
Application.CreateForm(TSheepDialog, SheepDialog);
|
||||||
Application.CreateForm(TfrmImageColoring, frmImageColoring);
|
Application.CreateForm(TfrmImageColoring, frmImageColoring);
|
||||||
|
Application.CreateForm(TfrmPostProcess, frmPostProcess);
|
||||||
Application.UpdateFormatSettings := False;
|
Application.UpdateFormatSettings := False;
|
||||||
DecimalSeparator := '.';
|
DecimalSeparator := '.';
|
||||||
Application.Run;
|
Application.Run;
|
||||||
|
@ -1,43 +1,178 @@
|
|||||||
[Closed Files]
|
[Closed Files]
|
||||||
File_0=SourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\FormRender.pas',0,1,551,60,588,1,0
|
File_0=SourceModule,'X:\Code\Delphi\Apophysis\2.02h\Source\ScriptForm.dfm',0,1,1,1,1,0,0
|
||||||
File_1=SourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\About.pas',0,1,1,31,9,1,0
|
File_1=SourceModule,'X:\Code\Delphi\Apophysis\2.02h\Source\Gradient.pas',0,1,101,3,129,0,0
|
||||||
File_2=SourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\Adjust.pas',0,1,1,16,27,1,0
|
File_2=SourceModule,'X:\Code\Delphi\Apophysis\2.02h\Source\RndFlame.pas',0,1,1,1,1,0,0
|
||||||
File_3=SourceModule,'X:\Code\Delphi\Apophysis\2.02f\Source\Main.pas',0,1,4354,45,4394,0,0
|
File_3=SourceModule,'X:\Code\Delphi\Apophysis\2.02h\Source\Main.pas',0,1,1,1,1,1,0
|
||||||
File_4=SourceModule,'X:\Code\Delphi\Apophysis\Apolibstuff\imglib\ImageDLLLoader.pas',0,1,101,55,120,0,0
|
File_4=SourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\FormRender.pas',0,1,551,60,588,1,0
|
||||||
File_5=SourceModule,'X:\Code\Delphi\Apophysis\2.02f\Source\About.pas',0,1,1,1,1,0,0
|
File_5=SourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\About.pas',0,1,1,31,9,1,0
|
||||||
File_6=SourceModule,'X:\Code\Delphi\Apophysis\2.02f\Source\cmapdata.pas',0,1,47709,1,47737,0,0
|
File_6=SourceModule,'X:\Code\Delphi\Apophysis\2.02g\Source\Adjust.pas',0,1,1,16,27,1,0
|
||||||
File_7=SourceModule,'X:\Code\Delphi\Apophysis\2.02f\Source\ScriptForm.pas',0,1,302,36,330,0,0
|
|
||||||
File_8=SourceModule,'X:\Code\Delphi\Apophysis\2.02f\Source\ap_FileCtrl.pas',0,1,1,1,1,0,0
|
|
||||||
File_9=SourceModule,'X:\Code\Delphi\Apophysis\2.02f\Source\ap_SysUtils.pas',0,1,1,3,20,0,0
|
|
||||||
|
|
||||||
[Modules]
|
[Modules]
|
||||||
Module0=X:\Code\Delphi\Apophysis\2.02g\Project\delphi6\Apophysis202.dpr
|
Module0=X:\Code\Delphi\Apophysis\2.02h\Source\formPostProcess.pas
|
||||||
Module1=X:\Code\Delphi\Apophysis\2.02g\Source\RenderThread.pas
|
Module1=X:\Code\Delphi\Apophysis\2.02h\Source\XForm.pas
|
||||||
Module2=X:\Code\Delphi\Apophysis\2.02g\Source\Size.pas
|
Module2=X:\Code\Delphi\Apophysis\2.02h\Source\Size.pas
|
||||||
Module3=X:\Code\Delphi\Apophysis\2.02g\Source\Sheep.pas
|
Module3=X:\Code\Delphi\Apophysis\2.02h\Source\Sheep.pas
|
||||||
Module4=X:\Code\Delphi\Apophysis\2.02g\Source\ScriptRender.pas
|
Module4=X:\Code\Delphi\Apophysis\2.02h\Source\ScriptRender.pas
|
||||||
Module5=X:\Code\Delphi\Apophysis\2.02g\Source\ScriptForm.pas
|
Module5=X:\Code\Delphi\Apophysis\2.02h\Source\ScriptForm.pas
|
||||||
Module6=X:\Code\Delphi\Apophysis\2.02g\Source\SavePreset.pas
|
Module6=X:\Code\Delphi\Apophysis\2.02h\Source\SavePreset.pas
|
||||||
Module7=X:\Code\Delphi\Apophysis\2.02g\Source\Save.pas
|
Module7=X:\Code\Delphi\Apophysis\2.02h\Source\Save.pas
|
||||||
Module8=X:\Code\Delphi\Apophysis\2.02g\Source\Preview.pas
|
Module8=X:\Code\Delphi\Apophysis\2.02h\Source\Preview.pas
|
||||||
Module9=X:\Code\Delphi\Apophysis\2.02g\Source\Options.pas
|
Module9=X:\Code\Delphi\Apophysis\2.02h\Source\Options.pas
|
||||||
Module10=X:\Code\Delphi\Apophysis\2.02g\Source\Mutate.pas
|
Module10=X:\Code\Delphi\Apophysis\2.02h\Source\MyTypes.pas
|
||||||
Module11=X:\Code\Delphi\Apophysis\2.02g\Source\Render64.pas
|
Module11=X:\Code\Delphi\Apophysis\2.02h\Source\Mutate.pas
|
||||||
Module12=X:\Code\Delphi\Apophysis\2.02g\Source\GradientHlpr.pas
|
Module12=X:\Code\Delphi\Apophysis\2.02h\Source\MsMultiPartFormData.pas
|
||||||
Module13=X:\Code\Delphi\Apophysis\2.02g\Source\ImageColoring.pas
|
Module13=X:\Code\Delphi\Apophysis\2.02h\Source\ImageColoring.pas
|
||||||
Module14=X:\Code\Delphi\Apophysis\2.02g\Source\Main.pas
|
Module14=X:\Code\Delphi\Apophysis\2.02h\Source\About.pas
|
||||||
Module15=X:\Code\Delphi\Apophysis\2.02g\Source\Gradient.pas
|
Module15=X:\Code\Delphi\Apophysis\2.02h\Source\Adjust.pas
|
||||||
Module16=X:\Code\Delphi\Apophysis\2.02g\Source\Fullscreen.pas
|
Module16=X:\Code\Delphi\Apophysis\2.02h\Source\Browser.pas
|
||||||
Module17=X:\Code\Delphi\Apophysis\2.02g\Source\RenderMM.pas
|
Module17=X:\Code\Delphi\Apophysis\2.02h\Source\Fullscreen.pas
|
||||||
Module18=X:\Code\Delphi\Apophysis\2.02g\Source\Render.pas
|
Module18=X:\Code\Delphi\Apophysis\2.02h\Source\FormRender.pas
|
||||||
Module19=X:\Code\Delphi\Apophysis\2.02g\Source\FormFavorites.pas
|
Module19=X:\Code\Delphi\Apophysis\2.02h\Source\FormFavorites.pas
|
||||||
Module20=X:\Code\Delphi\Apophysis\2.02g\Source\FormExport.pas
|
Module20=X:\Code\Delphi\Apophysis\2.02h\Source\FormExport.pas
|
||||||
Module21=X:\Code\Delphi\Apophysis\2.02g\Source\Editor.pas
|
Module21=X:\Code\Delphi\Apophysis\2.02h\Source\Editor.pas
|
||||||
Module22=X:\Code\Delphi\Apophysis\2.02g\Source\Browser.pas
|
Module22=X:\Code\Delphi\Apophysis\2.02h\Project\delphi6\Apophysis202.dpr
|
||||||
Module23=X:\Code\Delphi\Apophysis\2.02f\Project\delphi6\Apophysis202.dpr
|
Module23=X:\Code\Delphi\Apophysis\2.02g\Project\delphi6\Apophysis202.dpr
|
||||||
Count=24
|
Module24=X:\Code\Delphi\Apophysis\2.02g\Source\RenderThread.pas
|
||||||
|
Module25=X:\Code\Delphi\Apophysis\2.02g\Source\Size.pas
|
||||||
|
Module26=X:\Code\Delphi\Apophysis\2.02g\Source\Sheep.pas
|
||||||
|
Module27=X:\Code\Delphi\Apophysis\2.02g\Source\ScriptRender.pas
|
||||||
|
Module28=X:\Code\Delphi\Apophysis\2.02g\Source\ScriptForm.pas
|
||||||
|
Module29=X:\Code\Delphi\Apophysis\2.02g\Source\SavePreset.pas
|
||||||
|
Module30=X:\Code\Delphi\Apophysis\2.02g\Source\Save.pas
|
||||||
|
Module31=X:\Code\Delphi\Apophysis\2.02g\Source\Preview.pas
|
||||||
|
Module32=X:\Code\Delphi\Apophysis\2.02g\Source\Options.pas
|
||||||
|
Module33=X:\Code\Delphi\Apophysis\2.02g\Source\Mutate.pas
|
||||||
|
Module34=X:\Code\Delphi\Apophysis\2.02g\Source\Render64.pas
|
||||||
|
Module35=X:\Code\Delphi\Apophysis\2.02g\Source\GradientHlpr.pas
|
||||||
|
Module36=X:\Code\Delphi\Apophysis\2.02g\Source\ImageColoring.pas
|
||||||
|
Module37=X:\Code\Delphi\Apophysis\2.02g\Source\Main.pas
|
||||||
|
Module38=X:\Code\Delphi\Apophysis\2.02g\Source\Gradient.pas
|
||||||
|
Module39=X:\Code\Delphi\Apophysis\2.02g\Source\Fullscreen.pas
|
||||||
|
Module40=X:\Code\Delphi\Apophysis\2.02g\Source\RenderMM.pas
|
||||||
|
Module41=X:\Code\Delphi\Apophysis\2.02g\Source\Render.pas
|
||||||
|
Module42=X:\Code\Delphi\Apophysis\2.02g\Source\FormFavorites.pas
|
||||||
|
Module43=X:\Code\Delphi\Apophysis\2.02g\Source\FormExport.pas
|
||||||
|
Module44=X:\Code\Delphi\Apophysis\2.02g\Source\Editor.pas
|
||||||
|
Module45=X:\Code\Delphi\Apophysis\2.02g\Source\Browser.pas
|
||||||
|
Module46=X:\Code\Delphi\Apophysis\2.02f\Project\delphi6\Apophysis202.dpr
|
||||||
|
Count=47
|
||||||
EditWindowCount=1
|
EditWindowCount=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\formPostProcess.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=0
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\XForm.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=0
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Size.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Sheep.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\ScriptRender.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\ScriptForm.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\SavePreset.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Save.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Preview.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Options.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\MyTypes.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=0
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Mutate.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\MsMultiPartFormData.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=0
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\ImageColoring.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\About.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Adjust.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Browser.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Fullscreen.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\FormRender.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\FormFavorites.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\FormExport.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Editor.pas]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Project\delphi6\Apophysis202.dpr]
|
||||||
|
ModuleType=SourceModule
|
||||||
|
FormState=0
|
||||||
|
FormOnTop=0
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Project\delphi6\Apophysis202.dpr]
|
[X:\Code\Delphi\Apophysis\2.02g\Project\delphi6\Apophysis202.dpr]
|
||||||
ModuleType=SourceModule
|
ModuleType=SourceModule
|
||||||
FormState=0
|
FormState=0
|
||||||
@ -158,17 +293,21 @@ ModuleType=SourceModule
|
|||||||
FormState=0
|
FormState=0
|
||||||
FormOnTop=0
|
FormOnTop=0
|
||||||
|
|
||||||
|
[X:\Code\Delphi\Apophysis\2.02h\Source\Main.pas]
|
||||||
|
FormState=1
|
||||||
|
FormOnTop=1
|
||||||
|
|
||||||
[X:\Programs\Borland\Delphi6\Projects\ProjectGroup1.bpg]
|
[X:\Programs\Borland\Delphi6\Projects\ProjectGroup1.bpg]
|
||||||
FormState=0
|
FormState=0
|
||||||
FormOnTop=0
|
FormOnTop=0
|
||||||
|
|
||||||
[X:\Code\Delphi\Apophysis\2.02g\Project\delphi6\Apophysis202.todo]
|
[X:\Code\Delphi\Apophysis\2.02h\Project\delphi6\Apophysis202.todo]
|
||||||
FormState=0
|
FormState=0
|
||||||
FormOnTop=0
|
FormOnTop=0
|
||||||
|
|
||||||
[EditWindow0]
|
[EditWindow0]
|
||||||
ViewCount=24
|
ViewCount=48
|
||||||
CurrentView=23
|
CurrentView=28
|
||||||
View0=0
|
View0=0
|
||||||
View1=1
|
View1=1
|
||||||
View2=2
|
View2=2
|
||||||
@ -193,6 +332,30 @@ View20=20
|
|||||||
View21=21
|
View21=21
|
||||||
View22=22
|
View22=22
|
||||||
View23=23
|
View23=23
|
||||||
|
View24=24
|
||||||
|
View25=25
|
||||||
|
View26=26
|
||||||
|
View27=27
|
||||||
|
View28=28
|
||||||
|
View29=29
|
||||||
|
View30=30
|
||||||
|
View31=31
|
||||||
|
View32=32
|
||||||
|
View33=33
|
||||||
|
View34=34
|
||||||
|
View35=35
|
||||||
|
View36=36
|
||||||
|
View37=37
|
||||||
|
View38=38
|
||||||
|
View39=39
|
||||||
|
View40=40
|
||||||
|
View41=41
|
||||||
|
View42=42
|
||||||
|
View43=43
|
||||||
|
View44=44
|
||||||
|
View45=45
|
||||||
|
View46=46
|
||||||
|
View47=47
|
||||||
CodeExplorer=CodeExplorer@EditWindow0
|
CodeExplorer=CodeExplorer@EditWindow0
|
||||||
MessageView=MessageView@EditWindow0
|
MessageView=MessageView@EditWindow0
|
||||||
Create=1
|
Create=1
|
||||||
@ -380,6 +543,174 @@ CursorY=70
|
|||||||
TopLine=43
|
TopLine=43
|
||||||
LeftCol=1
|
LeftCol=1
|
||||||
|
|
||||||
|
[View24]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\ScriptForm.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View25]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\ScriptRender.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View26]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Sheep.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View27]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Size.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View28]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\formPostProcess.pas
|
||||||
|
CursorX=24
|
||||||
|
CursorY=7
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View29]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\XForm.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=577
|
||||||
|
TopLine=549
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View30]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Editor.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View31]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\FormExport.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View32]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\FormFavorites.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View33]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\FormRender.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View34]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Fullscreen.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View35]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Browser.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View36]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Adjust.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View37]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\About.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View38]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\ImageColoring.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View39]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Main.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View40]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\MsMultiPartFormData.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View41]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Mutate.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View42]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\MyTypes.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View43]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Options.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View44]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Preview.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View45]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\Save.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View46]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Source\SavePreset.pas
|
||||||
|
CursorX=1
|
||||||
|
CursorY=1
|
||||||
|
TopLine=1
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
|
[View47]
|
||||||
|
Module=X:\Code\Delphi\Apophysis\2.02h\Project\delphi6\Apophysis202.dpr
|
||||||
|
CursorX=1
|
||||||
|
CursorY=93
|
||||||
|
TopLine=65
|
||||||
|
LeftCol=1
|
||||||
|
|
||||||
[Watches]
|
[Watches]
|
||||||
Count=0
|
Count=0
|
||||||
|
|
||||||
@ -466,8 +797,8 @@ LRDockWidth=190
|
|||||||
Dockable=1
|
Dockable=1
|
||||||
SplitPos=85
|
SplitPos=85
|
||||||
ArrangeBy=Name
|
ArrangeBy=Name
|
||||||
SelectedItem=
|
SelectedItem=Anchors.akRight
|
||||||
ExpandedItems=
|
ExpandedItems=Anchors
|
||||||
HiddenCategories=
|
HiddenCategories=
|
||||||
|
|
||||||
[WatchWindow]
|
[WatchWindow]
|
||||||
@ -588,7 +919,7 @@ DockHostCount=1
|
|||||||
[DockSite0]
|
[DockSite0]
|
||||||
DockSiteType=1
|
DockSiteType=1
|
||||||
Create=1
|
Create=1
|
||||||
Visible=1
|
Visible=0
|
||||||
State=0
|
State=0
|
||||||
Left=0
|
Left=0
|
||||||
Top=112
|
Top=112
|
||||||
@ -602,6 +933,6 @@ TBDockHeight=451
|
|||||||
LRDockWidth=177
|
LRDockWidth=177
|
||||||
Dockable=1
|
Dockable=1
|
||||||
TabPosition=2
|
TabPosition=2
|
||||||
ActiveTab=Project Manager
|
ActiveTab=Object Inspector
|
||||||
TabDockClients=ProjectManager,CodeExplorer@EditWindow0,CallStackWindow,PropertyInspector
|
TabDockClients=ProjectManager,CodeExplorer@EditWindow0,CallStackWindow,PropertyInspector
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user