⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rm_jvinterpreter_windows.pas

📁 这是一个功能强大
💻 PAS
字号:
{-----------------------------------------------------------------------------
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/MPL-1.1.html

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.

The Original Code is: rm_JvInterpreter_Windows.PAS, released on 2002-07-04.

The Initial Developers of the Original Code are: Andrei Prygounkov <a dott prygounkov att gmx dott de>
Copyright (c) 1999, 2002 Andrei Prygounkov
All Rights Reserved.

Contributor(s):

You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
located at http://jvcl.sourceforge.net

Description : adapter unit - converts rm_JvInterpreter calls to delphi calls

Known Issues:
-----------------------------------------------------------------------------}
// $Id: rm_JvInterpreter_Windows.pas 9258 2005-02-17 10:21:22Z marquardt $

unit rm_JvInterpreter_Windows;

{$I rm_jvcl.inc}

interface

uses
  {$IFDEF UNITVERSIONING}
  rm_JclUnitVersioning,
  {$ENDIF UNITVERSIONING}
  Windows,
  rm_JvInterpreter;

function Point2Var(const Point: TPoint): Variant;
function Var2Point(const Point: Variant): TPoint;
function Rect2Var(const Rect: TRect): Variant;
function Var2Rect(const Rect: Variant): TRect;

procedure RegisterJvInterpreterAdapter(JvInterpreterAdapter: TJvInterpreterAdapter);

{$IFDEF UNITVERSIONING}
const
  UnitVersioning: TUnitVersionInfo = (
    RCSfile: '$RCSfile$';
    Revision: '$Revision: 9258 $';
    Date: '$Date: 2005-02-17 02:21:22 -0800 (Thu, 17 Feb 2005) $';
    LogPath: 'JVCL\run'
  );
{$ENDIF UNITVERSIONING}

implementation

uses
  Classes;

{ TPoint }

function Point2Var(const Point: TPoint): Variant;
var
  Rec: ^TPoint;
begin
  New(Rec);
  Rec^ := Point;
  Result := R2V('TPoint', Rec);
end;

function Var2Point(const Point: Variant): TPoint;
begin
  Result := TPoint(V2R(Point)^);
end;

procedure JvInterpreter_Point(var Value: Variant; Args: TJvInterpreterArgs);
begin
  JvInterpreterVarCopy(Value, Point2Var(Point(Args.Values[0], Args.Values[1])));
end;

{ TRect }

function Rect2Var(const Rect: TRect): Variant;
var
  Rec: ^TRect;
begin
  New(Rec);
  Rec^ := Rect;
  Result := R2V('TRect', Rec);
end;

function Var2Rect(const Rect: Variant): TRect;
begin
  Result := TRect(V2R(Rect)^);
end;

procedure JvInterpreter_Rect(var Value: Variant; Args: TJvInterpreterArgs);
begin
  JvInterpreterVarCopy(Value, Rect2Var(Rect(Args.Values[0], Args.Values[1], Args.Values[2], Args.Values[3])));
end;

procedure JvInterpreter_Bounds(var Value: Variant; Args: TJvInterpreterArgs);
begin
  JvInterpreterVarCopy(Value, Rect2Var(Bounds(Args.Values[0], Args.Values[1], Args.Values[2], Args.Values[3])));
end;

{ Read Field TopLeft: Integer; }

procedure TRect_Read_TopLeft(var Value: Variant; Args: TJvInterpreterArgs);
begin
  Value := Point2Var(TRect(P2R(Args.Obj)^).TopLeft);
end;

{ Write Field TopLeft: Integer; }

procedure TRect_Write_TopLeft(const Value: Variant; Args: TJvInterpreterArgs);
begin
  TRect(P2R(Args.Obj)^).TopLeft := Var2Point(Value);
end;

{ Read Field BottomRight: Integer; }

procedure TRect_Read_BottomRight(var Value: Variant; Args: TJvInterpreterArgs);
begin
  Value := Point2Var(TRect(P2R(Args.Obj)^).BottomRight);
end;

{ Write Field Right: Integer; }

procedure TRect_Write_BottomRight(const Value: Variant; Args: TJvInterpreterArgs);
begin
  TRect(P2R(Args.Obj)^).BottomRight := Var2Point(Value);
end;

procedure RegisterJvInterpreterAdapter(JvInterpreterAdapter: TJvInterpreterAdapter);
const
  cWindows = 'Windows';
