Changeset 21
- Timestamp:
- May 8, 2013, 12:53:50 AM (12 years ago)
- Location:
- branches/Xvcl
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Xvcl/Drivers/Driver.VideoVCL.pas
r20 r21 61 61 clGreen: Result := Vcl.Graphics.clGreen; 62 62 clRed: Result := Vcl.Graphics.clRed; 63 clSilver: Result := Vcl.Graphics.clSilver; 64 clGray: Result := Vcl.Graphics.clGray; 63 65 end; 64 66 end; … … 85 87 procedure TVideoDeviceVCL.TextOut(Position: TPoint; Text: string); 86 88 begin 87 CanvasVCL.Brush. Color := clNone;89 CanvasVCL.Brush.Style := bsClear; 88 90 CanvasVCL.TextOut(Position.X, Position.Y, Text); 89 91 end; -
branches/Xvcl/Xvcl.Controls.pas
r20 r21 4 4 5 5 uses 6 Generics.Collections, Xvcl.Classes, Xvcl.Graphics;6 Xvcl.Generics, Xvcl.Classes, Xvcl.Graphics; 7 7 8 8 type … … 142 142 function TControl.HandleMessage(Message: TMessage): Boolean; 143 143 begin 144 Result := False; 144 145 if Message is TMessageMouseDown then begin 145 146 if Assigned(FOnMouseDown) then FOnMouseDown(Self); 146 147 Color := clGray; 147 148 Paint; 149 Result := True; 148 150 end else 149 151 if Message is TMessageMouseUp then begin … … 152 154 Paint; 153 155 if Assigned(FOnClick) then FOnClick(Self); 156 Result := True; 154 157 end; 155 158 end; -
branches/Xvcl/Xvcl.Forms.pas
r19 r21 4 4 5 5 uses 6 Xvcl.Classes, Xvcl.Controls, Xvcl.Graphics, Generics.Collections;6 Xvcl.Classes, Xvcl.Controls, Xvcl.Graphics, Xvcl.Generics; 7 7 8 8 type -
branches/Xvcl/Xvcl.Kernel.pas
r20 r21 4 4 5 5 uses 6 Generics.Collections, Xvcl.Classes, Xvcl.Forms, Xvcl.Controls, Xvcl.Graphics;6 Xvcl.Generics, Xvcl.Classes, Xvcl.Forms, Xvcl.Controls, Xvcl.Graphics; 7 7 8 8 type -
branches/Xvcl/lddesktop.dpr
r19 r21 13 13 Driver.SystemVCL in 'Drivers\Driver.SystemVCL.pas', 14 14 Driver.KeyboardVCL in 'Drivers\Driver.KeyboardVCL.pas', 15 Driver.MouseVCL in 'Drivers\Driver.MouseVCL.pas'; 15 Driver.MouseVCL in 'Drivers\Driver.MouseVCL.pas', 16 Xvcl.Generics in 'Xvcl.Generics.pas'; 16 17 17 18 {$R *.res} -
branches/Xvcl/lddesktop.dproj
r19 r21 99 99 <DCCReference Include="Drivers\Driver.KeyboardVCL.pas"/> 100 100 <DCCReference Include="Drivers\Driver.MouseVCL.pas"/> 101 <DCCReference Include="Xvcl.Generics.pas"/> 101 102 <BuildConfiguration Include="Release"> 102 103 <Key>Cfg_2</Key>
Note:
See TracChangeset
for help on using the changeset viewer.