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

📄 setting.pas

📁 Windows屏幕键盘.rar Windows屏幕键盘.rar Windows屏幕键盘.rar
💻 PAS
字号:
unit Setting;

interface

uses Windows;

//
// Data structure for Setting
//
type
  PKbInfo = ^TKbInfo;
  TKbInfo = record
    UseSound: Bool;        // Use click sound
    AlwaysOntop: Bool;     // windows always on top control
    ShowWarning: Bool;     // Show the initial warning dialog again
    DefaultFont: TLogFont; // default font
    KbRect: TRect;         // size and position of KB
  end;

var
  KbInfo: TKbInfo =
  (
    UseSound: True;
    AlwaysOntop: True;
    ShowWarning: True;
    DefaultFont:
    (
      lfHeight: -11;
      lfWidth: 0;
      lfEscapement: 0;
      lfOrientation: 0;
      lfWeight: 700;
      lfItalic: 0;
      lfUnderline: 0;
      lfStrikeOut: 0;
      lfCharSet: 0;
      lfOutPrecision: 3;
      lfClipPrecision: 2;
      lfQuality: 1;
      lfPitchAndFamily: 34;
      lfFaceName: 'MS Shell Dlg';
    );
    KbRect:
    (
      Left: 225;
      Top: 543;
      Right: 837;
      Bottom: 738;
    );
  );

implementation

end.

⌨️ 快捷键说明

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