begin
  with JvInterpreterAdapter do
  begin
    AddExtUnit(cWindows);
    { TPoint }
    AddRec(cWindows, 'TPoint', SizeOf(TPoint), [RFD('X', 0, varInteger), RFD('Y', 4, varInteger)], nil, nil, nil);
    AddFunction(cWindows, 'Point', JvInterpreter_Point, 2, [varInteger, varInteger], varRecord);
    { TRect }
    AddRec(cWindows, 'TRect', SizeOf(TRect), [RFD('Left', 0, varInteger), RFD('Top', 4, varInteger), RFD('Right', 8,
      varInteger), RFD('Bottom', 12, varInteger)], nil, nil, nil);
    AddFunction(cWindows, 'Rect', JvInterpreter_Rect, 4, [varInteger, varInteger, varInteger, varInteger], varRecord);
    AddFunction(cWindows, 'Bounds', JvInterpreter_Bounds, 4, [varInteger, varInteger, varInteger, varInteger], varRecord);
    AddRecGet(cWindows, 'TRect', 'TopLeft', TRect_Read_TopLeft, 0, [varEmpty], varRecord);
    AddRecSet(cWindows, 'TRect', 'TopLeft', TRect_Write_TopLeft, 0, [varEmpty]);
    AddRecGet(cWindows, 'TRect', 'BottomRight', TRect_Read_BottomRight, 0, [varEmpty], varRecord);
    AddRecSet(cWindows, 'TRect', 'BottomRight', TRect_Write_BottomRight, 0, [varEmpty]);

    AddExtFun(cWindows, 'MessageBox', 0, user32, 'MessageBoxA', -1, 4, [varInteger, varString, varString, varInteger],
      varInteger);
    { MessageBox(, nil) Flags }
    AddConst(cWindows, 'MB_OK', MB_OK);
    AddConst(cWindows, 'MB_OKCANCEL', MB_OKCANCEL);
    AddConst(cWindows, 'MB_ABORTRETRYIGNORE', MB_ABORTRETRYIGNORE);
    AddConst(cWindows, 'MB_YESNOCANCEL', MB_YESNOCANCEL);
    AddConst(cWindows, 'MB_YESNO', MB_YESNO);
    AddConst(cWindows, 'MB_RETRYCANCEL', MB_RETRYCANCEL);
    AddConst(cWindows, 'MB_ICONHAND', MB_ICONHAND);
    AddConst(cWindows, 'MB_ICONQUESTION', MB_ICONQUESTION);
    AddConst(cWindows, 'MB_ICONEXCLAMATION', MB_ICONEXCLAMATION);
    AddConst(cWindows, 'MB_ICONASTERISK', MB_ICONASTERISK);
    AddConst(cWindows, 'MB_USERICON', MB_USERICON);
    AddConst(cWindows, 'MB_ICONWARNING', MB_ICONWARNING);
    AddConst(cWindows, 'MB_ICONERROR', MB_ICONERROR);
    AddConst(cWindows, 'MB_ICONINFORMATION', MB_ICONINFORMATION);
    AddConst(cWindows, 'MB_ICONSTOP', MB_ICONSTOP);
    AddConst(cWindows, 'MB_DEFBUTTON1', MB_DEFBUTTON1);
    AddConst(cWindows, 'MB_DEFBUTTON2', MB_DEFBUTTON2);
    AddConst(cWindows, 'MB_DEFBUTTON3', MB_DEFBUTTON3);
    AddConst(cWindows, 'MB_DEFBUTTON4', MB_DEFBUTTON4);
    AddConst(cWindows, 'MB_APPLMODAL', MB_APPLMODAL);
    AddConst(cWindows, 'MB_SYSTEMMODAL', MB_SYSTEMMODAL);
    AddConst(cWindows, 'MB_TASKMODAL', MB_TASKMODAL);
    AddConst(cWindows, 'MB_HELP', MB_HELP);
    AddConst(cWindows, 'MB_NOFOCUS', MB_NOFOCUS);
    AddConst(cWindows, 'MB_SETFOREGROUND', MB_SETFOREGROUND);
    AddConst(cWindows, 'MB_DEFAULT_DESKTOP_ONLY', MB_DEFAULT_DESKTOP_ONLY);
    AddConst(cWindows, 'MB_TOPMOST', MB_TOPMOST);
    AddConst(cWindows, 'MB_RIGHT', MB_RIGHT);
    AddConst(cWindows, 'MB_RTLREADING', MB_RTLREADING);
    AddConst(cWindows, 'MB_SERVICE_NOTIFICATION', MB_SERVICE_NOTIFICATION);
    AddConst(cWindows, 'MB_SERVICE_NOTIFICATION_NT3X', MB_SERVICE_NOTIFICATION_NT3X);
    AddConst(cWindows, 'MB_TYPEMASK', MB_TYPEMASK);
    AddConst(cWindows, 'MB_ICONMASK', MB_ICONMASK);
    AddConst(cWindows, 'MB_DEFMASK', MB_DEFMASK);
    AddConst(cWindows, 'MB_MODEMASK', MB_MODEMASK);
    AddConst(cWindows, 'MB_MISCMASK', MB_MISCMASK);

    { Virtual Keys, Standard Set }
    AddConst(cWindows, 'VK_LBUTTON', VK_LBUTTON);
    AddConst(cWindows, 'VK_RBUTTON', VK_RBUTTON);
    AddConst(cWindows, 'VK_CANCEL', VK_CANCEL);
    AddConst(cWindows, 'VK_MBUTTON', VK_MBUTTON);
    AddConst(cWindows, 'VK_BACK', VK_BACK);
    AddConst(cWindows, 'VK_TAB', VK_TAB);
    AddConst(cWindows, 'VK_CLEAR', VK_CLEAR);
    AddConst(cWindows, 'VK_RETURN', VK_RETURN);
    AddConst(cWindows, 'VK_SHIFT', VK_SHIFT);
    AddConst(cWindows, 'VK_CONTROL', VK_CONTROL);
    AddConst(cWindows, 'VK_MENU', VK_MENU);
    AddConst(cWindows, 'VK_PAUSE', VK_PAUSE);
    AddConst(cWindows, 'VK_CAPITAL', VK_CAPITAL);
    AddConst(cWindows, 'VK_KANA', VK_KANA);
    AddConst(cWindows, 'VK_HANGUL', VK_HANGUL);
    AddConst(cWindows, 'VK_JUNJA', VK_JUNJA);
    AddConst(cWindows, 'VK_FINAL', VK_FINAL);
    AddConst(cWindows, 'VK_HANJA', VK_HANJA);
    AddConst(cWindows, 'VK_KANJI', VK_KANJI);
    AddConst(cWindows, 'VK_CONVERT', VK_CONVERT);
    AddConst(cWindows, 'VK_NONCONVERT', VK_NONCONVERT);
    AddConst(cWindows, 'VK_ACCEPT', VK_ACCEPT);
    AddConst(cWindows, 'VK_MODECHANGE', VK_MODECHANGE);
    AddConst(cWindows, 'VK_ESCAPE', VK_ESCAPE);
    AddConst(cWindows, 'VK_SPACE', VK_SPACE);
    AddConst(cWindows, 'VK_PRIOR', VK_PRIOR);
    AddConst(cWindows, 'VK_NEXT', VK_NEXT);
    AddConst(cWindows, 'VK_END', VK_END);
    AddConst(cWindows, 'VK_HOME', VK_HOME);
    AddConst(cWindows, 'VK_LEFT', VK_LEFT);
    AddConst(cWindows, 'VK_UP', VK_UP);
    AddConst(cWindows, 'VK_RIGHT', VK_RIGHT);
    AddConst(cWindows, 'VK_DOWN', VK_DOWN);
    AddConst(cWindows, 'VK_SELECT', VK_SELECT);
    AddConst(cWindows, 'VK_PRINT', VK_PRINT);
    AddConst(cWindows, 'VK_EXECUTE', VK_EXECUTE);
    AddConst(cWindows, 'VK_SNAPSHOT', VK_SNAPSHOT);
    AddConst(cWindows, 'VK_INSERT', VK_INSERT);
    AddConst(cWindows, 'VK_DELETE', VK_DELETE);
    AddConst(cWindows, 'VK_HELP', VK_HELP);
    AddConst(cWindows, 'VK_LWIN', VK_LWIN);
    AddConst(cWindows, 'VK_RWIN', VK_RWIN);
    AddConst(cWindows, 'VK_APPS', VK_APPS);
    AddConst(cWindows, 'VK_NUMPAD0', VK_NUMPAD0);
    AddConst(cWindows, 'VK_NUMPAD1', VK_NUMPAD1);
    AddConst(cWindows, 'VK_NUMPAD2', VK_NUMPAD2);
    AddConst(cWindows, 'VK_NUMPAD3', VK_NUMPAD3);
    AddConst(cWindows, 'VK_NUMPAD4', VK_NUMPAD4);
    AddConst(cWindows, 'VK_NUMPAD5', VK_NUMPAD5);
    AddConst(cWindows, 'VK_NUMPAD6', VK_NUMPAD6);
    AddConst(cWindows, 'VK_NUMPAD7', VK_NUMPAD7);
    AddConst(cWindows, 'VK_NUMPAD8', VK_NUMPAD8);
    AddConst(cWindows, 'VK_NUMPAD9', VK_NUMPAD9);
    AddConst(cWindows, 'VK_MULTIPLY', VK_MULTIPLY);
    AddConst(cWindows, 'VK_ADD', VK_ADD);
    AddConst(cWindows, 'VK_SEPARATOR', VK_SEPARATOR);
    AddConst(cWindows, 'VK_SUBTRACT', VK_SUBTRACT);
    AddConst(cWindows, 'VK_DECIMAL', VK_DECIMAL);
    AddConst(cWindows, 'VK_DIVIDE', VK_DIVIDE);
    AddConst(cWindows, 'VK_F1', VK_F1);
    AddConst(cWindows, 'VK_F2', VK_F2);
    AddConst(cWindows, 'VK_F3', VK_F3);
    AddConst(cWindows, 'VK_F4', VK_F4);
    AddConst(cWindows, 'VK_F5', VK_F5);
    AddConst(cWindows, 'VK_F6', VK_F6);
    AddConst(cWindows, 'VK_F7', VK_F7);
    AddConst(cWindows, 'VK_F8', VK_F8);
    AddConst(cWindows, 'VK_F9', VK_F9);
    AddConst(cWindows, 'VK_F10', VK_F10);
    AddConst(cWindows, 'VK_F11', VK_F11);
    AddConst(cWindows, 'VK_F12', VK_F12);
    AddConst(cWindows, 'VK_F13', VK_F13);
    AddConst(cWindows, 'VK_F14', VK_F14);
    AddConst(cWindows, 'VK_F15', VK_F15);
    AddConst(cWindows, 'VK_F16', VK_F16);
    AddConst(cWindows, 'VK_F17', VK_F17);
    AddConst(cWindows, 'VK_F18', VK_F18);
    AddConst(cWindows, 'VK_F19', VK_F19);
    AddConst(cWindows, 'VK_F20', VK_F20);
    AddConst(cWindows, 'VK_F21', VK_F21);
    AddConst(cWindows, 'VK_F22', VK_F22);
    AddConst(cWindows, 'VK_F23', VK_F23);
    AddConst(cWindows, 'VK_F24', VK_F24);
    AddConst(cWindows, 'VK_NUMLOCK', VK_NUMLOCK);
    AddConst(cWindows, 'VK_SCROLL', VK_SCROLL);
    AddConst(cWindows, 'VK_LSHIFT', VK_LSHIFT);
    AddConst(cWindows, 'VK_RSHIFT', VK_RSHIFT);
    AddConst(cWindows, 'VK_LCONTROL', VK_LCONTROL);
    AddConst(cWindows, 'VK_RCONTROL', VK_RCONTROL);
    AddConst(cWindows, 'VK_LMENU', VK_LMENU);
    AddConst(cWindows, 'VK_RMENU', VK_RMENU);
    AddConst(cWindows, 'VK_PROCESSKEY', VK_PROCESSKEY);
    AddConst(cWindows, 'VK_ATTN', VK_ATTN);
    AddConst(cWindows, 'VK_CRSEL', VK_CRSEL);
    AddConst(cWindows, 'VK_EXSEL', VK_EXSEL);
    AddConst(cWindows, 'VK_EREOF', VK_EREOF);
    AddConst(cWindows, 'VK_PLAY', VK_PLAY);
    AddConst(cWindows, 'VK_ZOOM', VK_ZOOM);
    AddConst(cWindows, 'VK_NONAME', VK_NONAME);
    AddConst(cWindows, 'VK_PA1', VK_PA1);
    AddConst(cWindows, 'VK_OEM_CLEAR', VK_OEM_CLEAR);
  end;
end;

{$IFDEF UNITVERSIONING}
initialization
  RegisterUnitVersion(HInstance, UnitVersioning);

finalization
  UnregisterUnitVersion(HInstance);
{$ENDIF UNITVERSIONING}

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -