Appevent.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:27k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. {*******************************************************}
  2. {                                                       }
  3. {         Delphi VCL Extensions (RX)                    }
  4. {                                                       }
  5. {         Copyright (c) 1997, 1998 Master-Bank          }
  6. {                                                       }
  7. {*******************************************************}
  8. unit AppEvent;
  9. {$C PRELOAD}
  10. {$I RX.INC}
  11. interface
  12. uses SysUtils, {$IFDEF WIN32} Windows, {$ELSE} WinTypes, WinProcs, {$ENDIF}
  13.   Messages, Classes, Graphics, Controls, Forms
  14.   {$IFDEF RX_D4}, ActnList {$ENDIF};
  15. const
  16. {$IFDEF WIN32}
  17.   DefHintColor = clInfoBk;
  18.   DefHintPause = 500;
  19.   DefHintShortPause = DefHintPause div 10;
  20.   DefHintHidePause = DefHintPause * 5;
  21. {$ELSE}
  22.   DefHintColor = $80FFFF;
  23.   DefHintPause = 800;
  24. {$ENDIF}
  25. { TAppEvents }
  26. type
  27.   TAppEvents = class(TComponent)
  28.   private
  29.     { Private declarations }
  30.     FChained: Boolean;
  31.     FHintColor: TColor;
  32.     FHintPause: Integer;
  33.     FShowHint: Boolean;
  34.     FCanvas: TCanvas;
  35.     FUpdateFormatSettings: Boolean;
  36. {$IFDEF WIN32}
  37.     FHintShortPause: Integer;
  38.     FHintHidePause: Integer;
  39.     FShowMainForm: Boolean;
  40. {$ENDIF}
  41. {$IFDEF RX_D3}
  42.     FUpdateMetricSettings: Boolean;
  43. {$ENDIF}
  44. {$IFDEF RX_D4}
  45.     FHintShortCuts: Boolean;
  46.     FBiDiMode: TBiDiMode;
  47.     FMouseDragImmediate: Boolean;
  48.     FMouseDragThreshold: Integer;
  49.     FOnActionExecute: TActionEvent;
  50.     FOnActionUpdate: TActionEvent;
  51.     FOnShortCut: TShortCutEvent;
  52. {$ENDIF}
  53. {$IFDEF RX_D5}
  54.     FBiDiKeyboard: string;
  55.     FNonBiDiKeyboard: string; 
  56. {$ENDIF}
  57.     FOnPaintIcon: TNotifyEvent;
  58.     FOnActivate: TNotifyEvent;
  59.     FOnDeactivate: TNotifyEvent;
  60.     FOnException: TExceptionEvent;
  61.     FOnIdle: TIdleEvent;
  62.     FOnHelp: THelpEvent;
  63.     FOnHint: TNotifyEvent;
  64.     FOnMessage: TMessageEvent;
  65.     FOnMinimize: TNotifyEvent;
  66.     FOnRestore: TNotifyEvent;
  67.     FOnShowHint: TShowHintEvent;
  68.     FOnSettingsChanged: TNotifyEvent;
  69.     FOnActiveControlChange: TNotifyEvent;
  70.     FOnActiveFormChange: TNotifyEvent;
  71.     procedure UpdateAppProps;
  72.     function GetCanvas: TCanvas;
  73.     function GetHintColor: TColor;
  74.     function GetHintPause: Integer;
  75.     function GetShowHint: Boolean;
  76.     procedure SetHintColor(Value: TColor);
  77.     procedure SetHintPause(Value: Integer);
  78.     procedure SetShowHint(Value: Boolean);
  79.     function GetUpdateFormatSettings: Boolean;
  80.     procedure SetUpdateFormatSettings(Value: Boolean);
  81. {$IFDEF WIN32}
  82.     function GetHintShortPause: Integer;
  83.     function GetHintHidePause: Integer;
  84.     function GetShowMainForm: Boolean;
  85.     procedure SetHintShortPause(Value: Integer);
  86.     procedure SetHintHidePause(Value: Integer);
  87.     procedure SetShowMainForm(Value: Boolean);
  88. {$ENDIF WIN32}
  89. {$IFDEF RX_D3}
  90.     function GetUpdateMetricSettings: Boolean;
  91.     procedure SetUpdateMetricSettings(Value: Boolean);
  92. {$ENDIF}
  93. {$IFDEF RX_D4}
  94.     function GetHintShortCuts: Boolean;
  95.     function GetBiDiMode: TBiDiMode;
  96.     procedure SetHintShortCuts(Value: Boolean);
  97.     procedure SetBiDiMode(Value: TBiDiMode);
  98.     function GetMouseDragImmediate: Boolean;
  99.     function GetMouseDragThreshold: Integer;
  100.     procedure SetMouseDragImmediate(Value: Boolean);
  101.     procedure SetMouseDragThreshold(Value: Integer);
  102. {$ENDIF}
  103. {$IFDEF RX_D5}
  104.     function GetBiDiKeyboard: string;
  105.     function GetNonBiDiKeyboard: string; 
  106.     procedure SetBiDiKeyboard(const Value: string);
  107.     procedure SetNonBiDiKeyboard(const Value: string);
  108. {$ENDIF}
  109.   protected
  110.     procedure Loaded; override;
  111.     procedure PaintIcon; virtual;
  112.     procedure SettingsChanged; dynamic;
  113.     function MessageHook(var Msg: TMessage): Boolean; virtual;
  114.   public
  115.     constructor Create(AOwner: TComponent); override;
  116.     destructor Destroy; override;
  117.     property Canvas: TCanvas read GetCanvas; { for painting the icon }
  118.   published
  119.     property Chained: Boolean read FChained write FChained default True;
  120.     property HintColor: TColor read GetHintColor write SetHintColor default DefHintColor;
  121.     property HintPause: Integer read GetHintPause write SetHintPause default DefHintPause;
  122.     property ShowHint: Boolean read GetShowHint write SetShowHint default True;
  123.     property UpdateFormatSettings: Boolean read GetUpdateFormatSettings
  124.       write SetUpdateFormatSettings default True;
  125. {$IFDEF WIN32}
  126.     property HintShortPause: Integer read GetHintShortPause write SetHintShortPause
  127.       default DefHintShortPause;
  128.     property HintHidePause: Integer read GetHintHidePause write SetHintHidePause
  129.       default DefHintHidePause;
  130.     property ShowMainForm: Boolean read GetShowMainForm write SetShowMainForm
  131.       default True;
  132. {$ENDIF}
  133. {$IFDEF RX_D3}
  134.     property UpdateMetricSettings: Boolean read GetUpdateMetricSettings
  135.       write SetUpdateMetricSettings default True;
  136. {$ENDIF}
  137. {$IFDEF RX_D4}
  138.     property HintShortCuts: Boolean read GetHintShortCuts write SetHintShortCuts
  139.       default True;
  140.     property BiDiMode: TBiDiMode read GetBiDiMode write SetBiDiMode
  141.       default bdLeftToRight;
  142.     property MouseDragImmediate: Boolean read GetMouseDragImmediate
  143.       write SetMouseDragImmediate default True;
  144.     property MouseDragThreshold: Integer read GetMouseDragThreshold
  145.       write SetMouseDragThreshold default 5;
  146.     property OnActionExecute: TActionEvent read FOnActionExecute write FOnActionExecute;
  147.     property OnActionUpdate: TActionEvent read FOnActionUpdate write FOnActionUpdate;
  148.     property OnShortCut: TShortCutEvent read FOnShortCut write FOnShortCut;
  149. {$ENDIF}
  150. {$IFDEF RX_D5}
  151.     property BiDiKeyboard: string read GetBiDiKeyboard write SetBiDiKeyboard;
  152.     property NonBiDiKeyboard: string read GetNonBiDiKeyboard write SetNonBiDiKeyboard; 
  153. {$ENDIF}
  154.     property OnActivate: TNotifyEvent read FOnActivate write FOnActivate;
  155.     property OnDeactivate: TNotifyEvent read FOnDeactivate write FOnDeactivate;
  156.     property OnException: TExceptionEvent read FOnException write FOnException;
  157.     property OnIdle: TIdleEvent read FOnIdle write FOnIdle;
  158.     property OnHelp: THelpEvent read FOnHelp write FOnHelp;
  159.     property OnHint: TNotifyEvent read FOnHint write FOnHint;
  160.     property OnMessage: TMessageEvent read FOnMessage write FOnMessage;
  161.     property OnMinimize: TNotifyEvent read FOnMinimize write FOnMinimize;
  162.     property OnPaintIcon: TNotifyEvent read FOnPaintIcon write FOnPaintIcon;
  163.     property OnRestore: TNotifyEvent read FOnRestore write FOnRestore;
  164.     property OnShowHint: TShowHintEvent read FOnShowHint write FOnShowHint;
  165.     property OnSettingsChanged: TNotifyEvent read FOnSettingsChanged write FOnSettingsChanged;
  166.     property OnActiveControlChange: TNotifyEvent read FOnActiveControlChange write FOnActiveControlChange;
  167.     property OnActiveFormChange: TNotifyEvent read FOnActiveFormChange write FOnActiveFormChange;
  168.   end;
  169. implementation
  170. uses AppUtils, VclUtils;
  171. { TAppEventList }
  172. type
  173.   TAppEventList = class(TObject)
  174.   private
  175.     FAppEvents: TList;
  176.     FHooked: Boolean;
  177.     FOnActivate: TNotifyEvent;
  178.     FOnDeactivate: TNotifyEvent;
  179.     FOnException: TExceptionEvent;
  180.     FOnIdle: TIdleEvent;
  181.     FOnHelp: THelpEvent;
  182.     FOnHint: TNotifyEvent;
  183.     FOnMessage: TMessageEvent;
  184.     FOnMinimize: TNotifyEvent;
  185.     FOnRestore: TNotifyEvent;
  186.     FOnShowHint: TShowHintEvent;
  187.     FOnActiveControlChange: TNotifyEvent;
  188.     FOnActiveFormChange: TNotifyEvent;
  189. {$IFDEF RX_D4}
  190.     FOnActionExecute: TActionEvent;
  191.     FOnActionUpdate: TActionEvent;
  192.     FOnShortCut: TShortCutEvent;
  193. {$ENDIF}
  194.     procedure AddEvents(App: TAppEvents);
  195.     procedure RemoveEvents(App: TAppEvents);
  196.     procedure ClearEvents;
  197.   protected
  198.     procedure DoActivate(Sender: TObject);
  199.     procedure DoDeactivate(Sender: TObject);
  200.     procedure DoException(Sender: TObject; E: Exception);
  201.     procedure DoIdle(Sender: TObject; var Done: Boolean);
  202.     function DoHelp(Command: Word; Data: Longint;
  203.       var CallHelp: Boolean): Boolean;
  204.     procedure DoHint(Sender: TObject);
  205.     procedure DoMessage(var Msg: TMsg; var Handled: Boolean);
  206.     procedure DoMinimize(Sender: TObject);
  207.     procedure DoRestore(Sender: TObject);
  208.     procedure DoShowHint(var HintStr: string; var CanShow: Boolean;
  209.       var HintInfo: THintInfo);
  210.     procedure DoActiveControlChange(Sender: TObject);
  211.     procedure DoActiveFormChange(Sender: TObject);
  212. {$IFDEF RX_D4}
  213.     procedure DoActionExecute(Action: TBasicAction; var Handled: Boolean);
  214.     procedure DoActionUpdate(Action: TBasicAction; var Handled: Boolean);
  215.     procedure DoShortCut(var Msg: TWMKey; var Handled: Boolean);
  216. {$ENDIF}
  217.   public
  218.     constructor Create;
  219.     destructor Destroy; override;
  220.   end;
  221. constructor TAppEventList.Create;
  222. begin
  223.   inherited Create;
  224.   FAppEvents := TList.Create;
  225. end;
  226. destructor TAppEventList.Destroy;
  227. begin
  228.   ClearEvents;
  229.   FAppEvents.Free;
  230.   inherited Destroy;
  231. end;
  232. procedure TAppEventList.ClearEvents;
  233. begin
  234.   if FHooked then begin
  235.     Application.OnActivate := nil;
  236.     Application.OnDeactivate := nil;
  237.     Application.OnException := nil;
  238.     Application.OnIdle := nil;
  239.     Application.OnHelp := nil;
  240.     Application.OnHint := nil;
  241.     Application.OnMessage := nil;
  242.     Application.OnMinimize := nil;
  243.     Application.OnRestore := nil;
  244.     Application.OnShowHint := nil;
  245. {$IFDEF RX_D4}
  246.     Application.OnActionExecute := nil;
  247.     Application.OnActionUpdate := nil;
  248.     Application.OnShortCut := nil;
  249. {$ENDIF}
  250.     if Screen <> nil then begin
  251.       Screen.OnActiveControlChange := nil;
  252.       Screen.OnActiveFormChange := nil;
  253.     end;
  254.   end;
  255. end;
  256. procedure TAppEventList.AddEvents(App: TAppEvents);
  257. begin
  258.   if (App <> nil) and (FAppEvents.IndexOf(App) = -1) then begin
  259.     FAppEvents.Add(App);
  260.     if not (csDesigning in App.ComponentState) and (FAppEvents.Count = 1) then
  261.     begin
  262.       FOnActivate := Application.OnActivate;
  263.       FOnDeactivate := Application.OnDeactivate;
  264.       FOnException := Application.OnException;
  265.       FOnIdle := Application.OnIdle;
  266.       FOnHelp := Application.OnHelp;
  267.       FOnHint := Application.OnHint;
  268.       FOnMessage := Application.OnMessage;
  269.       FOnMinimize := Application.OnMinimize;
  270.       FOnRestore := Application.OnRestore;
  271.       FOnShowHint := Application.OnShowHint;
  272. {$IFDEF RX_D4}
  273.       FOnActionExecute := Application.OnActionExecute;
  274.       FOnActionUpdate := Application.OnActionUpdate;
  275.       FOnShortCut := Application.OnShortCut;
  276.       Application.OnActionExecute := DoActionExecute;
  277.       Application.OnActionUpdate := DoActionUpdate;
  278.       Application.OnShortCut := DoShortCut;
  279. {$ENDIF}
  280.       Application.OnActivate := DoActivate;
  281.       Application.OnDeactivate := DoDeactivate;
  282.       Application.OnException := DoException;
  283.       Application.OnIdle := DoIdle;
  284.       Application.OnHelp := DoHelp;
  285.       Application.OnHint := DoHint;
  286.       Application.OnMessage := DoMessage;
  287.       Application.OnMinimize := DoMinimize;
  288.       Application.OnRestore := DoRestore;
  289.       Application.OnShowHint := DoShowHint;
  290.       if Screen <> nil then begin
  291.         FOnActiveControlChange := Screen.OnActiveControlChange;
  292.         FOnActiveFormChange := Screen.OnActiveFormChange;
  293.         Screen.OnActiveControlChange := DoActiveControlChange;
  294.         Screen.OnActiveFormChange := DoActiveFormChange;
  295.       end;
  296.       FHooked := True;
  297.     end;
  298.   end;
  299. end;
  300. procedure TAppEventList.RemoveEvents(App: TAppEvents);
  301. begin
  302.   if FAppEvents.IndexOf(App) >= 0 then FAppEvents.Remove(App);
  303.   if not (csDesigning in App.ComponentState) and (FAppEvents.Count = 0) then
  304.     ClearEvents;
  305. end;
  306. procedure TAppEventList.DoActivate(Sender: TObject);
  307. var
  308.   I: Integer;
  309. begin
  310.   for I := FAppEvents.Count - 1 downto 0 do begin
  311.     if Assigned(TAppEvents(FAppEvents[I]).FOnActivate) then
  312.       TAppEvents(FAppEvents[I]).FOnActivate(Sender);
  313.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  314.   end;
  315.   if Assigned(FOnActivate) then FOnActivate(Sender);
  316. end;
  317. procedure TAppEventList.DoDeactivate(Sender: TObject);
  318. var
  319.   I: Integer;
  320. begin
  321.   for I := FAppEvents.Count - 1 downto 0 do begin
  322.     if Assigned(TAppEvents(FAppEvents[I]).FOnDeactivate) then
  323.       TAppEvents(FAppEvents[I]).FOnDeactivate(Sender);
  324.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  325.   end;
  326.   if Assigned(FOnDeactivate) then FOnDeactivate(Sender);
  327. end;
  328. procedure TAppEventList.DoException(Sender: TObject; E: Exception);
  329. var
  330.   I: Integer;
  331.   Handled: Boolean;
  332. begin
  333.   Handled := False;
  334.   for I := FAppEvents.Count - 1 downto 0 do begin
  335.     if Assigned(TAppEvents(FAppEvents[I]).FOnException) then begin
  336.       TAppEvents(FAppEvents[I]).FOnException(Sender, E);
  337.       Handled := True;
  338.     end;
  339.     if not TAppEvents(FAppEvents[I]).Chained then begin
  340.       if not Handled then Application.ShowException(E);
  341.       Exit;
  342.     end;
  343.   end;
  344.   if Assigned(FOnException) then begin
  345.     FOnException(Sender, E);
  346.     Handled := True;
  347.   end;
  348.   if not Handled then Application.ShowException(E);
  349. end;
  350. procedure TAppEventList.DoIdle(Sender: TObject; var Done: Boolean);
  351. var
  352.   I: Integer;
  353. begin
  354.   for I := FAppEvents.Count - 1 downto 0 do begin
  355.     if Assigned(TAppEvents(FAppEvents[I]).FOnIdle) then
  356.       TAppEvents(FAppEvents[I]).FOnIdle(Sender, Done);
  357.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  358.   end;
  359.   if Assigned(FOnIdle) then FOnIdle(Sender, Done);
  360. end;
  361. function TAppEventList.DoHelp(Command: Word; Data: Longint;
  362.   var CallHelp: Boolean): Boolean;
  363. var
  364.   I: Integer;
  365. begin
  366.   Result := False;
  367.   for I := FAppEvents.Count - 1 downto 0 do begin
  368.     if Assigned(TAppEvents(FAppEvents[I]).FOnHelp) then
  369.       Result := TAppEvents(FAppEvents[I]).FOnHelp(Command, Data, CallHelp);
  370.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  371.   end;
  372.   if Assigned(FOnHelp) then Result := FOnHelp(Command, Data, CallHelp);
  373. end;
  374. procedure TAppEventList.DoHint(Sender: TObject);
  375. var
  376.   I: Integer;
  377. begin
  378.   for I := FAppEvents.Count - 1 downto 0 do begin
  379.     if Assigned(TAppEvents(FAppEvents[I]).FOnHint) then
  380.       TAppEvents(FAppEvents[I]).FOnHint(Sender);
  381.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  382.   end;
  383.   if Assigned(FOnHint) then FOnHint(Sender);
  384. end;
  385. procedure TAppEventList.DoMessage(var Msg: TMsg; var Handled: Boolean);
  386. var
  387.   I: Integer;
  388. begin
  389.   for I := FAppEvents.Count - 1 downto 0 do begin
  390.     if Assigned(TAppEvents(FAppEvents[I]).FOnMessage) then
  391.       TAppEvents(FAppEvents[I]).FOnMessage(Msg, Handled);
  392.     if not TAppEvents(FAppEvents[I]).Chained or Handled then Exit;
  393.   end;
  394.   if Assigned(FOnMessage) then FOnMessage(Msg, Handled);
  395. end;
  396. procedure TAppEventList.DoMinimize(Sender: TObject);
  397. var
  398.   I: Integer;
  399. begin
  400.   for I := FAppEvents.Count - 1 downto 0 do begin
  401.     if Assigned(TAppEvents(FAppEvents[I]).FOnMinimize) then
  402.       TAppEvents(FAppEvents[I]).FOnMinimize(Sender);
  403.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  404.   end;
  405.   if Assigned(FOnMinimize) then FOnMinimize(Sender);
  406. end;
  407. procedure TAppEventList.DoRestore(Sender: TObject);
  408. var
  409.   I: Integer;
  410. begin
  411.   for I := FAppEvents.Count - 1 downto 0 do begin
  412.     if Assigned(TAppEvents(FAppEvents[I]).FOnRestore) then
  413.       TAppEvents(FAppEvents[I]).FOnRestore(Sender);
  414.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  415.   end;
  416.   if Assigned(FOnRestore) then FOnRestore(Sender);
  417. end;
  418. procedure TAppEventList.DoShowHint(var HintStr: string; var CanShow: Boolean;
  419.   var HintInfo: THintInfo);
  420. var
  421.   I: Integer;
  422. begin
  423.   for I := FAppEvents.Count - 1 downto 0 do begin
  424.     if Assigned(TAppEvents(FAppEvents[I]).FOnShowHint) then
  425.       TAppEvents(FAppEvents[I]).FOnShowHint(HintStr, CanShow, HintInfo);
  426.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  427.   end;
  428.   if Assigned(FOnShowHint) then FOnShowHint(HintStr, CanShow, HintInfo);
  429. end;
  430. procedure TAppEventList.DoActiveControlChange(Sender: TObject);
  431. var
  432.   I: Integer;
  433. begin
  434.   for I := FAppEvents.Count - 1 downto 0 do begin
  435.     if Assigned(TAppEvents(FAppEvents[I]).FOnActiveControlChange) then
  436.       TAppEvents(FAppEvents[I]).FOnActiveControlChange(Sender);
  437.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  438.   end;
  439.   if Assigned(FOnActiveControlChange) then FOnActiveControlChange(Sender);
  440. end;
  441. procedure TAppEventList.DoActiveFormChange(Sender: TObject);
  442. var
  443.   I: Integer;
  444. begin
  445.   for I := FAppEvents.Count - 1 downto 0 do begin
  446.     if Assigned(TAppEvents(FAppEvents[I]).FOnActiveFormChange) then
  447.       TAppEvents(FAppEvents[I]).FOnActiveFormChange(Sender);
  448.     if not TAppEvents(FAppEvents[I]).Chained then Exit;
  449.   end;
  450.   if Assigned(FOnActiveFormChange) then FOnActiveFormChange(Sender);
  451. end;
  452. {$IFDEF RX_D4}
  453. procedure TAppEventList.DoActionExecute(Action: TBasicAction;
  454.   var Handled: Boolean);
  455. var
  456.   I: Integer;
  457. begin
  458.   for I := FAppEvents.Count - 1 downto 0 do begin
  459.     if Assigned(TAppEvents(FAppEvents[I]).FOnActionExecute) then
  460.       TAppEvents(FAppEvents[I]).FOnActionExecute(Action, Handled);
  461.     if not TAppEvents(FAppEvents[I]).Chained or Handled then Exit;
  462.   end;
  463.   if Assigned(FOnActionExecute) then FOnActionExecute(Action, Handled);
  464. end;
  465. procedure TAppEventList.DoActionUpdate(Action: TBasicAction;
  466.   var Handled: Boolean);
  467. var
  468.   I: Integer;
  469. begin
  470.   for I := FAppEvents.Count - 1 downto 0 do begin
  471.     if Assigned(TAppEvents(FAppEvents[I]).FOnActionUpdate) then
  472.       TAppEvents(FAppEvents[I]).FOnActionUpdate(Action, Handled);
  473.     if not TAppEvents(FAppEvents[I]).Chained or Handled then Exit;
  474.   end;
  475.   if Assigned(FOnActionUpdate) then FOnActionUpdate(Action, Handled);
  476. end;
  477. procedure TAppEventList.DoShortCut(var Msg: TWMKey; var Handled: Boolean);
  478. var
  479.   I: Integer;
  480. begin
  481.   for I := FAppEvents.Count - 1 downto 0 do begin
  482.     if Assigned(TAppEvents(FAppEvents[I]).FOnShortCut) then
  483.       TAppEvents(FAppEvents[I]).FOnShortCut(Msg, Handled);
  484.     if not TAppEvents(FAppEvents[I]).Chained or Handled then Exit;
  485.   end;
  486.   if Assigned(FOnShortCut) then FOnShortCut(Msg, Handled);
  487. end;
  488. {$ENDIF RX_D4}
  489. const
  490.   AppList: TAppEventList = nil;
  491. { TAppEvents }
  492. constructor TAppEvents.Create(AOwner: TComponent);
  493. begin
  494.   inherited Create(AOwner);
  495.   if AppList = nil then AppList := TAppEventList.Create;
  496.   FChained := True;
  497.   FHintColor := DefHintColor;
  498.   FHintPause := DefHintPause;
  499.   FShowHint := True;
  500. {$IFDEF RX_D3}
  501.   FUpdateMetricSettings := True;
  502. {$ENDIF}
  503. {$IFDEF WIN32}
  504.   FHintShortPause := DefHintShortPause;
  505.   FHintHidePause := DefHintHidePause;
  506.   FShowMainForm := True;
  507. {$ENDIF}
  508. {$IFDEF RX_D4}
  509.   FHintShortCuts := True;
  510.   FBiDiMode := bdLeftToRight;
  511.   FMouseDragImmediate := True;
  512.   FMouseDragThreshold := 5;
  513. {$ENDIF}
  514.   FUpdateFormatSettings := True;
  515.   if not (csDesigning in ComponentState) then
  516.     Application.HookMainWindow(MessageHook);
  517.   AppList.AddEvents(Self);
  518. end;
  519. destructor TAppEvents.Destroy;
  520. begin
  521.   if not (csDesigning in ComponentState) then
  522.     Application.UnhookMainWindow(MessageHook);
  523.   if Self <> nil then AppList.RemoveEvents(Self);
  524.   FCanvas.Free;
  525.   inherited Destroy;
  526. end;
  527. procedure TAppEvents.Loaded;
  528. begin
  529.   inherited Loaded;
  530.   UpdateAppProps;
  531. end;
  532. function TAppEvents.GetCanvas: TCanvas;
  533. begin
  534.   if FCanvas = nil then FCanvas := TCanvas.Create;
  535.   Result := FCanvas;
  536. end;
  537. procedure TAppEvents.PaintIcon;
  538. var
  539.   PS: TPaintStruct;
  540. begin
  541.   BeginPaint(Application.Handle, PS);
  542.   try
  543.     if FCanvas <> nil then FCanvas.Free;
  544.     FCanvas := TCanvas.Create;
  545.     try
  546.       Canvas.Handle := PS.hDC;
  547.       Canvas.Brush.Color := clBackground;
  548.       if PS.fErase then Canvas.FillRect(PS.rcPaint);
  549.       if Assigned(FOnPaintIcon) then FOnPaintIcon(Self);
  550.     finally
  551.       FCanvas.Free;
  552.       FCanvas := nil;
  553.     end;
  554.   finally
  555.     EndPaint(Application.Handle, PS);
  556.   end;
  557. end;
  558. procedure TAppEvents.SettingsChanged;
  559. begin
  560.   if Assigned(FOnSettingsChanged) then FOnSettingsChanged(Self);
  561. end;
  562. function TAppEvents.MessageHook(var Msg: TMessage): Boolean;
  563. begin
  564.   Result := False;
  565.   case Msg.Msg of
  566.     WM_WININICHANGE:
  567.       begin
  568. {$IFNDEF WIN32}
  569.         if UpdateFormatSettings then GetFormatSettings;
  570. {$ELSE}
  571.   {$IFNDEF RX_D3}
  572.         if Application.ShowHint then begin
  573.           Application.ShowHint := False;
  574.           Application.ShowHint := True;
  575.         end;
  576.   {$ENDIF}
  577. {$ENDIF}
  578.         try
  579.           SettingsChanged;
  580.         except
  581.           Application.HandleException(Self);
  582.         end;
  583.       end;
  584. {$IFNDEF WIN32}
  585.     WM_ENDSESSION: if WordBool(Msg.wParam) then Halt;
  586. {$ENDIF}
  587.     WM_PAINT:
  588.       if Assigned(FOnPaintIcon) and IsIconic(Application.Handle) then
  589.       begin
  590.         PaintIcon;
  591.         Result := True;
  592.       end;
  593.   end;
  594. end;
  595. function TAppEvents.GetHintColor: TColor;
  596. begin
  597.   if (csDesigning in ComponentState) then Result := FHintColor
  598.   else Result := Application.HintColor;
  599. end;
  600. function TAppEvents.GetHintPause: Integer;
  601. begin
  602.   if (csDesigning in ComponentState) then Result := FHintPause
  603.   else Result := Application.HintPause;
  604. end;
  605. function TAppEvents.GetShowHint: Boolean;
  606. begin
  607.   if (csDesigning in ComponentState) then Result := FShowHint
  608.   else Result := Application.ShowHint;
  609. end;
  610. procedure TAppEvents.SetHintColor(Value: TColor);
  611. begin
  612.   FHintColor := Value;
  613.   if not (csDesigning in ComponentState) then Application.HintColor := Value;
  614. end;
  615. procedure TAppEvents.SetHintPause(Value: Integer);
  616. begin
  617.   FHintPause := Value;
  618.   if not (csDesigning in ComponentState) then Application.HintPause := Value;
  619. end;
  620. procedure TAppEvents.SetShowHint(Value: Boolean);
  621. begin
  622.   FShowHint := Value;
  623.   if not (csDesigning in ComponentState) then Application.ShowHint := Value;
  624. end;
  625. function TAppEvents.GetUpdateFormatSettings: Boolean;
  626. begin
  627. {$IFDEF WIN32}
  628.   if (csDesigning in ComponentState) then Result := FUpdateFormatSettings
  629.   else Result := Application.UpdateFormatSettings;
  630. {$ELSE}
  631.   Result := FUpdateFormatSettings;
  632. {$ENDIF}
  633. end;
  634. procedure TAppEvents.SetUpdateFormatSettings(Value: Boolean);
  635. begin
  636.   FUpdateFormatSettings := Value;
  637. {$IFDEF WIN32}
  638.   if not (csDesigning in ComponentState) then
  639.     Application.UpdateFormatSettings := Value;
  640. {$ENDIF}
  641. end;
  642. {$IFDEF WIN32}
  643. function TAppEvents.GetHintShortPause: Integer;
  644. begin
  645.   if (csDesigning in ComponentState) then Result := FHintShortPause
  646.   else Result := Application.HintShortPause;
  647. end;
  648. function TAppEvents.GetHintHidePause: Integer;
  649. begin
  650.   if (csDesigning in ComponentState) then Result := FHintHidePause
  651.   else Result := Application.HintHidePause;
  652. end;
  653. function TAppEvents.GetShowMainForm: Boolean;
  654. begin
  655.   if (csDesigning in ComponentState) then Result := FShowMainForm
  656.   else Result := Application.ShowMainForm;
  657. end;
  658. procedure TAppEvents.SetHintShortPause(Value: Integer);
  659. begin
  660.   FHintShortPause := Value;
  661.   if not (csDesigning in ComponentState) then Application.HintShortPause := Value;
  662. end;
  663. procedure TAppEvents.SetHintHidePause(Value: Integer);
  664. begin
  665.   FHintHidePause := Value;
  666.   if not (csDesigning in ComponentState) then Application.HintHidePause := Value;
  667. end;
  668. procedure TAppEvents.SetShowMainForm(Value: Boolean);
  669. begin
  670.   FShowMainForm := Value;
  671.   if not (csDesigning in ComponentState) then Application.ShowMainForm := Value;
  672. end;
  673. {$ENDIF WIN32}
  674. {$IFDEF RX_D3}
  675. function TAppEvents.GetUpdateMetricSettings: Boolean;
  676. begin
  677.   if (csDesigning in ComponentState) then Result := FUpdateMetricSettings
  678.   else Result := Application.UpdateMetricSettings;
  679. end;
  680. procedure TAppEvents.SetUpdateMetricSettings(Value: Boolean);
  681. begin
  682.   FUpdateMetricSettings := Value;
  683.   if not (csDesigning in ComponentState) then
  684.     Application.UpdateMetricSettings := Value;
  685. end;
  686. {$ENDIF RX_D3}
  687. {$IFDEF RX_D4}
  688. function TAppEvents.GetHintShortCuts: Boolean;
  689. begin
  690.   if (csDesigning in ComponentState) then Result := FHintShortCuts
  691.   else Result := Application.HintShortCuts;
  692. end;
  693. function TAppEvents.GetBiDiMode: TBiDiMode;
  694. begin
  695.   if (csDesigning in ComponentState) then Result := FBiDiMode
  696.   else Result := Application.BiDiMode;
  697. end;
  698. function TAppEvents.GetMouseDragImmediate: Boolean;
  699. begin
  700.   if (csDesigning in ComponentState) or (Mouse = nil) then
  701.     Result := FMouseDragImmediate
  702.   else Result := Mouse.DragImmediate;
  703. end;
  704. function TAppEvents.GetMouseDragThreshold: Integer;
  705. begin
  706.   if (csDesigning in ComponentState) or (Mouse = nil) then
  707.     Result := FMouseDragThreshold
  708.   else Result := Mouse.DragThreshold;
  709. end;
  710. procedure TAppEvents.SetMouseDragImmediate(Value: Boolean);
  711. begin
  712.   FMouseDragImmediate := Value;
  713.   if not (csDesigning in ComponentState) and (Mouse <> nil) then
  714.     Mouse.DragImmediate := Value;
  715. end;
  716. procedure TAppEvents.SetMouseDragThreshold(Value: Integer);
  717. begin
  718.   FMouseDragThreshold := Value;
  719.   if not (csDesigning in ComponentState) and (Mouse <> nil) then
  720.     Mouse.DragThreshold := Value;
  721. end;
  722. procedure TAppEvents.SetHintShortCuts(Value: Boolean);
  723. begin
  724.   FHintShortCuts := Value;
  725.   if not (csDesigning in ComponentState) then
  726.     Application.HintShortCuts := Value;
  727. end;
  728. procedure TAppEvents.SetBiDiMode(Value: TBiDiMode);
  729. begin
  730.   FBiDiMode := Value;
  731.   if not (csDesigning in ComponentState) then
  732.     Application.BiDiMode := Value;
  733. end;
  734. {$ENDIF RX_D4}
  735. {$IFDEF RX_D5}
  736. function TAppEvents.GetBiDiKeyboard: string;
  737. begin
  738.   if (csDesigning in ComponentState) then Result := FBiDiKeyboard
  739.   else Result := Application.BiDiKeyboard;
  740. end;
  741. function TAppEvents.GetNonBiDiKeyboard: string; 
  742. begin
  743.   if (csDesigning in ComponentState) then Result := FNonBiDiKeyboard
  744.   else Result := Application.NonBiDiKeyboard;
  745. end;
  746. procedure TAppEvents.SetBiDiKeyboard(const Value: string);
  747. begin
  748.   FBiDiKeyboard := Value;
  749.   if not (csDesigning in ComponentState) then
  750.     Application.BiDiKeyboard := Value;
  751. end;
  752. procedure TAppEvents.SetNonBiDiKeyboard(const Value: string);
  753. begin
  754.   FNonBiDiKeyboard := Value;
  755.   if not (csDesigning in ComponentState) then
  756.     Application.NonBiDiKeyboard := Value;
  757. end;
  758. {$ENDIF RX_D5}
  759. procedure TAppEvents.UpdateAppProps;
  760. begin
  761.   if not (csDesigning in ComponentState) then begin
  762.     with Application do begin
  763.       HintColor := FHintColor;
  764.       HintPause := FHintPause;
  765.       ShowHint := FShowHint;
  766. {$IFDEF WIN32}
  767.       HintShortPause := FHintShortPause;
  768.       HintHidePause := FHintHidePause;
  769.       ShowMainForm := FShowMainForm;
  770.       UpdateFormatSettings := FUpdateFormatSettings;
  771. {$ENDIF}
  772. {$IFDEF RX_D3}
  773.       UpdateMetricSettings := FUpdateMetricSettings;
  774. {$ENDIF}
  775. {$IFDEF RX_D4}
  776.       HintShortCuts := FHintShortCuts;
  777.       BiDiMode := FBiDiMode;
  778.       with Mouse do begin
  779.         DragImmediate := FMouseDragImmediate;
  780.         DragThreshold := FMouseDragThreshold;
  781.       end;
  782. {$ENDIF}
  783. {$IFDEF RX_D5}
  784.       BiDiKeyboard := FBiDiKeyboard;
  785.       NonBiDiKeyboard := FNonBiDiKeyboard;      
  786. {$ENDIF}
  787.     end;
  788.   end;
  789. end;
  790. procedure DestroyLocals; far;
  791. begin
  792.   if AppList <> nil then begin
  793.     AppList.Free;
  794.     AppList := nil;
  795.   end;
  796. end;
  797. initialization
  798. {$IFDEF WIN32}
  799. finalization
  800.   DestroyLocals;
  801. {$ELSE}
  802.   AddExitProc(DestroyLocals);
  803. {$ENDIF}
  804. end.