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

📄 jvclconvertutils.pas

📁 East make Tray Icon in delphi
💻 PAS
字号:
unit JVCLConvertUtils;

interface
uses
  SysUtils, Classes, JvPropertyStore;

type
  TAppOptions = class(TJvCustomPropertyStore)
  private
    FFilename:string;
    FWholeWords: boolean;
    FSimulate: boolean;
    FReplaceFilenames: boolean;
    FBackup: boolean;
    FFileMasks: string;
    FRootDirectory: string;
    FFileMask: string;
    FDATFile: string;
  public
    constructor Create(AOwner : TComponent); override;
  published
    property RootDirectory:string read FRootDirectory write FRootDirectory;
    property FileMask:string read FFileMask write FFileMask;
    property FileMasks:string read FFileMasks write FFileMasks;
    property DATFile:String read FDATFile write FDATFile;
    property Backup:boolean read FBackup write FBackup;
    property WholeWords:boolean read FWholeWords write FWholeWords;
    property ReplaceFilenames:boolean read FReplaceFilenames write FReplaceFilenames;
    property Simulate:boolean read FSimulate write FSimulate;
  end;

implementation

{ TAppOptions }

constructor TAppOptions.Create(AOwner : TComponent);
begin
  inherited create (AOwner);
  RootDirectory :=  '';
  FileMask := '*.dpr;*.dpk;*.pas;*.dfm';
  DATFile := '';
  Backup  := true;
  WholeWords := true;
  ReplaceFileNames := true;
  Simulate := false;
  FileMasks := 'Delphi files (*.dpr;*.dpk;*.pas;*.dfm)'#27'BCB files (*.dpr;*.bpk;*.pas;*.dfm;*.cpp;*.h;*.hpp)'#27'All files (*.*)';
end;


end.

⌨️ 快捷键说明

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