Changeset 5 for os/trunk/Drivers
- Timestamp:
 - Jun 2, 2013, 2:34:55 PM (12 years ago)
 - Location:
 - os/trunk
 - Files:
 - 
      
- 5 edited
 
- 
          
  . (modified) (1 prop)
 - 
          
  Drivers/Driver.KeyboardVCL.pas (modified) (1 diff)
 - 
          
  Drivers/Driver.MouseVCL.pas (modified) (1 diff)
 - 
          
  Drivers/Driver.SystemVCL.pas (modified) (1 diff)
 - 
          
  Drivers/Driver.VideoVCL.pas (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
os/trunk
- Property svn:ignore
- 
      
old new 1 1 Win32 2 2 *.~dsk 3 __history  
 - 
      
 
 - Property svn:ignore
 - 
      
os/trunk/Drivers/Driver.KeyboardVCL.pas
r3 r5 4 4 5 5 uses 6 Vcl.Forms, Vcl.Controls, System.Classes, UFormMain, Xvcl.Classes, Xvcl.Kernel;6 Vcl.Forms, Vcl.Controls, System.Classes, UFormMain, Xvcl.Classes, LDOS.Kernel; 7 7 8 8 type  - 
      
os/trunk/Drivers/Driver.MouseVCL.pas
r3 r5 4 4 5 5 uses 6 Vcl.Forms, Vcl.Controls, System.Classes, UFormMain, Xvcl.Classes, Xvcl.Kernel;6 Vcl.Forms, Vcl.Controls, System.Classes, UFormMain, Xvcl.Classes, LDOS.Kernel; 7 7 8 8 type  - 
      
os/trunk/Drivers/Driver.SystemVCL.pas
r3 r5 4 4 5 5 uses 6 Vcl.Forms, Xvcl.Kernel;6 Vcl.Forms, LDOS.Kernel; 7 7 8 8 type  - 
      
os/trunk/Drivers/Driver.VideoVCL.pas
r3 r5 4 4 5 5 uses 6 Vcl.Forms, Vcl.Graphics, System.Types, UFormMain, Xvcl.Classes, Xvcl.Kernel,6 Vcl.Forms, Vcl.Graphics, System.Types, UFormMain, Xvcl.Classes, LDOS.Kernel, 7 7 Xvcl.Graphics, Generics.Collections; 8 8 … … 36 36 (Image1.Height <> Image1.Picture.Bitmap.Height) then begin 37 37 Image1.Picture.Bitmap.SetSize(Image1.Width, Image1.Height); 38 Kernel.Screen.VideoDevice.Size := TPoint.Create(Form.Width, Form.Height); 39 Kernel.Screen.Size := TPoint.Create(Form.Width, Form.Height); 38 Kernel.Screen.VideoDevice.Size := TPoint.Create(Image1.Picture.Bitmap.Width, Image1.Picture.Bitmap.Height); 39 Kernel.Screen.Size := TPoint.Create(Image1.Picture.Bitmap.Width, Image1.Picture.Bitmap.Height); 40 Kernel.Screen.HandleResize; 40 41 Kernel.Screen.Paint; 41 42 end; … … 111 112 procedure TVideoDeviceVCL.TextOut(Position: TPoint; Text: string); 112 113 begin 114 // CanvasVCL.Font.Color := ColorToVCL( 113 115 CanvasVCL.Brush.Style := bsClear; 114 116 CanvasVCL.TextOut(Position.X, Position.Y, Text);  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  ![(please configure the [header_logo] section in trac.ini)](/libredevelop/chrome/site/your_project_logo.png)