Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Moved ODS for OutputDebugString to separate unit. |
---|---|
Timelines: | family | ancestors | descendants | both | updatecheck |
Files: | files | file ages | folders |
SHA1: |
3c4dc7f26d93969a9799a3ad21d80f1c |
User & Date: | tinus 2017-02-19 20:29:44.055 |
Context
2017-02-19
| ||
20:38 | Implemented updating and replacing of plugin. check-in: 6d33ea7784 user: tinus tags: updatecheck | |
20:29 | Moved ODS for OutputDebugString to separate unit. check-in: 3c4dc7f26d user: tinus tags: updatecheck | |
20:24 | Moved ODS for OutputDebugString to separate unit. check-in: 636a5f5ef3 user: tinus tags: updatecheck | |
Changes
Changes to src/F_PreviewHTML.pas.
︙ | ︙ | |||
66 67 68 69 70 71 72 | procedure ForgetBuffer(const BufferID: TBufferID); procedure DisplayPreview(HTML: string; const BufferID: TBufferID); end; var frmHTMLPreview: TfrmHTMLPreview; | < < < | > > < < < < < < < < < < < < < < < < < < < < < | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | procedure ForgetBuffer(const BufferID: TBufferID); procedure DisplayPreview(HTML: string; const BufferID: TBufferID); end; var frmHTMLPreview: TfrmHTMLPreview; //////////////////////////////////////////////////////////////////////////////////////////////////// implementation uses ShellAPI, ComObj, StrUtils, IOUtils, Masks, MSHTML, RegExpr, L_SpecialFolders, WebBrowser, SciSupport, Debug, U_Npp_PreviewHTML; {$R *.dfm} { ================================================================================================ } { ------------------------------------------------------------------------------------------------ } procedure TfrmHTMLPreview.FormCreate(Sender: TObject); begin FScrollPositions := TDictionary<TBufferID,TPoint>.Create; |
︙ | ︙ | |||
717 718 719 720 721 722 723 | procedure TfrmHTMLPreview.wbIETitleChange(ASender: TObject; const Text: WideString); begin inherited; self.UpdateDisplayInfo(StringReplace(Text, 'about:blank', '', [rfReplaceAll])); end; | < < < < < | 695 696 697 698 699 700 701 702 | procedure TfrmHTMLPreview.wbIETitleChange(ASender: TObject; const Text: WideString); begin inherited; self.UpdateDisplayInfo(StringReplace(Text, 'about:blank', '', [rfReplaceAll])); end; end. |
Changes to src/U_CustomFilter.pas.
︙ | ︙ | |||
34 35 36 37 38 39 40 41 42 43 44 45 46 47 | //////////////////////////////////////////////////////////////////////////////////////////////////// implementation uses IOUtils, process, Pipes, F_PreviewHTML; { TCustomFilterThread } { ------------------------------------------------------------------------------------------------ } constructor TCustomFilterThread.Create(const Data: TFilterData); begin | > | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | //////////////////////////////////////////////////////////////////////////////////////////////////// implementation uses IOUtils, process, Pipes, Debug, F_PreviewHTML; { TCustomFilterThread } { ------------------------------------------------------------------------------------------------ } constructor TCustomFilterThread.Create(const Data: TFilterData); begin |
︙ | ︙ |
Changes to src/prj/PreviewHTML.dpr.
︙ | ︙ | |||
26 27 28 29 30 31 32 | F_About in '..\F_About.pas' {AboutForm}, F_PreviewHTML in '..\F_PreviewHTML.pas' {frmHTMLPreview}, WebBrowser in '..\lib\WebBrowser.pas', L_VersionInfoW in '..\common\L_VersionInfoW.pas', L_SpecialFolders in '..\common\L_SpecialFolders.pas', RegExpr in '..\common\RegExpr.pas', U_CustomFilter in '..\U_CustomFilter.pas', | | > | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | F_About in '..\F_About.pas' {AboutForm}, F_PreviewHTML in '..\F_PreviewHTML.pas' {frmHTMLPreview}, WebBrowser in '..\lib\WebBrowser.pas', L_VersionInfoW in '..\common\L_VersionInfoW.pas', L_SpecialFolders in '..\common\L_SpecialFolders.pas', RegExpr in '..\common\RegExpr.pas', U_CustomFilter in '..\U_CustomFilter.pas', U_AutoUpdate in '..\U_AutoUpdate.pas', Debug in '..\Debug.pas'; {$R *.res} {$Include '..\lib\NppPluginInclude.pas'} begin { First, assign the procedure to the DLLProc variable } |
︙ | ︙ |