- Timestamp:
- May 9, 2015, 7:15:46 AM (10 years ago)
- Location:
- cprs/branches/HealthSevak-CPRS/VA
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/branches/HealthSevak-CPRS/VA/VA2006Utils.pas
r829 r1695 4 4 5 5 uses 6 Windows, Messages, SysUtils, Classes, Controls, ComCtrls, CommCtrl; 6 Windows, Messages, SysUtils, Classes, Controls, ComCtrls, CommCtrl, 7 Forms; 8 9 type 10 11 //This class exists to workaround TFrame tabstop set to True 12 //Known defect with Delphi 2006: http://qc.embarcadero.com/wc/qcmain.aspx?d=12257 13 TfraTabStopFalse = class(TFrame) 14 private 15 function GetTabStop: Boolean; 16 procedure SetTabStop(const Value: Boolean); 17 published 18 property TabStop: Boolean read GetTabStop write SetTabStop stored False; 19 end; 7 20 8 21 // Fixes bug in Delphi 2006, where clicking on a header control section after … … 16 29 17 30 type 31 18 32 THeaderControl2006BugFixer = class(TComponent) 19 33 private … … 65 79 end; 66 80 81 { TfraTabStopFalse } 82 83 function TfraTabStopFalse.GetTabStop: Boolean; 84 begin 85 Result := False; 86 end; 87 88 procedure TfraTabStopFalse.SetTabStop(const Value: Boolean); 89 begin 90 //Do nothing here, just ignore the Value 91 end; 92 67 93 end. -
cprs/branches/HealthSevak-CPRS/VA/VA508Accessibility/JAWS/JAWS.bdsproj
r829 r1695 171 171 <VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys> 172 172 <VersionInfoKeys Name="Comments"></VersionInfoKeys> 173 </VersionInfoKeys> 174 175 176 177 <Excluded_Packages> 173 </VersionInfoKeys> <Excluded_Packages> 178 174 <Excluded_Packages Name="D:\perforce\cprs\main\Packages\ORDateLib2006.bpl">CPRS Date/Time Dialogs</Excluded_Packages> 179 175 </Excluded_Packages> -
cprs/branches/HealthSevak-CPRS/VA/VA508Accessibility/VA508Access2006.dpk
r829 r1695 27 27 {$DESCRIPTION 'VA Section 508 Accessibility'} 28 28 {$DESIGNONLY} 29 {$IMPLICITBUILD O FF}29 {$IMPLICITBUILD ON} 30 30 {$DEFINE DEBUG_ACCESSIBILITY_MANAGER} 31 31 … … 35 35 vcldb, 36 36 VclSmp, 37 VAShared2006,38 rtl;37 rtl, 38 VAShared2006; 39 39 40 40 contains -
cprs/branches/HealthSevak-CPRS/VA/VAUtils.pas
r1693 r1695 1 1 unit VAUtils; 2 2 3 3 {TODO -oJeremy Merrill -cMessageHandlers : Change component list to use hex address for uComponentList 4 4 search instead of IndexOfObject, so that it used a binary search … … 19 19 function ShowMsg(const Msg, Caption: string; Icon: TShow508MessageIcon = smiNone; 20 20 Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload; 21 function Show508Message(const Msg: string): TShow508MessageResult; 21 22 function Show508Message(Const Msg: String): TShow508MessageResult; 22 23 function ShowMsg(const Msg: string; Icon: TShow508MessageIcon = smiNone; 23 24 Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
Note:
See TracChangeset
for help on using the changeset viewer.