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

📄 adapterunit1.pas

📁 DELPHI设计模式书籍
💻 PAS
字号:
unit AdapterUnit1;

interface
uses Windows;
type
  TManipulator = class
  public
    constructor Create; virtual;
  end;

  TShape = class
  public
    constructor Create; virtual;
    procedure BoundingBox(bottomLeft, topRight: TPoint); virtual;
    function CreateManipulator(): Tmanipulator; virtual;
  end;

  TTextView = class
  public
    constructor Create; virtual;
    procedure GetOrigin(X, Y: Longint);
    procedure GetExtent(width, height: Longint);
    function IsEmpty(): Boolean;
  end;

  TTextShape = class(TShape) //钡

⌨️ 快捷键说明

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