亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tntstdactns.pas

?? TNT Components Source
?? PAS
?? 第 1 頁 / 共 4 頁
字號:
  end;

{TNT-WARN TSearchAction}
  TTntSearchAction = class(TSearchAction{TNT-ALLOW TSearchAction}, ITntAction)
  private
    function GetCaption: WideString;
    procedure SetCaption(const Value: WideString);
    function GetHint: WideString;
    procedure SetHint(const Value: WideString);
  protected
    procedure DefineProperties(Filer: TFiler); override;
  public
    procedure Assign(Source: TPersistent); override;
  public
    property Caption: WideString read GetCaption write SetCaption;
    property Hint: WideString read GetHint write SetHint;
  end;

{TNT-WARN TSearchFind}
  TTntSearchFind = class(TSearchFind{TNT-ALLOW TSearchFind}, ITntAction)
  private
    function GetCaption: WideString;
    procedure SetCaption(const Value: WideString);
    function GetHint: WideString;
    procedure SetHint(const Value: WideString);
  protected
    procedure DefineProperties(Filer: TFiler); override;
  public
    procedure Assign(Source: TPersistent); override;
  published
    property Caption: WideString read GetCaption write SetCaption;
    property Hint: WideString read GetHint write SetHint;
  end;

{TNT-WARN TSearchReplace}
  TTntSearchReplace = class(TSearchReplace{TNT-ALLOW TSearchReplace}, ITntAction)
  private
    function GetCaption: WideString;
    procedure SetCaption(const Value: WideString);
    function GetHint: WideString;
    procedure SetHint(const Value: WideString);
  protected
    procedure DefineProperties(Filer: TFiler); override;
  public
    procedure Assign(Source: TPersistent); override;
  published
    property Caption: WideString read GetCaption write SetCaption;
    property Hint: WideString read GetHint write SetHint;
  end;

{TNT-WARN TSearchFindFirst}
  TTntSearchFindFirst = class(TSearchFindFirst{TNT-ALLOW TSearchFindFirst}, ITntAction)
  private
    function GetCaption: WideString;
    procedure SetCaption(const Value: WideString);
    function GetHint: WideString;
    procedure SetHint(const Value: WideString);
  protected
    procedure DefineProperties(Filer: TFiler); override;
  public
    procedure Assign(Source: TPersistent); override;
  published
    property Caption: WideString read GetCaption write SetCaption;
    property Hint: WideString read GetHint write SetHint;
  end;

{TNT-WARN TSearchFindNext}
  TTntSearchFindNext = class(TSearchFindNext{TNT-ALLOW TSearchFindNext}, ITntAction)
  private
    function GetCaption: WideString;
    procedure SetCaption(const Value: WideString);
    function GetHint: WideString;
    procedure SetHint(const Value: WideString);
  protected
    procedure DefineProperties(Filer: TFiler); override;
  public
    procedure Assign(Source: TPersistent); override;
  published
    property Caption: WideString read GetCaption write SetCaption;
    property Hint: WideString read GetHint write SetHint;
  end;

{TNT-WARN TFontEdit}
  TTntFontEdit = class(TFontEdit{TNT-ALLOW TFontEdit}, ITntAction)
  private
    function GetCaption: WideString;
    procedure SetCaption(const Value: WideString);
    function GetHint: WideString;
    procedure SetHint(const Value: WideString);
  protected
    procedure DefineProperties(Filer: TFiler); override;
  public
    procedure Assign(Source: TPersistent); override;
  published
    property Caption: WideString read GetCaption write SetCaption;
    property Hint: WideString read GetHint write SetHint;
  end;

{TNT-WARN TColorSelect}
  TTntColorSelect = class(TColorSelect{TNT-ALLOW TColorSelect}, ITntAction)
  private
    function GetCaption: WideString;
    procedure SetCaption(const Value: WideString);
    function GetHint: WideString;
    procedure SetHint(const Value: WideString);
  protected
    procedure DefineProperties(Filer: TFiler); override;
  public
    procedure Assign(Source: TPersistent); override;
  published
    property Caption: WideString read GetCaption write SetCaption;
    property Hint: WideString read GetHint write SetHint;
  end;

