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
|
unit VirtualUtilities;
// Version 1.1.17
// The contents of this file are subject to the Mozilla Public License
// Version 1.1 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the
// License at
//
// http://www.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an
// " AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or
// implied. See the License for the specific language governing rights
// and limitations under the License.
//
//
// Alternatively, the contents of this file may be used under
// the terms of the GNU General Public License Version 2 or later
// (the "GPL"), in which case the provisions of the GPL are applicable
// instead of those above. If you wish to allow use of your version of
// this file only under the terms of the GPL and not to allow others to
// use your version of this file under the MPL, indicate your decision
// by deleting the provisions above and replace them with the notice and
// other provisions required by the GPL. If you do not delete the provisions
// above, a recipient may use your version of this file under either the
// MPL or the GPL.
//
// The initial developer of this code is Jim Kueneman <jimdk@mindspring.com>
//
//----------------------------------------------------------------------------
interface
{$include Compilers.inc}
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls,
Forms,
Menus,
Math;
// Helpers to create a callback function out of a object method
function CreateStub(ObjectPtr: Pointer; MethodPtr: Pointer): Pointer;
procedure DisposeStub(Stub: Pointer);
//
function AbsRect(Rect: TRect): TRect;
function DiffRectHorz(Rect1, Rect2: TRect): TRect;
function DiffRectVert(Rect1, Rect2: TRect): TRect;
function DragDetectPlus(Handle: HWND; Pt: TPoint): Boolean;
procedure FreeMemAndNil(var P: Pointer);
function IsUnicode: Boolean; // OS supports Unicode functions (basiclly means IsWinNT or XP)
function IsWin2000: Boolean;
function IsWin95_SR1: Boolean;
function IsWinME: Boolean;
function IsWinNT4: Boolean;
function IsWinXP: Boolean;
{$EXTERNALSYM MAKE_HRESULT}
function MAKE_HRESULT(sev, fac: LongWord; code: Word): HResult;
function WinMsgBox(const Text: WideString; const Caption: WideString; uType: integer): integer;
{$IFNDEF DELPHI_5_UP}
procedure FreeAndNil(var Obj);
procedure ClearMenuItems(Menu: TMenu);
{$ENDIF DELPHI_5_UP}
implementation
// Helpers to create a callback function out of a object method
{ ----------------------------------------------------------------------------- }
{ This is a piece of magic by Jeroen Mineur. Allows a class method to be used }
{ as a callback. Create a stub using CreateStub with the instance of the object }
{ the callback should call as the first parameter and the method as the second }
{ parameter, ie @TForm1.MyCallback or declare a type of object for the callback }
{ method and then use a variable of that type and set the variable to the }
{ method and pass it: }
{ }
{ DON'T FORGET TO DEFINE THE FUNCTION METHOD AS "STDCALL" FOR A WINDOWS }
{ CALLBACK. ALL KINDS OF WEIRD THINGS CAN HAPPEN IF YOU DON'T }
{ }
{ type }
{ TEnumWindowsFunc = function (AHandle: hWnd; Param: lParam): BOOL of object; stdcall; }
{ }
{ TForm1 = class(TForm) }
{ private }
{ function EnumWindowsProc(AHandle: hWnd; Param: lParam): BOOL; stdcall; }
{ end; }
{ }
{ var }
{ MyFunc: TEnumWindowsFunc; }
{ Stub: pointer; }
{ begin }
{ MyFunct := EnumWindowsProc; }
{ Stub := CreateStub(Self, MyFunct); }
{ .... }
{ or }
{ }
{ var }
{ Stub: pointer; }
{ begin }
{ Stub := CreateStub(Self, @TForm1.EnumWindowsProc); }
{ .... }
{ Now Stub can be passed as the callback pointer to any windows API }
{ Don't forget to call Dispose Stub when not needed }
{ ----------------------------------------------------------------------------- }
{$IFNDEF T2H}
const
AsmPopEDX = $5A;
AsmMovEAX = $B8;
AsmPushEAX = $50;
AsmPushEDX = $52;
AsmJmpShort = $E9;
type
TStub = packed record
PopEDX: Byte;
MovEAX: Byte;
SelfPointer: Pointer;
PushEAX: Byte;
PushEDX: Byte;
JmpShort: Byte;
Displacement: Integer;
end;
{ ----------------------------------------------------------------------------- }
function CreateStub(ObjectPtr: Pointer; MethodPtr: Pointer): Pointer;
var
Stub: ^TStub;
begin
// Allocate memory for the stub
// 1/10/04 Support for 64 bit, executable code must be in virtual space
// currently New/Dispose use Virtual space but a replacement memory manager
// may not
{$IFDEF VIRTUALMEMSTUB}
Stub:=VirtualAlloc(nil, SizeOf(TStub), MEM_COMMIT, PAGE_EXECUTE_READWRITE);
{$ELSE}
New(Stub);
{$ENDIF}
// Pop the return address off the stack
Stub^.PopEDX := AsmPopEDX;
// Push the object pointer on the stack
Stub^.MovEAX := AsmMovEAX;
Stub^.SelfPointer := ObjectPtr;
Stub^.PushEAX := AsmPushEAX;
// Push the return address back on the stack
Stub^.PushEDX := AsmPushEDX;
// Jump to the 'real' procedure, the method.
Stub^.JmpShort := AsmJmpShort;
Stub^.Displacement := (Integer(MethodPtr) - Integer(@(Stub^.JmpShort))) -
(SizeOf(Stub^.JmpShort) + SizeOf(Stub^.Displacement));
// Return a pointer to the stub
Result := Stub;
end;
{ ----------------------------------------------------------------------------- }
{ ----------------------------------------------------------------------------- }
procedure DisposeStub(Stub: Pointer);
begin
// 1/10/04 Support for 64 bit, executable code must be in virtual space
// currently New/Dispose use Virtual space but a replacement memory manager
// may not
{$IFDEF VIRTUALMEMSTUB}
VirtualFree(Stub, SizeOf(TStub),MEM_DECOMMIT);
{$ELSE}
Dispose(Stub);
{$ENDIF}
end;
{ ----------------------------------------------------------------------------- }
{$ENDIF T2H}
// MAKE_HRESULT(sev,fac,code)
// ((HRESULT) (((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))) )
function MAKE_HRESULT(sev, fac: LongWord; code: Word): HResult;
begin
Result := LongInt( (sev shl 31) or (fac shl 16) or code)
end;
{$IFNDEF DELPHI_5_UP}
procedure FreeAndNil(var Obj);
var
Temp: TObject;
begin
Temp := TObject(Obj);
Pointer(Obj) := nil;
Temp.Free;
end;
procedure ClearMenuItems(Menu: TMenu);
var
I: Integer;
begin
for I := Menu.Items.Count - 1 downto 0 do
Menu.Items[I].Free;
end;
{$ENDIF DELPHI_5_UP}
function DiffRectHorz(Rect1, Rect2: TRect): TRect;
// Returns the "difference" rectangle of the passed rects in the Horz direction.
// Assumes that one corner is common between the two rects
begin
Rect1 := ABSRect(Rect1);
Rect2 := ABSRect(Rect2);
// Make sure we contain every thing horizontally
Result.Left := Min(Rect1.Left, Rect2.Left);
Result.Right := Max(Rect1.Right, Rect1.Right);
// Now find the difference rect height
if Rect1.Top = Rect2.Top then
begin
// The tops are equal so it must be the bottom that contains the difference
Result.Bottom := Max(Rect1.Bottom, Rect2.Bottom);
Result.Top := Min(Rect1.Bottom, Rect2.Bottom);
end else
begin
// The bottoms are equal so it must be the tops that contains the difference
Result.Bottom := Max(Rect1.Top, Rect2.Top);
Result.Top := Min(Rect1.Top, Rect2.Top);
end
end;
function DiffRectVert(Rect1, Rect2: TRect): TRect;
// Returns the "difference" rectangle of the passed rects in the Vert direction.
// Assumes that one corner is common between the two rects
begin
Rect1 := ABSRect(Rect1);
Rect2 := ABSRect(Rect2);
// Make sure we contain every thing vertically
Result.Top := Min(Rect1.Top, Rect2.Bottom);
Result.Bottom := Max(Rect1.Top, Rect1.Bottom);
// Now find the difference rect width
if Rect1.Left = Rect2.Left then
begin
// The tops are equal so it must be the bottom that contains the difference
Result.Right := Max(Rect1.Right, Rect2.Right);
Result.Left := Min(Rect1.Right, Rect2.Right);
end else
begin
// The bottoms are equal so it must be the tops that contains the difference
Result.Right := Max(Rect1.Left, Rect2.Left);
Result.Left := Min(Rect1.Left, Rect2.Left);
end
end;
function AbsRect(Rect: TRect): TRect;
// Makes sure a rectangle's left is less than its right and its top is less than its bottom
var
Temp: integer;
begin
Result := Rect;
if Result.Right < Result.Left then
begin
Temp := Result.Right;
Result.Right := Rect.Left;
Result.Left := Temp;
end;
if Rect.Bottom < Rect.Top then
begin
Temp := Result.Top;
Result.Top := Rect.Bottom;
Result.Bottom := Temp;
end
end;
function DragDetectPlus(Handle: HWND; Pt: TPoint): Boolean;
// Replacement for DragDetect API which is buggy.
// Pt is in Client Coords of the Handle window
var
DragRect: TRect;
Msg: TMsg;
TestPt: TPoint;
HadCapture, Done: Boolean;
begin
Result := False;
Done := False;
HadCapture := GetCapture = Handle;
if (not ClientToScreen(Handle, Pt)) then
exit;
DragRect.TopLeft := Pt;
DragRect.BottomRight := Pt;
InflateRect(DragRect, GetSystemMetrics(SM_CXDRAG),
GetSystemMetrics(SM_CYDRAG));
SetCapture(Handle);
try
while (not Result) and (not Done) do
if (PeekMessage(Msg, Handle, 0,0, PM_REMOVE)) then
begin
case (Msg.message) of
WM_MOUSEMOVE:
begin
TestPt := Msg.Pt;
// Not sure why this works. The Message point "should" be in client
// coordinates but seem to be screen
// Windows.ClientToScreen(Msg.hWnd, TestPt);
Result := not(PtInRect(DragRect, TestPt));
end;
WM_RBUTTONUP,
WM_LBUTTONUP,
WM_CANCELMODE,
WM_QUIT,
WM_LBUTTONDBLCLK:
begin
// Let the window get these messages after we have ended our
// local message loop
PostMessage(Msg.hWnd, Msg.message, Msg.wParam, Msg.lParam);
Done := True;
end;
else
TranslateMessage(Msg);
DispatchMessage(Msg)
end
end else
Sleep(0);
finally
ReleaseCapture;
if HadCapture then
Mouse.Capture := Handle;
end;
end;
procedure FreeMemAndNil(var P: Pointer);
{ Frees the memeory allocated with GetMem and nils the pointer }
var
Temp: Pointer;
begin
Temp := P;
P := nil;
FreeMem(Temp);
end;
function IsUnicode: Boolean;
begin
Result := Win32Platform = VER_PLATFORM_WIN32_NT
end;
function IsWin2000: Boolean;
begin
Result := False;
if Win32Platform = VER_PLATFORM_WIN32_NT then
Result := LoWord(Win32MajorVersion) >= 5
end;
function IsWin95_SR1: Boolean;
begin
Result := False;
if Win32Platform = VER_PLATFORM_WIN32_WINDOWS then
Result := ((Win32MajorVersion = 4) and
(Win32MinorVersion = 0) and
(LoWord(Win32BuildNumber) <= 1080))
end;
function IsWinME: Boolean;
begin
Result := False;
if Win32Platform = VER_PLATFORM_WIN32_WINDOWS then
Result := Win32BuildNumber >= $045A0BB8
end;
function IsWinNT4: Boolean;
begin
Result := False;
if Win32Platform = VER_PLATFORM_WIN32_NT then
Result := Win32MajorVersion < 5
end;
function IsWinXP: Boolean;
begin
Result := (Win32Platform = VER_PLATFORM_WIN32_NT) and (Win32MajorVersion = 5)
and (Win32MinorVersion > 0)
end;
function WinMsgBox(const Text: WideString; const Caption: WideString; uType: integer): integer;
var
TextA, CaptionA: string;
begin
if IsUnicode then
Result := MessageBoxW(Application.Handle, PWideChar( Text), PWideChar( Caption), uType)
else begin
TextA := Text;
CaptionA := Caption;
Result := MessageBoxA(Application.Handle, PChar( TextA), PChar( CaptionA), uType)
end
end;
end.
|