1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
|
{*****************************************************************************}
{ }
{ Tnt Delphi Unicode Controls }
{ http://tnt.ccci.org/delphi_unicode_controls/ }
{ Version: 2.1.11 }
{ }
{ Copyright (c) 2002-2004, Troy Wolbrink (troy.wolbrink@ccci.org) }
{ }
{*****************************************************************************}
unit TntForms;
{$INCLUDE TntCompilers.inc}
interface
uses
Classes, TntClasses, Windows, Messages, Controls, Forms, TntControls;
type
{TNT-WARN TScrollBox}
TTntScrollBox = class(TScrollBox{TNT-ALLOW TScrollBox})
private
FWMSizeCallCount: Integer;
function IsHintStored: Boolean;
function GetHint: WideString;
procedure SetHint(const Value: WideString);
procedure WMSize(var Message: TWMSize); message WM_SIZE;
protected
procedure CreateWindowHandle(const Params: TCreateParams); override;
procedure DefineProperties(Filer: TFiler); override;
function GetActionLinkClass: TControlActionLinkClass; override;
procedure ActionChange(Sender: TObject; CheckDefaults: Boolean); override;
published
property Hint: WideString read GetHint write SetHint stored IsHintStored;
end;
{TNT-WARN TCustomFrame}
TTntCustomFrame = class(TCustomFrame{TNT-ALLOW TCustomFrame})
private
function IsHintStored: Boolean;
function GetHint: WideString;
procedure SetHint(const Value: WideString);
protected
procedure CreateWindowHandle(const Params: TCreateParams); override;
procedure DefineProperties(Filer: TFiler); override;
function GetActionLinkClass: TControlActionLinkClass; override;
procedure ActionChange(Sender: TObject; CheckDefaults: Boolean); override;
published
property Hint: WideString read GetHint write SetHint stored IsHintStored;
end;
{TNT-WARN TFrame}
TTntFrame{TNT-ALLOW TTntFrame} = class(TTntCustomFrame)
published
property Align;
property Anchors;
property AutoScroll;
property AutoSize;
property BiDiMode;
property Constraints;
property DockSite;
property DragCursor;
property DragKind;
property DragMode;
property Enabled;
property Color nodefault;
property Ctl3D;
property Font;
{$IFDEF COMPILER_7_UP}
property ParentBackground default True;
{$ENDIF}
property ParentBiDiMode;
property ParentColor;
property ParentCtl3D;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property TabOrder;
property TabStop;
property Visible;
property OnCanResize;
property OnClick;
property OnConstrainedResize;
property OnContextPopup;
property OnDblClick;
property OnDockDrop;
property OnDockOver;
property OnDragDrop;
property OnDragOver;
property OnEndDock;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnGetSiteInfo;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
property OnResize;
property OnStartDock;
property OnStartDrag;
property OnUnDock;
end;
{TNT-WARN TForm}
TTntForm{TNT-ALLOW TTntForm} = class(TForm{TNT-ALLOW TForm})
private
function GetCaption: TWideCaption;
procedure SetCaption(const Value: TWideCaption);
function GetHint: WideString;
procedure SetHint(const Value: WideString);
function IsCaptionStored: Boolean;
function IsHintStored: Boolean;
procedure WMMenuSelect(var Message: TWMMenuSelect); message WM_MENUSELECT;
procedure CMBiDiModeChanged(var Message: TMessage); message CM_BIDIMODECHANGED;
procedure WMWindowPosChanging(var Message: TMessage); message WM_WINDOWPOSCHANGING;
protected
procedure UpdateActions; override;
procedure CreateWindowHandle(const Params: TCreateParams); override;
procedure DestroyWindowHandle; override;
procedure DefineProperties(Filer: TFiler); override;
function GetActionLinkClass: TControlActionLinkClass; override;
procedure ActionChange(Sender: TObject; CheckDefaults: Boolean); override;
public
constructor Create(AOwner: TComponent); override;
procedure DefaultHandler(var Message); override;
published
property Caption: TWideCaption read GetCaption write SetCaption stored IsCaptionStored;
property Hint: WideString read GetHint write SetHint stored IsHintStored;
end;
TTntApplication = class(TComponent)
private
FMainFormChecked: Boolean;
FHint: WideString;
FTntAppIdleEventControl: TControl;
FSettingChangeTime: Cardinal;
FTitle: WideString;
function GetHint: WideString;
procedure SetAnsiAppHint(const Value: AnsiString);
procedure SetHint(const Value: WideString);
function GetExeName: WideString;
function IsDlgMsg(var Msg: TMsg): Boolean;
procedure DoIdle;
function GetTitle: WideString;
procedure SetTitle(const Value: WideString);
procedure SetAnsiApplicationTitle(const Value: AnsiString);
protected
function WndProc(var Message: TMessage): Boolean;
function ProcessMessage(var Msg: TMsg): Boolean;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property Hint: WideString read GetHint write SetHint;
property ExeName: WideString read GetExeName;
property SettingChangeTime: Cardinal read FSettingChangeTime;
property Title: WideString read GetTitle write SetTitle;
end;
{TNT-WARN IsAccel}
function IsWideCharAccel(CharCode: Word; const Caption: WideString): Boolean;
{TNT-WARN PeekMessage}
{TNT-WARN PeekMessageA}
{TNT-WARN PeekMessageW}
procedure EnableManualPeekMessageWithRemove;
procedure DisableManualPeekMessageWithRemove;
procedure ConstructBaseClassForm(Self: TTntForm{TNT-ALLOW TTntForm}; FormClass: TCustomFormClass; AOwner: TComponent);
var
TntApplication: TTntApplication;
procedure InitTntEnvironment;
implementation
uses
SysUtils, Consts, {$IFDEF COMPILER_6_UP} RTLConsts, {$ENDIF} Menus, FlatSB, StdActns,
Graphics, TntSystem, TntSysUtils, TntWindows, TntMenus, TntActnList, TntStdActns;
function IsWideCharAccel(CharCode: Word; const Caption: WideString): Boolean;
var
W: WideChar;
begin
W := KeyUnicode(CharCode);
Result := WideSameText(W, WideGetHotKey(Caption));
end;
procedure ConstructBaseClassForm(Self: TTntForm{TNT-ALLOW TTntForm}; FormClass: TCustomFormClass; AOwner: TComponent);
begin
with Self do begin
GlobalNameSpace.BeginWrite;
try
CreateNew(AOwner);
if (ClassType <> FormClass) and not (csDesigning in ComponentState) then
begin
Include(FFormState, fsCreating);
try
if not InitInheritedComponent(Self, FormClass) then
raise EResNotFound.CreateFmt(SResNotFound, [ClassName]);
finally
Exclude(FFormState, fsCreating);
end;
if OldCreateOrder then DoCreate;
end;
finally
GlobalNameSpace.EndWrite;
end;
end;
end;
{ TTntScrollBox }
procedure TTntScrollBox.CreateWindowHandle(const Params: TCreateParams);
begin
CreateUnicodeHandle(Self, Params, '');
end;
procedure TTntScrollBox.DefineProperties(Filer: TFiler);
begin
inherited;
TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;
function TTntScrollBox.IsHintStored: Boolean;
begin
Result := TntControl_IsHintStored(Self);
end;
function TTntScrollBox.GetHint: WideString;
begin
Result := TntControl_GetHint(Self);
end;
procedure TTntScrollBox.SetHint(const Value: WideString);
begin
TntControl_SetHint(Self, Value);
end;
procedure TTntScrollBox.ActionChange(Sender: TObject; CheckDefaults: Boolean);
begin
TntControl_BeforeInherited_ActionChange(Self, Sender, CheckDefaults);
inherited;
end;
function TTntScrollBox.GetActionLinkClass: TControlActionLinkClass;
begin
Result := TntControl_GetActionLinkClass(Self, inherited GetActionLinkClass);
end;
procedure TTntScrollBox.WMSize(var Message: TWMSize);
begin
Inc(FWMSizeCallCount);
try
if FWMSizeCallCount < 32 then { Infinite recursion was encountered on Win 9x. }
inherited;
finally
Dec(FWMSizeCallCount);
end;
end;
{ TTntCustomFrame }
procedure TTntCustomFrame.CreateWindowHandle(const Params: TCreateParams);
begin
CreateUnicodeHandle(Self, Params, '');
end;
procedure TTntCustomFrame.DefineProperties(Filer: TFiler);
begin
inherited;
TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;
function TTntCustomFrame.IsHintStored: Boolean;
begin
Result := TntControl_IsHintStored(Self);
end;
function TTntCustomFrame.GetHint: WideString;
begin
Result := TntControl_GetHint(Self);
end;
procedure TTntCustomFrame.SetHint(const Value: WideString);
begin
TntControl_SetHint(Self, Value);
end;
procedure TTntCustomFrame.ActionChange(Sender: TObject; CheckDefaults: Boolean);
begin
TntControl_BeforeInherited_ActionChange(Self, Sender, CheckDefaults);
inherited;
end;
function TTntCustomFrame.GetActionLinkClass: TControlActionLinkClass;
begin
Result := TntControl_GetActionLinkClass(Self, inherited GetActionLinkClass);
end;
{ TTntForm }
constructor TTntForm{TNT-ALLOW TTntForm}.Create(AOwner: TComponent);
begin
ConstructBaseClassForm(Self, TTntForm{TNT-ALLOW TTntForm}, AOwner);
end;
procedure TTntForm{TNT-ALLOW TTntForm}.CreateWindowHandle(const Params: TCreateParams);
var
NewParams: TCreateParams;
WideWinClassName: WideString;
begin
if (not Win32PlatformIsUnicode) then
inherited
else if (FormStyle = fsMDIChild) and not (csDesigning in ComponentState) then
begin
if (Application.MainForm = nil) or
(Application.MainForm.ClientHandle = 0) then
raise EInvalidOperation.Create(SNoMDIForm);
RegisterUnicodeClass(Params, WideWinClassName);
DefWndProc := @DefMDIChildProcW;
WindowHandle := CreateMDIWindowW(PWideChar(WideWinClassName),
nil, Params.style, Params.X, Params.Y, Params.Width, Params.Height,
Application.MainForm.ClientHandle, hInstance, Longint(Params.Param));
if WindowHandle = 0 then
RaiseLastOSError;
SubClassUnicodeControl(Self, Params.Caption);
Include(FFormState, fsCreatedMDIChild);
end else
begin
NewParams := Params;
NewParams.ExStyle := NewParams.ExStyle and not WS_EX_LAYERED;
CreateUnicodeHandle(Self, NewParams, '');
Exclude(FFormState, fsCreatedMDIChild);
end;
{$IFDEF COMPILER_6_UP}
if AlphaBlend then begin
// toggle AlphaBlend to force update
AlphaBlend := False;
AlphaBlend := True;
end else if TransparentColor then begin
// toggle TransparentColor to force update
TransparentColor := False;
TransparentColor := True;
end;
{$ENDIF}
end;
procedure TTntForm{TNT-ALLOW TTntForm}.DestroyWindowHandle;
begin
if Win32PlatformIsUnicode then
UninitializeFlatSB(Handle); { Bug in VCL: Without this there might be a resource leak. }
inherited;
end;
procedure TTntForm{TNT-ALLOW TTntForm}.DefineProperties(Filer: TFiler);
begin
inherited;
TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;
procedure TTntForm{TNT-ALLOW TTntForm}.DefaultHandler(var Message);
begin
if (ClientHandle <> 0)
and (Win32PlatformIsUnicode) then
with TMessage(Message) do
if Msg = WM_SIZE then
Result := DefWindowProcW(Handle, Msg, wParam, lParam)
else
Result := DefFrameProcW(Handle, ClientHandle, Msg, wParam, lParam)
else
inherited DefaultHandler(Message)
end;
function TTntForm{TNT-ALLOW TTntForm}.IsCaptionStored: Boolean;
begin
Result := TntControl_IsCaptionStored(Self);
end;
function TTntForm{TNT-ALLOW TTntForm}.GetCaption: TWideCaption;
begin
Result := TntControl_GetText(Self)
end;
procedure TTntForm{TNT-ALLOW TTntForm}.SetCaption(const Value: TWideCaption);
begin
TntControl_SetText(Self, Value)
end;
function TTntForm{TNT-ALLOW TTntForm}.IsHintStored: Boolean;
begin
Result := TntControl_IsHintStored(Self);
end;
function TTntForm{TNT-ALLOW TTntForm}.GetHint: WideString;
begin
Result := TntControl_GetHint(Self)
end;
procedure TTntForm{TNT-ALLOW TTntForm}.SetHint(const Value: WideString);
begin
TntControl_SetHint(Self, Value);
end;
procedure TTntForm{TNT-ALLOW TTntForm}.ActionChange(Sender: TObject; CheckDefaults: Boolean);
begin
TntControl_BeforeInherited_ActionChange(Self, Sender, CheckDefaults);
inherited;
end;
function TTntForm{TNT-ALLOW TTntForm}.GetActionLinkClass: TControlActionLinkClass;
begin
Result := TntControl_GetActionLinkClass(Self, inherited GetActionLinkClass);
end;
procedure TTntForm{TNT-ALLOW TTntForm}.WMMenuSelect(var Message: TWMMenuSelect);
var
MenuItem: TMenuItem{TNT-ALLOW TMenuItem};
ID: Integer;
FindKind: TFindItemKind;
begin
if Menu <> nil then
with Message do
begin
MenuItem := nil;
if (MenuFlag <> $FFFF) or (IDItem <> 0) then
begin
FindKind := fkCommand;
ID := IDItem;
if MenuFlag and MF_POPUP <> 0 then
begin
FindKind := fkHandle;
ID := Integer(GetSubMenu(Menu, ID));
end;
MenuItem := Self.Menu.FindItem(ID, FindKind);
end;
if MenuItem <> nil then
TntApplication.Hint := WideGetLongHint(WideGetMenuItemHint(MenuItem))
else
TntApplication.Hint := '';
end;
end;
procedure TTntForm{TNT-ALLOW TTntForm}.UpdateActions;
begin
inherited;
TntApplication.DoIdle;
end;
procedure TTntForm{TNT-ALLOW TTntForm}.CMBiDiModeChanged(var Message: TMessage);
var
Loop: Integer;
begin
inherited;
for Loop := 0 to ComponentCount - 1 do
if Components[Loop] is TMenu then
FixMenuBiDiProblem(TMenu(Components[Loop]));
end;
procedure TTntForm{TNT-ALLOW TTntForm}.WMWindowPosChanging(var Message: TMessage);
begin
inherited;
// This message *sometimes* means that the Menu.BiDiMode changed.
FixMenuBiDiProblem(Menu);
end;
{ TTntApplication }
constructor TTntApplication.Create(AOwner: TComponent);
begin
inherited;
Application.HookMainWindow(WndProc);
FSettingChangeTime := GetTickCount;
TntSysUtils._SettingChangeTime := GetTickCount;
end;
destructor TTntApplication.Destroy;
begin
FreeAndNil(FTntAppIdleEventControl);
Application.UnhookMainWindow(WndProc);
inherited;
end;
function TTntApplication.GetHint: WideString;
begin
Result := GetSyncedWideString(FHint, Application.Hint)
end;
procedure TTntApplication.SetAnsiAppHint(const Value: AnsiString);
begin
Application.Hint := Value;
end;
procedure TTntApplication.SetHint(const Value: WideString);
begin
SetSyncedWideString(Value, FHint, Application.Hint, SetAnsiAppHint);
end;
function TTntApplication.GetExeName: WideString;
begin
Result := WideParamStr(0);
end;
function TTntApplication.GetTitle: WideString;
begin
if (Application.Handle <> 0) and Win32PlatformIsUnicode then begin
SetLength(Result, DefWindowProcW(Application.Handle, WM_GETTEXTLENGTH, 0, 0) + 1);
DefWindowProcW(Application.Handle, WM_GETTEXT, Length(Result), Integer(PWideChar(Result)));
SetLength(Result, Length(Result) - 1);
end else
Result := GetSyncedWideString(FTitle, Application.Title);
end;
procedure TTntApplication.SetAnsiApplicationTitle(const Value: AnsiString);
begin
Application.Title := Value;
end;
procedure TTntApplication.SetTitle(const Value: WideString);
begin
if (Application.Handle <> 0) and Win32PlatformIsUnicode then begin
if (GetTitle <> Value) or (FTitle <> '') then begin
DefWindowProcW(Application.Handle, WM_SETTEXT, 0, lParam(PWideChar(WideString(Value))));
FTitle := '';
end
end else
SetSyncedWideString(Value, FTitle, Application.Title, SetAnsiApplicationTitle);
end;
{$IFDEF COMPILER_5} // verified against VCL source in Delphi 5 and BCB 5
type
THackApplication = class(TComponent)
protected
FxxxxxxxxxHandle: HWnd;
FxxxxxxxxxBiDiMode: TBiDiMode;
FxxxxxxxxxBiDiKeyboard: AnsiString;
FxxxxxxxxxNonBiDiKeyboard: AnsiString;
FxxxxxxxxxObjectInstance: Pointer;
FxxxxxxxxxMainForm: TForm{TNT-ALLOW TForm};
FMouseControl: TControl;
end;
{$ENDIF}
{$IFDEF COMPILER_6} // verified against VCL source in Delphi 6 and BCB 6
type
THackApplication = class(TComponent)
protected
FxxxxxxxxxHandle: HWnd;
FxxxxxxxxxBiDiMode: TBiDiMode;
FxxxxxxxxxBiDiKeyboard: AnsiString;
FxxxxxxxxxNonBiDiKeyboard: AnsiString;
FxxxxxxxxxObjectInstance: Pointer;
FxxxxxxxxxMainForm: TForm{TNT-ALLOW TForm};
FMouseControl: TControl;
end;
{$ENDIF}
{$IFDEF DELPHI_7}
type
THackApplication = class(TComponent)
protected
FxxxxxxxxxHandle: HWnd;
FxxxxxxxxxBiDiMode: TBiDiMode;
FxxxxxxxxxBiDiKeyboard: AnsiString;
FxxxxxxxxxNonBiDiKeyboard: AnsiString;
FxxxxxxxxxObjectInstance: Pointer;
FxxxxxxxxxMainForm: TForm{TNT-ALLOW TForm};
FMouseControl: TControl;
end;
{$ENDIF}
{$IFDEF DELPHI_9}
type
THackApplication = class(TComponent)
protected
FxxxxxxxxxHandle: HWnd;
FxxxxxxxxxBiDiMode: TBiDiMode;
FxxxxxxxxxBiDiKeyboard: AnsiString;
FxxxxxxxxxNonBiDiKeyboard: AnsiString;
FxxxxxxxxxObjectInstance: Pointer;
FxxxxxxxxxMainForm: TForm{TNT-ALLOW TForm};
FMouseControl: TControl;
end;
{$ENDIF}
procedure TTntApplication.DoIdle;
var
MouseControl: TControl;
begin
MouseControl := THackApplication(Application).FMouseControl;
Hint := WideGetLongHint(WideGetHint(MouseControl));
end;
function TTntApplication.IsDlgMsg(var Msg: TMsg): Boolean;
begin
Result := (Application.DialogHandle <> 0)
and (IsDialogMessage(Application.DialogHandle, Msg))
end;
type
TTntAppIdleEventControl = class(TControl)
protected
procedure OnIdle(Sender: TObject);
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
end;
constructor TTntAppIdleEventControl.Create(AOwner: TComponent);
begin
inherited;
ParentFont := False; { This allows Parent (Application) to be in another module. }
Parent := Application.MainForm;
Visible := True;
Action := TTntAction.Create(Self);
Action.OnExecute := OnIdle;
Action.OnUpdate := OnIdle;
TntApplication.FTntAppIdleEventControl := Self;
end;
destructor TTntAppIdleEventControl.Destroy;
begin
if TntApplication <> nil then
TntApplication.FTntAppIdleEventControl := nil;
inherited;
end;
procedure TTntAppIdleEventControl.OnIdle(Sender: TObject);
begin
TntApplication.DoIdle;
end;
function TTntApplication.ProcessMessage(var Msg: TMsg): Boolean;
var
Handled: Boolean;
begin
Result := False;
// Check Main Form
if (not FMainFormChecked) and (Application.MainForm <> nil) then begin
if not (Application.MainForm is TTntForm{TNT-ALLOW TTntForm}) then begin
// This control will help ensure that DoIdle is called
TTntAppIdleEventControl.Create(Application.MainForm);
end;
FMainFormChecked := True;
end;
// Check for Unicode char messages
if (Msg.message = WM_CHAR)
and (Msg.wParam > Integer(High(AnsiChar)))
and IsWindowUnicode(Msg.hwnd)
and ((not IsDlgMsg(Msg)) or IsWindowUnicode(Application.DialogHandle))
then begin
Result := True;
// more than 8-bit WM_CHAR destined for Unicode window
Handled := False;
if Assigned(Application.OnMessage) then
Application.OnMessage(Msg, Handled);
Application.CancelHint;
// dispatch msg if not a dialog message
if (not Handled) and (not IsDlgMsg(Msg)) then
DispatchMessageW(Msg);
end;
end;
function TTntApplication.WndProc(var Message: TMessage): Boolean;
var
BasicAction: TBasicAction;
begin
Result := False; { not handled }
if (Message.Msg = WM_SETTINGCHANGE) then begin
FSettingChangeTime := GetTickCount;
TntSysUtils._SettingChangeTime := FSettingChangeTime;
end;
if (Message.Msg = WM_CREATE)
and (FTitle <> '') then begin
SetTitle(FTitle);
FTitle := '';
end;
if (Message.Msg = CM_ACTIONEXECUTE) then begin
BasicAction := TBasicAction(Message.LParam);
if (BasicAction.ClassType = THintAction{TNT-ALLOW THintAction})
and (THintAction{TNT-ALLOW THintAction}(BasicAction).Hint = AnsiString(Hint))
then begin
Result := True;
Message.Result := 1;
with TTntHintAction.Create(Self) do
begin
Hint := Self.Hint;
try
Execute;
finally
Free;
end;
end;
end;
end;
end;
//===========================================================================
// The NT GetMessage Hook is needed to support entering Unicode
// characters directly from the keyboard (bypassing the IME).
// Special thanks go to Francisco Leong for developing this solution.
//
// Example:
// 1. Install "Turkic" language support.
// 2. Add "Azeri (Latin)" as an input locale.
// 3. In an EDIT, enter Shift+I. (You should see a capital "I" with dot.)
// 4. In an EDIT, enter single quote (US Keyboard). (You should see an upturned "e".)
//
var
ManualPeekMessageWithRemove: Integer = 0;
procedure EnableManualPeekMessageWithRemove;
begin
Inc(ManualPeekMessageWithRemove);
end;
procedure DisableManualPeekMessageWithRemove;
begin
if (ManualPeekMessageWithRemove > 0) then
Dec(ManualPeekMessageWithRemove);
end;
var
NTGetMessageHook: HHOOK;
function GetMessageForNT(Code: Integer; wParam: Integer; lParam: Integer): LRESULT; stdcall;
var
ThisMsg: PMSG;
begin
if (Code >= 0)
and (wParam = PM_REMOVE)
and (ManualPeekMessageWithRemove = 0) then
begin
ThisMsg := PMSG(lParam);
if (TntApplication <> nil)
and TntApplication.ProcessMessage(ThisMsg^) then
ThisMsg.message := WM_NULL; { clear for further processing }
end;
Result := CallNextHookEx(NTGetMessageHook, Code, wParam, lParam);
end;
procedure CreateGetMessageHookForNT;
begin
Assert(Win32Platform = VER_PLATFORM_WIN32_NT);
NTGetMessageHook := SetWindowsHookExW(WH_GETMESSAGE, GetMessageForNT, 0, GetCurrentThreadID);
if NTGetMessageHook = 0 then
RaiseLastOSError;
end;
function UnhookIsKnownToFail: Boolean;
begin
Result := (Pos('W3WP.', Tnt_WideUpperCase(WideExtractFileName(WideParamStr(0)))) = 1) // for IIS 6.0
or (Pos('DLLHOST.', Tnt_WideUpperCase(WideExtractFileName(WideParamStr(0)))) = 1) // for IIS 5.0
end;
//---------------------------------------------------------------------------------------------
// Tnt Environment Setup
//---------------------------------------------------------------------------------------------
procedure InitTntEnvironment;
function GetDefaultFont: WideString;
function RunningUnderIDE: Boolean;
begin
Result := ModuleIsPackage and
( WideSameText(WideExtractFileName(WideGetModuleFileName(0)), 'delphi32.exe')
or WideSameText(WideExtractFileName(WideGetModuleFileName(0)), 'bcb.exe'));
end;
function GetProfileStr(const Section, Key, Default: AnsiString; MaxLen: Integer): AnsiString;
var
Len: Integer;
begin
SetLength(Result, MaxLen + 1);
Len := GetProfileString(PAnsiChar(Section), PAnsiChar(Key), PAnsiChar(Default),
PAnsiChar(Result), Length(Result));
SetLength(Result, Len);
end;
procedure SetProfileStr(const Section, Key, Value: AnsiString);
var
DummyResult: Cardinal;
begin
try
Win32Check(WriteProfileString(PAnsiChar(Section), PAnsiChar(Key), PAnsiChar(Value)));
if Win32Platform = VER_PLATFORM_WIN32_WINDOWS then
WriteProfileString(nil, nil, nil); {this flushes the WIN.INI cache}
SendMessageTimeout(HWND_BROADCAST, WM_SETTINGCHANGE, 0, Integer(PAnsiChar(Section)),
SMTO_NORMAL, 250, DummyResult);
except
on E: Exception do begin
E.Message := 'Couldn''t create font substitutes.' + CRLF + E.Message;
Application.ShowException(E);
end;
end;
end;
var
ShellDlgFontName_1: WideString;
ShellDlgFontName_2: WideString;
begin
ShellDlgFontName_1 := GetProfileStr('FontSubstitutes', 'MS Shell Dlg', '', LF_FACESIZE);
if ShellDlgFontName_1 = '' then begin
ShellDlgFontName_1 := 'MS Sans Serif';
SetProfileStr('FontSubstitutes', 'MS Shell Dlg', ShellDlgFontName_1);
end;
ShellDlgFontName_2 := GetProfileStr('FontSubstitutes', 'MS Shell Dlg 2', '', LF_FACESIZE);
if ShellDlgFontName_2 = '' then begin
if Screen.Fonts.IndexOf('Tahoma') <> -1 then
ShellDlgFontName_2 := 'Tahoma'
else
ShellDlgFontName_2 := ShellDlgFontName_1;
SetProfileStr('FontSubstitutes', 'MS Shell Dlg 2', ShellDlgFontName_2);
end;
if RunningUnderIDE then begin
Result := 'MS Shell Dlg 2' {Delphi is running}
end else
Result := ShellDlgFontName_2;
end;
begin
// Tnt Environment Setup
InstallTntSystemUpdates;
DefFontData.Name := GetDefaultFont;
Forms.HintWindowClass := TntControls.TTntHintWindow;
end;
initialization
TntApplication := TTntApplication.Create(nil);
if Win32Platform = VER_PLATFORM_WIN32_NT then
CreateGetMessageHookForNT;
finalization
if NTGetMessageHook <> 0 then begin
if UnhookIsKnownToFail then
UnhookWindowsHookEx(NTGetMessageHook) // no Win32Check!
else
Win32Check(UnhookWindowsHookEx(NTGetMessageHook));
end;
FreeAndNil(TntApplication);
end.
|