{TNT-WARN TPrintDlg}
  TTntPrintDlg = class(TPrintDlg{TNT-ALLOW TPrintDlg}, ITntAction)
  private
    function GetCaption: WideString;
    procedure SetCaption(const Value: WideString);
    function GetHint: WideString;
    procedure SetHint(const Value: WideString);
  protected
    procedure DefineProperties(Filer: TFiler); override;
  public
    procedure Assign(Source: TPersistent); override;
  published
    property Caption: WideString read GetCaption write SetCaption;
    property Hint: WideString read GetHint write SetHint;
  end;

procedure TntStdActn_AfterInherited_Assign(Action: TCustomAction{TNT-ALLOW TCustomAction}; Source: TPersistent);

implementation

uses
  Dialogs, TntClasses;

{TNT-IGNORE-UNIT}

procedure TntStdActn_AfterInherited_Assign(Action: TCustomAction{TNT-ALLOW TCustomAction}; Source: TPersistent);
begin
  TntAction_AfterInherited_Assign(Action, Source);
  // TCommonDialogAction
  if (Action is TCommonDialogAction) and (Source is TCommonDialogAction) then begin
    TCommonDialogAction(Action).BeforeExecute := TCommonDialogAction(Source).BeforeExecute;
    TCommonDialogAction(Action).OnAccept      := TCommonDialogAction(Source).OnAccept;
    TCommonDialogAction(Action).OnCancel      := TCommonDialogAction(Source).OnCancel;
  end;
  // TFileOpen
  if (Action is TFileOpen) and (Source is TFileOpen) then begin
    {$IFDEF COMPILER_7_UP}
    TFileOpen(Action).UseDefaultApp := TFileOpen(Source).UseDefaultApp;
    {$ENDIF}
  end;
  // TFileOpenWith
  if (Action is TFileOpenWith) and (Source is TFileOpenWith) then begin
    TFileOpenWith(Action).FileName  := TFileOpenWith(Source).FileName;
    {$IFDEF COMPILER_7_UP}
    TFileOpenWith(Action).AfterOpen := TFileOpenWith(Source).AfterOpen;
    {$ENDIF}
  end;
  // TSearchFindNext
  if (Action is TSearchFindNext) and (Source is TSearchFindNext) then begin
    TSearchFindNext(Action).SearchFind := TSearchFindNext(Source).SearchFind;
  end;
end;

//-------------------------
//    TNT STD ACTNS
//-------------------------

{ TTntHintAction }

procedure TTntHintAction.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntHintAction.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntHintAction.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntHintAction.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntHintAction.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntHintAction.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntEditAction }

procedure TTntEditAction.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntEditAction.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntEditAction.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntEditAction.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntEditAction.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntEditAction.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntEditCut }

procedure TTntEditCut.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntEditCut.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntEditCut.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntEditCut.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntEditCut.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntEditCut.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntEditCopy }

procedure TTntEditCopy.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntEditCopy.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntEditCopy.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntEditCopy.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntEditCopy.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntEditCopy.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntEditPaste }

procedure TTntEditPaste.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntEditPaste.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntEditPaste.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntEditPaste.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntEditPaste.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntEditPaste.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntEditSelectAll }

procedure TTntEditSelectAll.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntEditSelectAll.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntEditSelectAll.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntEditSelectAll.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntEditSelectAll.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntEditSelectAll.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntEditUndo }

procedure TTntEditUndo.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntEditUndo.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntEditUndo.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntEditUndo.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntEditUndo.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntEditUndo.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

{ TTntEditDelete }

