- Timestamp:
- Jun 2, 2013, 5:41:42 PM (11 years ago)
- Location:
- os/trunk
- Files:
-
- 1 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
os/trunk
- Property svn:ignore
-
old new 2 2 *.~dsk 3 3 __history 4 *.identcache
-
- Property svn:ignore
-
os/trunk/Applications/TestApplication.pas
r5 r6 4 4 5 5 uses 6 Vcl.Graphics, Xvcl.Controls, Xvcl.Classes, Xvcl.Forms, SysUtils;6 Vcl.Graphics, Xvcl.Controls, Xvcl.Classes, Xvcl.Forms, LDOS.Kernel, SysUtils; 7 7 8 8 type … … 12 12 Button: TButton; 13 13 Label1: TLabel; 14 Timer1: TTimer; 14 15 procedure Run; override; 15 16 procedure ButtonClick(Sender: TObject); … … 18 19 19 20 implementation 20 21 uses22 LDOS.Kernel;23 21 24 22 { TTestApplication } … … 43 41 Form2.Caption := 'Some form'; 44 42 Form2.Screen := Screen; 43 Timer1 := TTimer.Create; 44 Timer1.Interval := 1000; 45 Timer1.Enabled := True; 46 TScreen(Screen).Kernel.Timers.Add(Timer1); 45 47 Button := TButton.Create; 46 48 Button.Parent := Form1; … … 56 58 Label1.Caption := '0'; 57 59 Form1.Controls.Add(Label1); 60 MainForm := Form1; 58 61 TScreen(Screen).Forms.Add(Form1); 59 62 TScreen(Screen).Forms.Add(Form2); -
os/trunk/Applications/UDesktop.pas
r5 r6 9 9 type 10 10 TDesktopApp = class(TApplication) 11 private 12 procedure TaskButtonClick(Sender: TObject); 11 13 protected 12 14 function HandleMessage(Message: TMessage): Boolean; override; … … 38 40 TestApp.Screen := Screen; 39 41 TScreen(Screen).Kernel.RunApplication(TestApp); 42 end; 43 44 procedure TDesktopApp.TaskButtonClick(Sender: TObject); 45 var 46 Process: TProcess; 47 begin 48 if Sender is TButton then begin 49 Process := TScreen(Screen).Kernel.Processes[TaskButtons.IndexOf(TButton(Sender))]; 50 if Assigned(Process) and Assigned(Process.Application.MainForm) then 51 Process.Application.MainForm.Focused := True; 52 end; 40 53 end; 41 54 … … 75 88 MainBar.Controls.Add(TaskBar); 76 89 MenuButton := TButton.Create; 77 MenuButton.Parent := MainBar;90 MenuButton.Parent := TaskBar; 78 91 MenuButton.Bounds := TRectangle.Create(0, 0, 50, 24); 79 92 MenuButton.Visible := True; … … 82 95 MainBar.Controls.Add(MenuButton); 83 96 TScreen(Screen).Forms.Add(MainBar); 84 UpdateTaskList; 97 MainForm := MainBar; 98 UpdateTaskBar; 85 99 TScreen(Screen).Paint; 86 100 end; … … 93 107 MainBar.Bounds.Width, MainBar.Bounds.Height); 94 108 UpdateTaskList; 109 TScreen(Screen).Paint; 95 110 end; 96 111 … … 120 135 TaskButtons[I].Bounds := TRectangle.Create(MenuButton.Bounds.Width + 121 136 I * Width, 0, Width, MainBar.Bounds.Height); 137 TaskButtons[I].OnClick := TaskButtonClick; 122 138 MainBar.Controls.Add(TaskButtons[I]); 123 139 end; -
os/trunk/Drivers/Driver.MouseVCL.pas
r5 r6 51 51 inherited; 52 52 Form := Application.MainForm; 53 TForm 1(Form).Image1.OnMouseDown := DoMouseDown;54 TForm 1(Form).Image1.OnMouseUp := DoMouseUp;55 TForm 1(Form).Image1.OnMouseMove := DoMouseMove;53 TFormScreen(Form).Image1.OnMouseDown := DoMouseDown; 54 TFormScreen(Form).Image1.OnMouseUp := DoMouseUp; 55 TFormScreen(Form).Image1.OnMouseMove := DoMouseMove; 56 56 end; 57 57 -
os/trunk/Drivers/Driver.VideoVCL.pas
r5 r6 32 32 procedure TDriverVideoVCL.DoUpdateSize(Sender: TObject); 33 33 begin 34 with TForm 1(Form) do34 with TFormScreen(Form) do 35 35 if (Image1.Width <> Image1.Picture.Bitmap.Width) or 36 36 (Image1.Height <> Image1.Picture.Bitmap.Height) then begin 37 Image1.Picture.Bitmap.SetSize(Image1. Width, Image1.Height);37 Image1.Picture.Bitmap.SetSize(Image1.ClientWidth, Image1.ClientHeight); 38 38 Kernel.Screen.VideoDevice.Size := TPoint.Create(Image1.Picture.Bitmap.Width, Image1.Picture.Bitmap.Height); 39 39 Kernel.Screen.Size := TPoint.Create(Image1.Picture.Bitmap.Width, Image1.Picture.Bitmap.Height); … … 54 54 begin 55 55 inherited; 56 Application.CreateForm(TForm 1, Form1);56 Application.CreateForm(TFormScreen, FormScreen); 57 57 Form := Application.MainForm; 58 58 Form.OnResize := DoUpdateSize; 59 59 VideoDeviceVCL := TVideoDeviceVCL.Create; 60 VideoDeviceVCL.CanvasVCL := TForm 1(Form).Image1.Canvas;61 VideoDeviceVCL.Size := TPoint.Create(Form. Width, Form.Height);62 Kernel.Screen.Size := TPoint.Create(Form. Width, Form.Height);60 VideoDeviceVCL.CanvasVCL := TFormScreen(Form).Image1.Canvas; 61 VideoDeviceVCL.Size := TPoint.Create(Form.ClientWidth, Form.ClientHeight); 62 Kernel.Screen.Size := TPoint.Create(Form.ClientWidth, Form.ClientHeight); 63 63 if Assigned(Kernel.Screen.VideoDevice) then 64 64 Kernel.Screen.VideoDevice.Destroy; -
os/trunk/System/LDOS.Kernel.pas
r5 r6 24 24 25 25 TTimer = class 26 private 27 FOnTick: TNotifyEvent; 28 FEnabled: Boolean; 29 public 30 Interval: Integer; 31 property Enabled: Boolean read FEnabled write FEnabled; 32 property OnTick: TNotifyEvent read FOnTick write FOnTick; 26 33 end; 27 34 -
os/trunk/UFormMain.dfm
r5 r6 1 object Form 1: TForm11 object FormScreen: TFormScreen 2 2 Left = 0 3 3 Top = 0 4 Caption = ' Form1'5 ClientHeight = 4 536 ClientWidth = 6 734 Caption = 'LDOS screen' 5 ClientHeight = 407 6 ClientWidth = 602 7 7 Color = clBtnFace 8 8 Font.Charset = DEFAULT_CHARSET … … 17 17 Left = 0 18 18 Top = 0 19 Width = 6 7320 Height = 4 5319 Width = 602 20 Height = 407 21 21 Align = alClient 22 22 ExplicitLeft = 256 -
os/trunk/UFormMain.pas
r3 r6 8 8 9 9 type 10 TForm 1= class(Vcl.Forms.TForm)10 TFormScreen = class(Vcl.Forms.TForm) 11 11 Image1: TImage; 12 12 private … … 18 18 19 19 var 20 Form 1: TForm1;20 FormScreen: TFormScreen; 21 21 22 22 implementation -
os/trunk/Xvcl/Xvcl.Graphics.pas
r5 r6 10 10 TColor = (clNone, clBlack, clWhite, clGray, clSilver, clBlue, clGreen, clRed, 11 11 clLightBlue, clLightRed, clLightGreen, clBrown, clYellow, clMagenta, clCyan); 12 PColor = ^TColor; 12 13 13 14 TPen = class … … 62 63 TBitmap = class 63 64 private 65 Data: PByte; 66 FSize: TPoint; 64 67 function GetPixel(X, Y: Integer): TColor; 65 68 procedure SetPixel(X, Y: Integer; const Value: TColor); 69 procedure SetSize(const Value: TPoint); 66 70 public 67 71 property Pixels[X, Y: Integer]: TColor read GetPixel write SetPixel; 72 property Size: TPoint read FSize write SetSize; 68 73 end; 69 74 … … 150 155 function TBitmap.GetPixel(X, Y: Integer): TColor; 151 156 begin 152 157 Result := PColor(Data + (X + Y * Size.X) * SizeOf(TColor))^; 153 158 end; 154 159 155 160 procedure TBitmap.SetPixel(X, Y: Integer; const Value: TColor); 156 161 begin 157 158 end; 159 162 PColor(Data + (X + Y * Size.X) * SizeOf(TColor))^ := Value; 163 end; 164 165 166 procedure TBitmap.SetSize(const Value: TPoint); 167 begin 168 FSize := Value; 169 end; 160 170 161 171 { TVideoDevice } -
os/trunk/lddesktop.dpr
r5 r6 3 3 uses 4 4 Vcl.Forms, 5 UFormMain in 'UFormMain.pas' {Form 1},5 UFormMain in 'UFormMain.pas' {FormScreen}, 6 6 Driver.VideoVCL in 'Drivers\Driver.VideoVCL.pas', 7 7 Driver.SystemVCL in 'Drivers\Driver.SystemVCL.pas', … … 16 16 LDOS.Task in 'System\LDOS.Task.pas', 17 17 TestApplication in 'Applications\TestApplication.pas', 18 UDesktop in 'Applications\UDesktop.pas'; 18 UDesktop in 'Applications\UDesktop.pas', 19 LDOS.Mem in 'System\LDOS.Mem.pas'; 19 20 20 21 {$R *.res} -
os/trunk/lddesktop.dproj
r5 r6 84 84 </DelphiCompile> 85 85 <DCCReference Include="UFormMain.pas"> 86 <Form>Form 1</Form>86 <Form>FormScreen</Form> 87 87 <FormType>dfm</FormType> 88 88 </DCCReference> … … 102 102 <DCCReference Include="Applications\TestApplication.pas"/> 103 103 <DCCReference Include="Applications\UDesktop.pas"/> 104 <DCCReference Include="System\LDOS.Mem.pas"/> 104 105 <BuildConfiguration Include="Release"> 105 106 <Key>Cfg_2</Key> -
os/trunk/lddesktop.dsk
r3 r6 1 1 [Closed Files] 2 File_0=TSourceModule,'C:\Projekty\DelphiLibs\DockManagement\Demo\UDockForm.pas',0,1,1,25,10,0,0,, 3 File_1=TSourceModule,'c:\program files\embarcadero\rad studio\11.0\SOURCE\RTL\SYS\System.Types.pas',0,1,240,9,263,0,0,, 4 File_2=TSourceModule,'C:\Projekty\DelphiLibs\DockManagement\UDockManagement.pas',0,1,885,31,959,0,0,, 5 File_3=TSourceModule,'C:\Projekty\DelphiLibs\DockManagement\Demo\UMainForm.pas',0,1,64,14,84,0,0,, 6 File_4=TSourceModule,'C:\Projekty\LibreDevelop\studio\trunk\UCore.pas',0,1,1,19,32,0,0,, 7 File_5=TSourceModule,'C:\Projekty\LibreDevelop\platform\trunk\LDPlatform.Core.pas',0,1,13,1,48,0,0,, 8 File_6=TSourceModule,'C:\Projekty\LibreDevelop\platform\trunk\LDPlatform.FormMain.pas',0,1,10,24,14,0,0,, 9 File_7=TSourceModule,'C:\Projekty\LibreDevelop\platform\trunk\LDPlatform.FormOptions.pas',0,1,1,37,28,0,0,, 10 File_8=TSourceModule,'C:\Projekty\LibreDevelop\platform\trunk\ULDPlatform.pas',0,1,1,118,17,0,0,, 11 File_9=TSourceModule,'c:\program files\embarcadero\rad studio\11.0\source\rtl\common\System.Classes.pas',0,1,9393,1,9414,0,0,, 12 File_10=TSourceModule,'C:\Projekty\LibreDevelop\studio\trunk\Forms\UFormMain.pas',0,1,41,12,59,0,0,, 13 File_11=TSourceModule,'C:\Projekty\LibreDevelop\studio\trunk\Forms\UFormOptions.pas',0,1,1,1,1,0,0,, 14 File_12=TSourceModule,'c:\program files\embarcadero\rad studio\10.0\SOURCE\VCL\Vcl.Forms.pas',0,1,1552,1,1575,0,0,{{1693,4} 2 File_0=TSourceModule,'c:\program files\embarcadero\rad studio\11.0\SOURCE\RTL\SYS\System.pas',0,1,23211,1,23232,0,0,, 3 File_1=TSourceModule,'C:\Projekty\DelphiLibs\DockManagement\Demo\UDockForm.pas',0,1,1,25,10,0,0,, 4 File_2=TSourceModule,'c:\program files\embarcadero\rad studio\11.0\SOURCE\RTL\SYS\System.Types.pas',0,1,240,9,263,0,0,, 5 File_3=TSourceModule,'C:\Projekty\DelphiLibs\DockManagement\UDockManagement.pas',0,1,885,31,959,0,0,, 6 File_4=TSourceModule,'C:\Projekty\DelphiLibs\DockManagement\Demo\UMainForm.pas',0,1,64,14,84,0,0,, 7 File_5=TSourceModule,'C:\Projekty\LibreDevelop\studio\trunk\UCore.pas',0,1,1,19,32,0,0,, 8 File_6=TSourceModule,'C:\Projekty\LibreDevelop\platform\trunk\LDPlatform.Core.pas',0,1,13,1,48,0,0,, 9 File_7=TSourceModule,'C:\Projekty\LibreDevelop\platform\trunk\LDPlatform.FormMain.pas',0,1,10,24,14,0,0,, 10 File_8=TSourceModule,'C:\Projekty\LibreDevelop\platform\trunk\LDPlatform.FormOptions.pas',0,1,1,37,28,0,0,, 11 File_9=TSourceModule,'C:\Projekty\LibreDevelop\platform\trunk\ULDPlatform.pas',0,1,1,118,17,0,0,, 12 File_10=TSourceModule,'c:\program files\embarcadero\rad studio\11.0\source\rtl\common\System.Classes.pas',0,1,9393,1,9414,0,0,, 13 File_11=TSourceModule,'C:\Projekty\LibreDevelop\studio\trunk\Forms\UFormMain.pas',0,1,41,12,59,0,0,, 14 File_12=TSourceModule,'C:\Projekty\LibreDevelop\studio\trunk\Forms\UFormOptions.pas',0,1,1,1,1,0,0,, 15 File_13=TSourceModule,'c:\program files\embarcadero\rad studio\10.0\SOURCE\VCL\Vcl.Forms.pas',0,1,1552,1,1575,0,0,{{1693,4} 15 16 16 17 [Modules] 17 Module0=C:\Projekty\LibreDevelop_\branches\Xvcl\UFormMain.pas 18 Module1=C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.VideoVCL.pas 19 Module2=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Forms.pas 20 Module3=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Kernel.pas 21 Module4=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Controls.pas 22 Module5=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Graphics.pas 23 Module6=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Classes.pas 24 Module7=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Graphics.pas 25 Module8=C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.SystemVCL.pas 26 Module9=C:\Projekty\LibreDevelop_\branches\Xvcl\lddesktop.dproj 27 Module10=default.htm 28 Module11=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Controls.pas 29 Count=12 18 Module0=C:\Projekty\LibreDevelop\os\trunk\UFormMain.pas 19 Module1=default.htm 20 Module2=C:\Projekty\LibreDevelop\os\trunk\lddesktop.dproj 21 Module3=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Classes.pas 22 Module4=C:\Projekty\LibreDevelop\os\trunk\Applications\UDesktop.pas 23 Module5=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Controls.pas 24 Module6=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.SystemVCL.pas 25 Module7=C:\Projekty\LibreDevelop\os\trunk\System\LDOS.Kernel.pas 26 Module8=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Forms.pas 27 Module9=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.VideoVCL.pas 28 Module10=C:\Projekty\LibreDevelop\os\trunk\Applications\TestApplication.pas 29 Module11=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Generics.pas 30 Module12=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Graphics.pas 31 Module13=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Graphics.pas 32 Module14=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Classes.pas 33 Module15=C:\Projekty\LibreDevelop\os\trunk\System\LDOS.Task.pas 34 Module16=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.KeyboardVCL.pas 35 Module17=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.MouseVCL.pas 36 Module18=C:\Projekty\LibreDevelop_\branches\Xvcl\UFormMain.pas 37 Module19=C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.VideoVCL.pas 38 Module20=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Forms.pas 39 Module21=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Kernel.pas 40 Module22=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Controls.pas 41 Module23=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Graphics.pas 42 Module24=C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.SystemVCL.pas 43 Module25=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Controls.pas 44 Count=26 30 45 EditWindowCount=1 31 46 32 [C:\Projekty\LibreDevelop _\branches\Xvcl\UFormMain.pas]47 [C:\Projekty\LibreDevelop\os\trunk\UFormMain.pas] 33 48 ModuleType=TSourceModule 34 49 FormState=1 35 FormOnTop=1 36 37 [C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.VideoVCL.pas] 38 ModuleType=TSourceModule 39 FormState=0 40 FormOnTop=0 41 42 [c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Forms.pas] 43 ModuleType=TSourceModule 44 FormState=0 45 FormOnTop=0 46 47 [C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Kernel.pas] 48 ModuleType=TSourceModule 49 FormState=0 50 FormOnTop=0 51 52 [c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Controls.pas] 53 ModuleType=TSourceModule 54 FormState=0 55 FormOnTop=0 56 57 [C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Graphics.pas] 58 ModuleType=TSourceModule 59 FormState=0 60 FormOnTop=0 61 62 [C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Classes.pas] 63 ModuleType=TSourceModule 64 FormState=0 65 FormOnTop=0 66 67 [c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Graphics.pas] 68 ModuleType=TSourceModule 69 FormState=0 70 FormOnTop=0 71 72 [C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.SystemVCL.pas] 73 ModuleType=TSourceModule 74 FormState=0 75 FormOnTop=0 76 77 [C:\Projekty\LibreDevelop_\branches\Xvcl\lddesktop.dproj] 78 ModuleType=TBaseProject 50 FormOnTop=0 79 51 80 52 [default.htm] 81 53 ModuleType=TURLModule 82 54 55 [C:\Projekty\LibreDevelop\os\trunk\lddesktop.dproj] 56 ModuleType=TBaseProject 57 58 [C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Classes.pas] 59 ModuleType=TSourceModule 60 FormState=0 61 FormOnTop=0 62 63 [C:\Projekty\LibreDevelop\os\trunk\Applications\UDesktop.pas] 64 ModuleType=TSourceModule 65 FormState=0 66 FormOnTop=0 67 68 [C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Controls.pas] 69 ModuleType=TSourceModule 70 FormState=0 71 FormOnTop=0 72 73 [C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.SystemVCL.pas] 74 ModuleType=TSourceModule 75 FormState=0 76 FormOnTop=0 77 78 [C:\Projekty\LibreDevelop\os\trunk\System\LDOS.Kernel.pas] 79 ModuleType=TSourceModule 80 FormState=0 81 FormOnTop=0 82 83 [C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Forms.pas] 84 ModuleType=TSourceModule 85 FormState=0 86 FormOnTop=0 87 88 [C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.VideoVCL.pas] 89 ModuleType=TSourceModule 90 FormState=0 91 FormOnTop=0 92 93 [C:\Projekty\LibreDevelop\os\trunk\Applications\TestApplication.pas] 94 ModuleType=TSourceModule 95 FormState=0 96 FormOnTop=0 97 98 [C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Generics.pas] 99 ModuleType=TSourceModule 100 FormState=0 101 FormOnTop=0 102 103 [C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Graphics.pas] 104 ModuleType=TSourceModule 105 FormState=0 106 FormOnTop=0 107 108 [c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Graphics.pas] 109 ModuleType=TSourceModule 110 FormState=0 111 FormOnTop=0 112 113 [C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Classes.pas] 114 ModuleType=TSourceModule 115 FormState=0 116 FormOnTop=0 117 118 [C:\Projekty\LibreDevelop\os\trunk\System\LDOS.Task.pas] 119 ModuleType=TSourceModule 120 FormState=0 121 FormOnTop=0 122 123 [C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.KeyboardVCL.pas] 124 ModuleType=TSourceModule 125 FormState=0 126 FormOnTop=0 127 128 [C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.MouseVCL.pas] 129 ModuleType=TSourceModule 130 FormState=0 131 FormOnTop=0 132 133 [C:\Projekty\LibreDevelop_\branches\Xvcl\UFormMain.pas] 134 ModuleType=TSourceModule 135 FormState=1 136 FormOnTop=0 137 138 [C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.VideoVCL.pas] 139 ModuleType=TSourceModule 140 FormState=0 141 FormOnTop=0 142 143 [c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Forms.pas] 144 ModuleType=TSourceModule 145 FormState=0 146 FormOnTop=0 147 148 [C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Kernel.pas] 149 ModuleType=TSourceModule 150 FormState=0 151 FormOnTop=0 152 153 [c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Controls.pas] 154 ModuleType=TSourceModule 155 FormState=0 156 FormOnTop=0 157 158 [C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Graphics.pas] 159 ModuleType=TSourceModule 160 FormState=0 161 FormOnTop=0 162 163 [C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.SystemVCL.pas] 164 ModuleType=TSourceModule 165 FormState=0 166 FormOnTop=0 167 83 168 [C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Controls.pas] 84 169 ModuleType=TSourceModule … … 87 172 88 173 [EditWindow0] 89 ViewCount= 1290 CurrentEditView=C:\Projekty\LibreDevelop _\branches\Xvcl\UFormMain.pas174 ViewCount=26 175 CurrentEditView=C:\Projekty\LibreDevelop\os\trunk\UFormMain.pas 91 176 View0=0 92 177 View1=1 … … 101 186 View10=10 102 187 View11=11 188 View12=12 189 View13=13 190 View14=14 191 View15=15 192 View16=16 193 View17=17 194 View18=18 195 View19=19 196 View20=20 197 View21=21 198 View22=22 199 View23=23 200 View24=24 201 View25=25 103 202 PercentageSizes=1 104 203 Create=1 … … 138 237 [View1] 139 238 CustomEditViewType=TEditView 140 Module=C:\Projekty\LibreDevelop_\branches\Xvcl\lddesktop.dpr141 CursorX=28142 CursorY=36143 TopLine=12144 LeftCol=1145 Elisions=146 Bookmarks=147 EditViewName=C:\Projekty\LibreDevelop_\branches\Xvcl\lddesktop.dpr148 149 [View2]150 CustomEditViewType=TEditView151 239 Module=C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.SystemVCL.pas 152 240 CursorX=1 … … 158 246 EditViewName=C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.SystemVCL.pas 159 247 160 [View 3]248 [View2] 161 249 CustomEditViewType=TEditView 162 250 Module=C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.VideoVCL.pas … … 169 257 EditViewName=C:\Projekty\LibreDevelop_\branches\Xvcl\Drivers\Driver.VideoVCL.pas 170 258 171 [View 4]259 [View3] 172 260 CustomEditViewType=TEditView 173 261 Module=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Forms.pas … … 180 268 EditViewName=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Forms.pas 181 269 182 [View 5]270 [View4] 183 271 CustomEditViewType=TEditView 184 272 Module=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Controls.pas … … 191 279 EditViewName=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Controls.pas 192 280 193 [View 6]281 [View5] 194 282 CustomEditViewType=TEditView 195 283 Module=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Graphics.pas 196 284 CursorX=1 197 CursorY= 778198 TopLine= 809285 CursorY=3431 286 TopLine=3391 199 287 LeftCol=1 200 288 Elisions= … … 202 290 EditViewName=c:\program files\embarcadero\rad studio\11.0\SOURCE\VCL\Vcl.Graphics.pas 203 291 204 [View 7]292 [View6] 205 293 CustomEditViewType=TEditView 206 294 Module=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Graphics.pas … … 213 301 EditViewName=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Graphics.pas 214 302 215 [View 8]303 [View7] 216 304 CustomEditViewType=TEditView 217 305 Module=C:\Projekty\LibreDevelop_\branches\Xvcl\UFormMain.pas … … 224 312 EditViewName=Borland.FormDesignerView 225 313 314 [View8] 315 CustomEditViewType=TEditView 316 Module=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Classes.pas 317 CursorX=17 318 CursorY=49 319 TopLine=49 320 LeftCol=1 321 Elisions= 322 Bookmarks= 323 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Classes.pas 324 226 325 [View9] 326 CustomEditViewType=TEditView 327 Module=C:\Projekty\LibreDevelop\os\trunk\System\LDOS.Kernel.pas 328 CursorX=46 329 CursorY=184 330 TopLine=171 331 LeftCol=1 332 Elisions= 333 Bookmarks= 334 EditViewName=C:\Projekty\LibreDevelop\os\trunk\System\LDOS.Kernel.pas 335 336 [View10] 337 CustomEditViewType=TEditView 338 Module=C:\Projekty\LibreDevelop\os\trunk\Applications\UDesktop.pas 339 CursorX=16 340 CursorY=84 341 TopLine=58 342 LeftCol=1 343 Elisions= 344 Bookmarks= 345 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Applications\UDesktop.pas 346 347 [View11] 348 CustomEditViewType=TEditView 349 Module=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Graphics.pas 350 CursorX=1 351 CursorY=189 352 TopLine=166 353 LeftCol=1 354 Elisions= 355 Bookmarks= 356 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Graphics.pas 357 358 [View12] 359 CustomEditViewType=TEditView 360 Module=C:\Projekty\LibreDevelop\os\trunk\UFormMain.pas 361 CursorX=112 362 CursorY=14 363 TopLine=1 364 LeftCol=1 365 Elisions= 366 Bookmarks= 367 EditViewName=C:\Projekty\LibreDevelop\os\trunk\UFormMain.pas 368 369 [View13] 370 CustomEditViewType=TEditView 371 Module=C:\Projekty\LibreDevelop\os\trunk\System\LDOS.Task.pas 372 CursorX=3 373 CursorY=7 374 TopLine=1 375 LeftCol=1 376 Elisions= 377 Bookmarks= 378 EditViewName=C:\Projekty\LibreDevelop\os\trunk\System\LDOS.Task.pas 379 380 [View14] 381 CustomEditViewType=TEditView 382 Module=C:\Projekty\LibreDevelop\os\trunk\lddesktop.dpr 383 CursorX=1 384 CursorY=29 385 TopLine=16 386 LeftCol=1 387 Elisions= 388 Bookmarks= 389 EditViewName=C:\Projekty\LibreDevelop\os\trunk\lddesktop.dpr 390 391 [View15] 392 CustomEditViewType=TEditView 393 Module=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.VideoVCL.pas 394 CursorX=32 395 CursorY=40 396 TopLine=24 397 LeftCol=1 398 Elisions= 399 Bookmarks= 400 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.VideoVCL.pas 401 402 [View16] 403 CustomEditViewType=TEditView 404 Module=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.SystemVCL.pas 405 CursorX=18 406 CursorY=6 407 TopLine=1 408 LeftCol=1 409 Elisions= 410 Bookmarks= 411 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.SystemVCL.pas 412 413 [View17] 414 CustomEditViewType=TEditView 415 Module=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.MouseVCL.pas 416 CursorX=73 417 CursorY=6 418 TopLine=1 419 LeftCol=1 420 Elisions= 421 Bookmarks= 422 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.MouseVCL.pas 423 424 [View18] 425 CustomEditViewType=TEditView 426 Module=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.KeyboardVCL.pas 427 CursorX=73 428 CursorY=6 429 TopLine=1 430 LeftCol=1 431 Elisions= 432 Bookmarks= 433 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Drivers\Driver.KeyboardVCL.pas 434 435 [View19] 436 CustomEditViewType=TEditView 437 Module=C:\Projekty\LibreDevelop\os\trunk\Applications\TestApplication.pas 438 CursorX=19 439 CursorY=33 440 TopLine=7 441 LeftCol=1 442 Elisions= 443 Bookmarks= 444 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Applications\TestApplication.pas 445 446 [View20] 447 CustomEditViewType=TEditView 448 Module=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Controls.pas 449 CursorX=14 450 CursorY=74 451 TopLine=53 452 LeftCol=1 453 Elisions= 454 Bookmarks= 455 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Controls.pas 456 457 [View21] 458 CustomEditViewType=TEditView 459 Module=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Generics.pas 460 CursorX=1 461 CursorY=1 462 TopLine=4 463 LeftCol=1 464 Elisions= 465 Bookmarks= 466 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Generics.pas 467 468 [View22] 469 CustomEditViewType=TEditView 470 Module=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Forms.pas 471 CursorX=50 472 CursorY=151 473 TopLine=109 474 LeftCol=1 475 Elisions= 476 Bookmarks= 477 EditViewName=C:\Projekty\LibreDevelop\os\trunk\Xvcl\Xvcl.Forms.pas 478 479 [View23] 227 480 CustomEditViewType=TEditView 228 481 Module=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Classes.pas … … 235 488 EditViewName=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Classes.pas 236 489 237 [View 10]490 [View24] 238 491 CustomEditViewType=TEditView 239 492 Module=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Controls.pas … … 246 499 EditViewName=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Controls.pas 247 500 248 [View 11]501 [View25] 249 502 CustomEditViewType=TEditView 250 503 Module=C:\Projekty\LibreDevelop_\branches\Xvcl\Xvcl.Kernel.pas … … 393 646 SplitPos=141 394 647 395 [PropInspDesignerSelection]396 ArrangeBy=Name397 SelectedItem=Visible,Action398 ExpandedItems="LiveBindings Designer=0",Anchors=0,BorderIcons=0,Constraints=0,Font=0,GlassFrame=0,HorzScrollBar=0,LiveBindings=0,Margins=0,Menu=0,Padding=0,Images=0,Action=0,StyleElements=0,Touch=0,VertScrollBar=0399 400 648 [TFileExplorerForm] 401 649 PercentageSizes=1 … … 609 857 Docked=1 610 858 State=0 611 Left= 4864612 Top= 783859 Left=-32699 860 Top=-2492 613 861 Width=5307 614 862 Height=4876 … … 628 876 Docked=1 629 877 State=0 630 Left=- 9517631 Top=-3 91878 Left=-11386 879 Top=-324 632 880 Width=1844 633 881 Height=3143 … … 821 1069 Docked=1 822 1070 State=0 823 Left= 9517824 Top=3 911071 Left=11386 1072 Top=324 825 1073 Width=1896 826 1074 Height=7029 … … 883 1131 TabPosition=1 884 1132 ActiveTabID=PropertyInspector 885 TabDockClients=PropertyInspector, TFileExplorerForm,DataExplorerContainer,ModelViewTool886 1133 TabDockClients=PropertyInspector,ModelViewTool,DataExplorerContainer,TFileExplorerForm 1134
Note:
See TracChangeset
for help on using the changeset viewer.