procedure TTntEditDelete.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntEditDelete.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntEditDelete.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntEditDelete.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntEditDelete.GetHint: WideString;
begin
  Result := TntAction_GetHint(Self);
end;

procedure TTntEditDelete.SetHint(const Value: WideString);
begin
  TntAction_SetHint(Self, Value);
end;

procedure TTntEditDelete.UpdateTarget(Target: TObject);
begin
  Enabled := True;
end;

procedure TTntEditDelete.ExecuteTarget(Target: TObject);
begin
  if GetControl(Target).SelLength = 0 then
    GetControl(Target).SelLength := 1;
  GetControl(Target).ClearSelection
end;

{ TTntWindowAction }

procedure TTntWindowAction.Assign(Source: TPersistent);
begin
  inherited;
  TntStdActn_AfterInherited_Assign(Self, Source);
end;

procedure TTntWindowAction.DefineProperties(Filer: TFiler);
begin
  inherited;
  TntPersistent_AfterInherited_DefineProperties(Filer, Self);
end;

function TTntWindowAction.GetCaption: WideString;
begin
  Result := TntAction_GetCaption(Self);
end;

procedure TTntWindowAction.SetCaption(const Value: WideString);
begin
  TntAction_SetCaption(Self, Value);
end;

function TTntWindowAction.GetHint: WideString;
begin

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品一区二区三区在线观看| 亚洲国产视频网站| 亚洲综合偷拍欧美一区色| 奇米777欧美一区二区| av男人天堂一区| 欧美哺乳videos| 日韩电影在线观看一区| 99精品国产99久久久久久白柏| 精品少妇一区二区三区| 午夜日韩在线电影| 91啪在线观看| 国产精品美日韩| 国产综合成人久久大片91| 欧美日韩国产一级| 亚洲精品自拍动漫在线| 成人午夜电影小说| 久久麻豆一区二区| 久久se精品一区精品二区| 欧美探花视频资源| 一区二区高清视频在线观看| 国产iv一区二区三区| 欧美变态tickling挠脚心| 亚洲成人免费在线| 色久综合一二码| 亚洲黄色性网站| 色综合中文字幕国产 | 欧美激情一区在线| 国模一区二区三区白浆| 欧美刺激午夜性久久久久久久 | 久久国产人妖系列| 91精品国产欧美一区二区18| 五月激情综合网| 欧美剧在线免费观看网站| 亚洲女性喷水在线观看一区| 91在线看国产| 亚洲蜜桃精久久久久久久| 91免费版在线| 悠悠色在线精品| 欧美日韩精品三区| 视频一区视频二区中文字幕| 欧美日韩国产影片| 久久成人av少妇免费| 欧美刺激午夜性久久久久久久 | 香蕉成人伊视频在线观看| 99久久精品费精品国产一区二区| 中文字幕在线不卡一区| 91美女蜜桃在线| 亚洲国产你懂的| 日韩一级免费一区| 精品午夜久久福利影院| 国产精品区一区二区三| 91蝌蚪国产九色| 日韩中文字幕区一区有砖一区| 在线成人av网站| 久久不见久久见中文字幕免费| 日本一区二区三区电影| www.亚洲人| 一区二区三区在线免费播放| 7777女厕盗摄久久久| 国产精品正在播放| 亚洲欧美电影一区二区| 日韩一区二区在线观看| 国产宾馆实践打屁股91| 亚洲综合在线视频| 日韩欧美在线观看一区二区三区| 国产麻豆视频精品| 亚洲美腿欧美偷拍| 久久综合色鬼综合色| 99久久久久久| 久久99国产精品麻豆| 亚洲人精品午夜| 日韩欧美视频一区| 91蜜桃传媒精品久久久一区二区| 日韩在线一区二区三区| 国产精品色噜噜| 日韩一区二区中文字幕| 99热国产精品| 久久99久久99| 午夜精品久久一牛影视| 国产欧美精品区一区二区三区| 91黄视频在线观看| 国产99久久久国产精品免费看 | 色系网站成人免费| 久草精品在线观看| 亚洲精品久久嫩草网站秘色| 久久久亚洲高清| 色狠狠av一区二区三区| 国产+成+人+亚洲欧洲自线| 亚洲第一狼人社区| 国产精品国产馆在线真实露脸| 91麻豆精品国产自产在线观看一区 | 欧美精品丝袜中出| 91一区二区在线| 激情文学综合插| 亚洲h动漫在线| 亚洲男人电影天堂| 国产精品人妖ts系列视频| www久久精品| 欧美一级在线视频| 精品视频一区三区九区| 色综合久久久久久久久久久| 国产精品88888| 精品中文字幕一区二区| 日韩电影在线免费观看| 丝袜美腿亚洲色图| 亚洲一区免费观看| 一区二区三区免费观看| 国产精品久久二区二区| 久久久久88色偷偷免费| 久久―日本道色综合久久| 欧美成人精品3d动漫h| 日韩一区二区三区电影| 777亚洲妇女| 制服视频三区第一页精品| 欧美日韩一区三区| 欧美日韩成人一区二区| 欧美三级欧美一级| 欧美三级在线播放| 欧美精品乱码久久久久久按摩| 欧美特级限制片免费在线观看| 欧美日韩你懂得| 欧美精品在欧美一区二区少妇| 欧美欧美欧美欧美首页| 91 com成人网| 欧美www视频| 国产亚洲精品aa午夜观看| 亚洲国产精品av| 中文字幕视频一区二区三区久| 国产精品―色哟哟| 亚洲欧美一区二区久久| 一区二区在线电影| 天天操天天干天天综合网| 日本不卡免费在线视频| 国产美女一区二区三区| 不卡区在线中文字幕| 欧美亚洲综合久久| 欧美一区二区二区| 久久影院午夜论| 国产精品久久久久久久久搜平片 | 色婷婷久久久亚洲一区二区三区| 色国产精品一区在线观看| 欧美精品欧美精品系列| 久久日一线二线三线suv| 中文字幕一区二区在线观看| 亚洲精品国产高清久久伦理二区| 亚洲国产精品一区二区www| 肉丝袜脚交视频一区二区| 国产成人精品综合在线观看| 在线免费观看视频一区| 日韩欧美国产高清| 中文字幕日韩精品一区| 日韩中文字幕区一区有砖一区| 国产米奇在线777精品观看| 欧洲亚洲精品在线| 精品国产百合女同互慰| 亚洲男人的天堂一区二区| 视频一区二区中文字幕| 成人在线综合网站| 欧美精品久久一区二区三区| 国产人伦精品一区二区| 亚洲成人免费av| 成人激情小说乱人伦| 欧美喷潮久久久xxxxx| 国产欧美精品区一区二区三区| 亚洲成a人v欧美综合天堂下载| 国产一区二区0| 9191久久久久久久久久久| 欧美激情在线一区二区三区| 日日摸夜夜添夜夜添精品视频| 国产成人精品1024| 欧美一区二区三区不卡| 亚洲视频一区二区在线| 国产精品99久久久久久似苏梦涵 | 精品国产成人在线影院 | 精品制服美女丁香| 欧美主播一区二区三区| 国产精品丝袜久久久久久app| 日本美女一区二区三区| 在线看国产一区| 国产精品美女一区二区| 激情av综合网| 日韩一区二区三区在线| 午夜电影一区二区| 91美女在线视频| 亚洲乱码日产精品bd| 丁香婷婷综合色啪| 精品成人一区二区三区| 日韩av高清在线观看| 精品视频在线免费观看| 亚洲激情网站免费观看| 91在线免费播放| 亚洲欧洲日本在线| 成人av先锋影音| 国产欧美1区2区3区| 国产美女精品在线| 久久久久国产免费免费| 国产成人在线电影| 国产午夜精品一区二区三区视频| 久久99热这里只有精品| 欧美一区二区三区四区视频|