Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge and integrate win64 to trunk. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
01f90f575c7328a3b68f95c3071e58f4 |
User & Date: | tinus 2019-03-16 09:40:17.881 |
Context
2019-03-16
| ||
09:54 | Bugfixes in publication batch script. check-in: 4df99df5ae user: tinus tags: trunk, src-1.3.2.0 | |
09:40 | Merge and integrate win64 to trunk. check-in: 01f90f575c user: tinus tags: trunk | |
09:36 | Added batch-scripts to build or build and publish the plugin. Closed-Leaf check-in: 7dd2b5283a user: tinus tags: win64 | |
2018-11-03
| ||
11:17 | Updated link, apparently []() is not correct Markdown. check-in: 6dc33f10d6 user: tinus tags: trunk | |
Changes
Added build.cmd.
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | @Echo off pushd %~dp0 :: prepare to build the DLLs call rsvars.bat MSBuild /v:q /p:Config=Debug;Platform=Win32 /t:build src\prj\PreviewHTML.dproj > out\PreviewHTML_Win32_Debug.txt if errorlevel 1 echo Compilation errors, aborting... && start "" out\PreviewHTML_Win32_Debug.txt && goto TheEnd MSBuild /v:q /p:Config=Debug;Platform=Win64 /t:build src\prj\PreviewHTML.dproj > out\PreviewHTML_Win64_Debug.txt if errorlevel 1 echo Compilation errors, aborting... && start "" out\PreviewHTML_Win64_Debug.txt && goto TheEnd MSBuild /v:q /p:Config=Release;Platform=Win32 /t:build src\prj\PreviewHTML.dproj > out\PreviewHTML_Win32.txt if errorlevel 1 echo Compilation errors, aborting... && start "" out\PreviewHTML_Win32.txt && goto TheEnd MSBuild /v:q /p:Config=Release;Platform=Win64 /t:build src\prj\PreviewHTML.dproj > out\PreviewHTML_Win64.txt if errorlevel 1 echo Compilation errors, aborting... && start "" out\PreviewHTML_Win64.txt && goto TheEnd :TheEnd popd |
Added publish.cmd.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | <!-- :: Begin batch script @Echo off :: set code page to UTF-8 chcp 65001 pushd %~dp0 :: call the WSF script to extract the current version number from the .dproj file CScript //nologo "%f0?.wsf" > set_version.cmd call set_version.cmd del set_version.cmd echo Preparing to build and release of version "%RELEASE_VERSION%". echo Press Ctrl-C to abort publication; pause :: prepare to build the DLLs call rsvars.bat MSBuild /v:q /p:Config=Release;Platform=Win32 /t:build src\prj\PreviewHTML.dproj > out\PreviewHTML_Win32.txt if errorlevel 1 echo Compilation errors, aborting... && start "" out\PreviewHTML_Win32.txt && goto TheEnd MSBuild /v:q /p:Config=Release;Platform=Win64 /t:build src\prj\PreviewHTML.dproj > out\PreviewHTML_Win64.txt if errorlevel 1 echo Compilation errors, aborting... && start "" out\PreviewHTML_Win64.txt && goto TheEnd fossil commit --tag src-%RELEASE_VERSION% --allow-empty pushd %~dp0\out\Win32\Release if not exist _FOSSIL_ echo goto NoPublicationRepo move PreviewHTML.dll PreviewHTML32.dll start /wait "Release notes" ReleaseNotes.txt fossil commit --tag v%RELEASE_VERSION%-32 --tag v%RELEASE_VERSION% popd pushd %~dp0\out\Win64\Release if not exist _FOSSIL_ goto NoPublicationRepo move PreviewHTML.dll PreviewHTML64.dll start /wait "Release notes" ReleaseNotes.txt fossil commit --tag v%RELEASE_VERSION%-64 --tag v%RELEASE_VERSION% popd goto TheEnd :NoPublicationRepo echo There is no publication repository rooted in "%CD%"! popd :TheEnd popd exit /b -- begin of wsf script --> <package> <job> <script language="JScript"> var xmlDoc = new ActiveXObject("MSXML2.DOMDocument.6"); xmlDoc.Load("src\\prj\\PreviewHTML.dproj"); xmlDoc.SetSelectionNamespaces('xmlns:b="http://schemas.microsoft.com/developer/msbuild/2003"'); var xmlKeys = xmlDoc.SelectSingleNode("/b:Project/b:PropertyGroup/b:VerInfo_Keys"); if (xmlKeys) { var keys = xmlKeys.text; var match = /FileVersion=((\d+\.)+\d+)/.match(keys); if (match) { WScript.Echo("set RELEASE_VERSION=" + match[1]); } } </script> </job> </package> |
Added src/Debug.pas.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | unit Debug; interface procedure ODS(const DebugOutput: string); overload; procedure ODS(const DebugOutput: string; const Args: array of const); overload; implementation uses Classes, SysUtils, Windows, L_SpecialFolders; var OutputLog: TStreamWriter; { ------------------------------------------------------------------------------------------------ } procedure ODS(const DebugOutput: string); overload; begin OutputDebugString(PChar('PreviewHTML['+IntToHex(GetCurrentThreadId, 4)+']: ' + DebugOutput)); {$IFDEF DEBUG} if OutputLog = nil then begin OutputLog := TStreamWriter.Create(TFileStream.Create(ChangeFileExt(TSpecialFolders.DLLFullName, '.log'), fmCreate or fmShareDenyWrite), TEncoding.UTF8); OutputLog.OwnStream; OutputLog.BaseStream.Seek(0, soFromEnd); end; OutputLog.Write(FormatDateTime('yyyy-MM-dd hh:nn:ss.zzz: ', Now)); OutputLog.WriteLine(DebugOutput.Replace(#10, #10 + StringOfChar(' ', 25))); {$ENDIF} end {ODS}; { ------------------------------------------------------------------------------------------------ } procedure ODS(const DebugOutput: string; const Args: array of const); overload; begin ODS(Format(DebugOutput, Args)); end{ODS}; initialization finalization OutputLog.Free; end. |
Changes to src/F_About.dfm.
1 2 3 4 5 6 7 8 9 | inherited AboutForm: TAboutForm BorderIcons = [] BorderStyle = bsSizeable Caption = 'About Preview HTML' ClientHeight = 256 ParentFont = True Position = poDesigned OnCreate = FormCreate PixelsPerInch = 96 | > | | | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | inherited AboutForm: TAboutForm BorderIcons = [] BorderStyle = bsSizeable Caption = 'About Preview HTML' ClientHeight = 256 ParentFont = True Position = poDesigned OnCreate = FormCreate ExplicitHeight = 297 PixelsPerInch = 96 TextHeight = 14 object lblBasedOn: TLabel Left = 8 Top = 96 Width = 175 Height = 14 Caption = 'Based on the example plugin by' end object lblPlugin: TLabel Left = 8 Top = 8 Width = 200 Height = 14 Caption = 'HTML Preview plugin for Notepad++' ShowAccelChar = False end object lblVersion: TLabel Left = 189 Top = 8 Width = 46 Height = 14 Caption = 'v0.0.0.0' end object lblAuthor: TLinkLabel Left = 8 Top = 27 Width = 248 Height = 18 Caption = 'by Martijn Coppoolse, <a href="mailto:vor0nwe@users.sf.net">vor0' + 'nwe@users.sf.net</a>' TabOrder = 1 OnLinkClick = lblLinkClick end object lblTribute: TLinkLabel Left = 8 Top = 115 Width = 227 Height = 18 Caption = 'Damjan Zobo Cvetko, <a href="mailto:zobo@users.sf.net">zobo@user' + 's.sf.net</a>' TabOrder = 3 OnLinkClick = lblLinkClick end object btnOK: TButton |
︙ | ︙ | |||
63 64 65 66 67 68 69 | Default = True ModalResult = 1 TabOrder = 0 end object lblURL: TLinkLabel Left = 8 Top = 46 | | | | | | | | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | Default = True ModalResult = 1 TabOrder = 0 end object lblURL: TLinkLabel Left = 8 Top = 46 Width = 200 Height = 18 Cursor = crHandPoint Caption = '<a href="https://fossil.2of4.net/npp_preview">https://fossil.2of' + '4.net/npp_preview</a>' TabOrder = 2 OnLinkClick = lblLinkClick end object lblIEVersion: TLinkLabel Left = 8 Top = 160 Width = 223 Height = 18 Caption = 'Internet Explorer version %s is installed.' TabOrder = 4 end end |
Changes to src/F_PreviewHTML.dfm.
1 2 3 4 5 6 7 8 9 10 11 12 | inherited frmHTMLPreview: TfrmHTMLPreview BorderStyle = bsSizeToolWin Caption = 'HTML preview' ClientHeight = 420 ClientWidth = 504 ParentFont = True OnCreate = FormCreate OnDestroy = FormDestroy OnHide = FormHide OnKeyPress = FormKeyPress OnShow = FormShow PixelsPerInch = 96 | > > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | inherited frmHTMLPreview: TfrmHTMLPreview BorderStyle = bsSizeToolWin Caption = 'HTML preview' ClientHeight = 420 ClientWidth = 504 ParentFont = True OnCreate = FormCreate OnDestroy = FormDestroy OnHide = FormHide OnKeyPress = FormKeyPress OnShow = FormShow ExplicitWidth = 520 ExplicitHeight = 461 PixelsPerInch = 96 TextHeight = 14 object pnlButtons: TPanel Left = 0 Top = 379 Width = 504 Height = 41 Align = alBottom BevelOuter = bvNone |
︙ | ︙ | |||
101 102 103 104 105 106 107 108 | TabOrder = 0 OnStatusTextChange = wbIEStatusTextChange OnTitleChange = wbIETitleChange OnBeforeNavigate2 = wbIEBeforeNavigate2 OnDocumentComplete = wbIEDocumentComplete OnStatusBar = wbIEStatusBar OnNewWindow3 = wbIENewWindow3 ControlData = { | > > | | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | TabOrder = 0 OnStatusTextChange = wbIEStatusTextChange OnTitleChange = wbIETitleChange OnBeforeNavigate2 = wbIEBeforeNavigate2 OnDocumentComplete = wbIEDocumentComplete OnStatusBar = wbIEStatusBar OnNewWindow3 = wbIENewWindow3 ExplicitWidth = 557 ExplicitHeight = 418 ControlData = { 4C0000002D2F00007A2300000000000000000000000000000000000000000000 000000004C000000000000000000000001000000E0D057007335CF11AE690800 2B2E12620B000000000000004C0000000114020000000000C000000000000046 8000000000000000000000000000000000000000000000000000000000000000 00000000000000000100000000000000000000000000000000000000} end end end |
︙ | ︙ |
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 | 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, Debug, WebBrowser, SciSupport, U_Npp_PreviewHTML; {$R *.dfm} { ================================================================================================ } { ------------------------------------------------------------------------------------------------ } procedure TfrmHTMLPreview.FormCreate(Sender: TObject); begin FScrollPositions := TDictionary<TBufferID,TPoint>.Create; |
︙ | ︙ | |||
180 181 182 183 184 185 186 | Screen.Cursor := crHourGlass; try {--- MCO 22-01-2013: determine whether the current document matches a custom filter ---} FilterName := DetermineCustomFilter; IsCustom := Length(FilterName) > 0; | | | 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | Screen.Cursor := crHourGlass; try {--- MCO 22-01-2013: determine whether the current document matches a custom filter ---} FilterName := DetermineCustomFilter; IsCustom := Length(FilterName) > 0; {$MESSAGE HINT 'TODO: Find a way to communicate why there is no preview, depending on the situation — MCO 22-01-2013'} if IsXML or IsHTML or IsCustom then begin CodePage := SendMessage(hScintilla, SCI_GETCODEPAGE, 0, 0); Size := SendMessage(hScintilla, SCI_GETTEXT, 0, 0); SetLength(Content, Size); SendMessage(hScintilla, SCI_GETTEXT, Size, LPARAM(PAnsiChar(Content))); if CodePage = CP_ACP then begin |
︙ | ︙ | |||
437 438 439 440 441 442 443 | if SameText(Language, DocLanguage) then begin Match := True; end; end; end; end; | | | 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | if SameText(Language, DocLanguage) then begin Match := True; end; end; end; end; {$MESSAGE HINT 'TODO: Test lexer — MCO 22-01-2013'} if Match then Exit(Names[i]); end; finally Names.Free; Filters.Free; |
︙ | ︙ | |||
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; | < < < < < | 693 694 695 696 697 698 699 700 | 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 |
︙ | ︙ | |||
93 94 95 96 97 98 99 | end; if Pos('%2', Command) > 0 then begin OutputMethod := cotOutputFile; end else begin OutputMethod := cotStandardOutput; end; | | | | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | end; if Pos('%2', Command) > 0 then begin OutputMethod := cotOutputFile; end else begin OutputMethod := cotStandardOutput; end; {$MESSAGE HINT 'TODO: allow for explicit overrides in the filter settings — Martijn 2013-01-26'} if Terminated then Exit; {--- Now we figure out what in- and output files we will need ---} if InputMethod = citStandardInput then begin InFile := ''; Input := TStringStream.Create(FData.Contents, FData.Encoding, False); if OutputMethod = cotInputFile then begin OutputMethod := cotStandardOutput; {$MESSAGE HINT 'TODO: warn the user that this filter is misconfigured — Martijn 2013-01-26'} end; if OutputMethod = cotOutputFile then OutFile := TPath.GetTempFileName else OutFile := ''; end else begin // ContentInput = citFile Input := nil; |
︙ | ︙ |
Changes to src/U_Npp_PreviewHTML.pas.
︙ | ︙ | |||
17 18 19 20 21 22 23 | procedure SetInfo(NppData: TNppData); override; procedure CommandShowPreview; procedure CommandSetIEVersion(const BrowserEmulation: Integer); procedure CommandOpenFile(const Filename: nppString); procedure CommandShowAbout; | < | | < | > < < < < < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | procedure SetInfo(NppData: TNppData); override; procedure CommandShowPreview; procedure CommandSetIEVersion(const BrowserEmulation: Integer); procedure CommandOpenFile(const Filename: nppString); procedure CommandShowAbout; procedure DoNppnToolbarModification; override; procedure DoNppnFileClosed(const BufferID: THandle); override; procedure DoNppnBufferActivated(const BufferID: THandle); override; procedure DoModified(const hwnd: HWND; const modificationType: Integer); override; function GetSettings(const Name: string = 'Settings.ini'): TIniFile; end {TNppPluginPreviewHTML}; procedure _FuncShowPreview; cdecl; procedure _FuncOpenSettings; cdecl; procedure _FuncOpenFilters; cdecl; procedure _FuncShowAbout; cdecl; procedure _FuncSetIE7; cdecl; procedure _FuncSetIE8; cdecl; procedure _FuncSetIE9; cdecl; procedure _FuncSetIE10; cdecl; procedure _FuncSetIE11; cdecl; procedure _FuncSetIE12; cdecl; procedure _FuncSetIE13; cdecl; var Npp: TNppPluginPreviewHTML; //////////////////////////////////////////////////////////////////////////////////////////////////// implementation uses WebBrowser, Registry, Debug; { ------------------------------------------------------------------------------------------------ } procedure _FuncOpenSettings; cdecl; begin Npp.CommandOpenFile('Settings.ini'); end; { ------------------------------------------------------------------------------------------------ } procedure _FuncOpenFilters; cdecl; |
︙ | ︙ | |||
119 120 121 122 123 124 125 | { ================================================================================================ } { TNppPluginPreviewHTML } { ------------------------------------------------------------------------------------------------ } constructor TNppPluginPreviewHTML.Create; begin inherited; | | | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | { ================================================================================================ } { TNppPluginPreviewHTML } { ------------------------------------------------------------------------------------------------ } constructor TNppPluginPreviewHTML.Create; begin inherited; self.PluginName := '&Preview HTML'{$IFDEF DEBUG}+' (debug)'{$ENDIF}; end {TNppPluginPreviewHTML.Create}; { ------------------------------------------------------------------------------------------------ } procedure TNppPluginPreviewHTML.SetInfo(NppData: TNppData); var IEVersion: string; MajorIEVersion, Code, EmulatedVersion: Integer; |
︙ | ︙ | |||
178 179 180 181 182 183 184 185 186 187 | self.AddFuncItem('&About', _FuncShowAbout); end {TNppPluginPreviewHTML.SetInfo}; { ------------------------------------------------------------------------------------------------ } procedure TNppPluginPreviewHTML.CommandOpenFile(const Filename: nppString); var FullPath: nppString; begin try FullPath := Npp.ConfigDir + '\PreviewHTML\' + Filename; | > | | > > > > > > < < < < < < < < < | 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | self.AddFuncItem('&About', _FuncShowAbout); end {TNppPluginPreviewHTML.SetInfo}; { ------------------------------------------------------------------------------------------------ } procedure TNppPluginPreviewHTML.CommandOpenFile(const Filename: nppString); var FullPath: nppString; ConfigSample, DllSample: nppString; begin try FullPath := Npp.ConfigDir + '\PreviewHTML\' + Filename; if not FileExists(FullPath) then begin ConfigSample := ChangeFileExt(FullPath, '.sample' + ExtractFileExt(FullPath)); DllSample := ChangeFilePath(ConfigSample, ExtractFileDir(FullFileName)); if not FileExists(ConfigSample) and FileExists(DllSample) then Win32Check(CopyFile(PChar(string(DllSample)), PChar(string(ConfigSample)), True)); if FileExists(ConfigSample) then FullPath := ConfigSample; end; if not DoOpen(FullPath) then MessageBox(Npp.NppData.NppHandle, PChar(Format('Unable to open "%s".', [FullPath])), PChar(Caption), MB_ICONWARNING); except ShowException(ExceptObject, ExceptAddr); end; end {TNppPluginPreviewHTML.CommandOpenFilters}; { ------------------------------------------------------------------------------------------------ } procedure TNppPluginPreviewHTML.CommandSetIEVersion(const BrowserEmulation: Integer); begin if GetBrowserEmulation <> BrowserEmulation then begin SetBrowserEmulation(BrowserEmulation); MessageBox(Npp.NppData.NppHandle, PChar(Format('The preview browser mode has been set to correspond to Internet Explorer version %d.'#13#10#13#10 + |
︙ | ︙ | |||
268 269 270 271 272 273 274 | SendMessage(self.NppData.NppHandle, NPPM_ADDTOOLBARICON, WPARAM(self.CmdIdFromDlgId(0)), LPARAM(@tb)); // SendMessage(self.NppData.ScintillaMainHandle, SCI_SETMODEVENTMASK, SC_MOD_INSERTTEXT or SC_MOD_DELETETEXT, 0); // SendMessage(self.NppData.ScintillaSecondHandle, SCI_SETMODEVENTMASK, SC_MOD_INSERTTEXT or SC_MOD_DELETETEXT, 0); end {TNppPluginPreviewHTML.DoNppnToolbarModification}; { ------------------------------------------------------------------------------------------------ } | | | | 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | SendMessage(self.NppData.NppHandle, NPPM_ADDTOOLBARICON, WPARAM(self.CmdIdFromDlgId(0)), LPARAM(@tb)); // SendMessage(self.NppData.ScintillaMainHandle, SCI_SETMODEVENTMASK, SC_MOD_INSERTTEXT or SC_MOD_DELETETEXT, 0); // SendMessage(self.NppData.ScintillaSecondHandle, SCI_SETMODEVENTMASK, SC_MOD_INSERTTEXT or SC_MOD_DELETETEXT, 0); end {TNppPluginPreviewHTML.DoNppnToolbarModification}; { ------------------------------------------------------------------------------------------------ } procedure TNppPluginPreviewHTML.DoNppnBufferActivated(const BufferID: THandle); begin inherited; if Assigned(frmHTMLPreview) and frmHTMLPreview.Visible then begin frmHTMLPreview.btnRefresh.Click; end; end {TNppPluginPreviewHTML.DoNppnBufferActivated}; { ------------------------------------------------------------------------------------------------ } procedure TNppPluginPreviewHTML.DoNppnFileClosed(const BufferID: THandle); begin if Assigned(frmHTMLPreview) then begin frmHTMLPreview.ForgetBuffer(BufferID); end; inherited; end {TNppPluginPreviewHTML.DoNppnFileClosed}; |
︙ | ︙ |
Changes to src/common/L_VersionInfoW.pas.
1 2 3 4 5 6 7 8 9 10 11 | unit L_VersionInfoW; interface uses Windows, SysUtils; type TFileVersionInfo = class private { Private declarations } | | | | | | | | | | | | > > | > | | | | | | | | | | | | > > > > > > > > | | | | | | < | > | | | | > > | > > > > | | | | | < | | | | > > > > > > < | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | unit L_VersionInfoW; interface uses Windows, SysUtils; type TFileVersionInfo = class private { Private declarations } FFilename : string; FHasVersionInfo : boolean; FCompanyName : string; FFileDescription : string; FFileVersion : string; FInternalname : string; FLegalCopyright : string; FLegalTradeMarks : string; FOriginalFilename : string; FProductName : string; FProductVersion : string; FComments : string; FMajorVersion : Word; FMinorVersion : Word; FRevision : Word; FBuild : Word; FFlags : Word; FFileDateTime : TDateTime; procedure SetFileName(const AFileName: string); function HasFlag(const Index: integer): boolean; protected { Protected declarations } public { Public declarations } constructor Create(const AFileName: string); destructor Destroy; override; property FileName : string read FFileName write SetFileName; public { Published declarations } property CompanyName : string read FCompanyName; property FileDescription : string read FFileDescription; property FileVersion : string read FFileVersion; property Internalname : string read FInternalname; property LegalCopyright : string read FLegalCopyright; property LegalTradeMarks : string read FLegalTradeMarks; property OriginalFilename : string read FOriginalFilename; property ProductName : string read FProductName; property ProductVersion : string read FProductVersion; property Comments : string read FComments; property MajorVersion : Word read FMajorVersion; property MinorVersion : Word read FMinorVersion; property Revision : Word read FRevision; property Build : Word read FBuild; property Flags : Word read FFlags; property IsDebug : boolean index VS_FF_DEBUG read HasFlag; property IsPreRelease : boolean index VS_FF_PRERELEASE read HasFlag; property IsPatched : boolean index VS_FF_PATCHED read HasFlag; property IsPrivateBuild : boolean index VS_FF_PRIVATEBUILD read HasFlag; property IsInfoInferred : boolean index VS_FF_INFOINFERRED read HasFlag; property IsSpecialBuild : boolean index VS_FF_SPECIALBUILD read HasFlag; property FileDateTime : TDateTime read FFileDateTime; end; implementation type TLangAndCP = record wLanguage : word; wCodePage : word; end; PLangAndCP = ^TLangAndCP; constructor TFileVersionInfo.Create(const AFileName: string); begin inherited Create; SetFileName(AFileName); end; destructor TFileVersionInfo.Destroy; begin inherited Destroy; end; procedure TFileVersionInfo.SetFileName(const AFileName: string); var Dummy : UINT; BufferSize: DWORD; Buffer : Pointer; PLang : PLangAndCP; SubBlock : string; SysTime: TSystemTime; { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - } function QueryValue(const AName: string): string; var Value : PChar; begin SubBlock := WideFormat('\\StringFileInfo\\%.4x%.4x\\%s', [PLang.wLanguage, PLang.wCodePage, AName]); if VerQueryValue(Buffer, PChar(SubBlock), Pointer(Value), Dummy) then Result := string(Value) else Result := ''; end; { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - } var PInfoBlock : PVSFixedFileInfo; FileTime : TFileTime; begin FFilename := AFileName; BufferSize := GetFileVersionInfoSize(PChar(AFileName), Dummy); FHasVersionInfo := (Buffersize > 0); if FHasVersionInfo then begin Buffer := AllocMem(BufferSize); try GetFileVersionInfo(PChar(AFileName), Dummy, BufferSize, Buffer); SubBlock := '\\VarFileInfo\\Translation'; VerQueryValue(Buffer, PChar(SubBlock), Pointer(PLang), Dummy); FCompanyName := QueryValue('CompanyName'); FFileDescription := QueryValue('FileDescription'); FFileVersion := QueryValue('FileVersion'); FInternalName := QueryValue('InternalName'); FLegalCopyright := QueryValue('LegalCopyright'); FLegalTradeMarks := QueryValue('LegalTradeMarks'); FOriginalFilename := QueryValue('OriginalFilename'); FProductName := QueryValue('ProductName'); FProductVersion := QueryValue('ProductVersion'); FComments := QueryValue('Comments'); VerQueryValue(Buffer, '\', Pointer(PInfoBlock), Dummy); FMajorVersion := PInfoBlock.dwFileVersionMS shr 16; FMinorVersion := PInfoBlock.dwFileVersionMS and 65535; FRevision := PInfoBlock.dwFileVersionLS shr 16; FBuild := PInfoBlock.dwFileVersionLS and 65535; FFlags := PInfoBlock.dwFileFlags and PInfoBlock.dwFileFlagsMask; FileTime.dwLowDateTime := PInfoBlock.dwFileDateLS; FileTime.dwHighDateTime := PInfoBlock.dwFileDateMS; if FileTimeToLocalFileTime(FileTime, FileTime) and FileTimeToSystemTime(FileTime, SysTime) and (SysTime.wYear > 1601) then FFileDateTime := SystemTimeToDateTime(SysTime); finally FreeMem(Buffer,BufferSize); end; end else begin FCompanyname := ''; FFileDescription := ''; FFileVersion := ''; FInternalname := ''; FLegalCopyright := ''; FLegalTradeMarks := ''; FOriginalFilename := ''; FProductName := ''; FProductVersion := ''; FComments := ''; FMajorVersion := 0; FMinorVersion := 0; FRevision := 0; FBuild := 0; end; end; function TFileVersionInfo.HasFlag(const Index: integer): boolean; begin Result := (FFlags and Index) <> 0; end; end. |
Changes to src/lib/NppDockingForms.pas.
︙ | ︙ | |||
123 124 125 126 127 128 129 | {var r:Integer;} begin self.HandleNeeded; //self.Visible := true; | | | 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | {var r:Integer;} begin self.HandleNeeded; //self.Visible := true; self.ToolbarData := Default(TToolbarData); if (not self.Icon.Empty) then begin self.ToolbarData.IconTab := self.Icon.Handle; self.ToolbarData.Mask := self.ToolbarData.Mask or DWS_ICONTAB; end; |
︙ | ︙ | |||
147 148 149 150 151 152 153 | GetMem(self.ToolbarData.AdditionalInfo, 1000*sizeof(nppPChar)); {$IFDEF NPPUNICODE} StringToWideChar(self.Caption, self.ToolbarData.Title, 500); GetModuleFileNameW(HInstance, self.ToolbarData.ModuleName, 1000); StringToWideChar(ExtractFileName(self.ToolbarData.ModuleName), self.ToolbarData.ModuleName, 1000); StringToWideChar('', self.ToolbarData.AdditionalInfo, 1); | | | | 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | GetMem(self.ToolbarData.AdditionalInfo, 1000*sizeof(nppPChar)); {$IFDEF NPPUNICODE} StringToWideChar(self.Caption, self.ToolbarData.Title, 500); GetModuleFileNameW(HInstance, self.ToolbarData.ModuleName, 1000); StringToWideChar(ExtractFileName(self.ToolbarData.ModuleName), self.ToolbarData.ModuleName, 1000); StringToWideChar('', self.ToolbarData.AdditionalInfo, 1); {r:=}SendMessageW(self.Npp.NppData.NppHandle, NPPM_DMMREGASDCKDLG, 0, LPARAM(@self.ToolbarData)); {$ELSE} StrCopy(self.ToolbarData.Title, PChar(self.Caption)); GetModuleFileNameA(HInstance, self.ToolbarData.ModuleName, 1000); StrLCopy(self.ToolbarData.ModuleName, PChar(ExtractFileName(self.ToolbarData.ModuleName)), 1000); StrCopy(self.ToolbarData.AdditionalInfo, PChar('')); {r:=} SendMessageA(self.Npp.NppData.NppHandle, NPPM_DMMREGASDCKDLG, 0, LPARAM(@self.ToolbarData)); {$ENDIF} self.Visible := true; end; procedure TNppDockingForm.Show; begin |
︙ | ︙ |
Changes to src/lib/NppPluginInclude.pas.
︙ | ︙ | |||
46 47 48 49 50 51 52 | procedure beNotified(sn: PSCNotification); cdecl; export; begin if Assigned(Npp) then Npp.BeNotified(sn); end; | | | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | procedure beNotified(sn: PSCNotification); cdecl; export; begin if Assigned(Npp) then Npp.BeNotified(sn); end; function messageProc(msg: UINT; _wParam: WPARAM; _lParam: LPARAM): LRESULT; cdecl; export; var xmsg:TMessage; begin xmsg.Msg := msg; xmsg.WParam := _wParam; xmsg.LParam := _lParam; xmsg.Result := 0; if Assigned(Npp) then |
︙ | ︙ |
Changes to src/lib/SciSupport.pas.
1 2 3 4 5 6 7 8 9 10 11 12 | unit scisupport; // Support unit for scintilla use in pascal. The constants are all created from scintilla.iface by // a python script. interface {$DEFINE MACRO_SUPPORT} uses Windows; type | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | unit scisupport; // Support unit for scintilla use in pascal. The constants are all created from scintilla.iface by // a python script. interface {$DEFINE MACRO_SUPPORT} uses Windows; type TScintillaMessageFnc = function(ptr : Pointer; Msg: UINT; wParam: WPARAM; lParam : LPARAM) : LRESULT; cdecl; uptr_t = ULONG_PTR; sptr_t = LONG_PTR; TNotifyHeader = record hwndFrom : HWND; idFrom : uptr_t; code : Cardinal; end; PSCNotification = ^TSCNotification; TSCNotification = record nmhdr : TNotifyHeader; position : Integer; // SCN_STYLENEEDED, SCN_MODIFIED ch : Integer; // SCN_CHARADDED, SCN_KEY |
︙ | ︙ |
Changes to src/lib/nppplugin.pas.
︙ | ︙ | |||
395 396 397 398 399 400 401 | DMN_CLOSE = (DMN_FIRST + 1); //nmhdr.code = DWORD(DMN_CLOSE, 0)); //nmhdr.hwndFrom = hwndNpp; //nmhdr.idFrom = ctrlIdNpp; DMN_DOCK = (DMN_FIRST + 2); DMN_FLOAT = (DMN_FIRST + 3); //nmhdr.code = DWORD(DMN_XXX, int newContainer); //nmhdr.hwndFrom = hwndNpp; //nmhdr.idFrom = ctrlIdNpp; type {$IFDEF NPPUNICODE} | | | 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | DMN_CLOSE = (DMN_FIRST + 1); //nmhdr.code = DWORD(DMN_CLOSE, 0)); //nmhdr.hwndFrom = hwndNpp; //nmhdr.idFrom = ctrlIdNpp; DMN_DOCK = (DMN_FIRST + 2); DMN_FLOAT = (DMN_FIRST + 3); //nmhdr.code = DWORD(DMN_XXX, int newContainer); //nmhdr.hwndFrom = hwndNpp; //nmhdr.idFrom = ctrlIdNpp; type {$IFDEF NPPUNICODE} nppString = UnicodeString; nppChar = WChar; nppPChar = PWChar; {$ELSE} nppString = AnsiString; nppChar = AnsiChar; nppPChar = PAnsiChar; {$ENDIF} |
︙ | ︙ | |||
425 426 427 428 429 430 431 | TToolbarIcons = record ToolbarBmp: HBITMAP; ToolbarIcon: HICON; end; TCommunicationInfo = record | | | 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 | TToolbarIcons = record ToolbarBmp: HBITMAP; ToolbarIcon: HICON; end; TCommunicationInfo = record internalMsg: NativeUInt; srcModuleName: nppPChar; info: Pointer; end; TNppData = record NppHandle: HWND; ScintillaMainHandle: HWND; |
︙ | ︙ | |||
450 451 452 453 454 455 456 | PFUNCPLUGINCMD = procedure; cdecl; _TFuncItem = record ItemName: Array[0..FuncItemNameLen-1] of nppChar; Func: PFUNCPLUGINCMD; CmdID: Integer; | | | > | | | | > > > | 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 | PFUNCPLUGINCMD = procedure; cdecl; _TFuncItem = record ItemName: Array[0..FuncItemNameLen-1] of nppChar; Func: PFUNCPLUGINCMD; CmdID: Integer; Checked: BOOL; ShortcutKey: PShortcutKey; end; TToolbarData = record ClientHandle: HWND; Title: nppPChar; DlgId: Integer; Mask: Cardinal; IconTab: HICON; // still dont know how to use this... AdditionalInfo: nppPChar; FloatRect: TRect; // internal PrevContainer: Cardinal; // internal ModuleName:nppPChar; // name of module GetModuleFileName(0...) end; TNppPlugin = class(TObject) private FuncArray: array of _TFuncItem; FClosingBufferID: THandle; FConfigDir: string; protected PluginName: nppString; function GetPluginDllName: string; virtual; function GetPluginsConfigDir: string; virtual; function AddFuncSeparator: Integer; function AddFuncItem(Name: nppString; Func: PFUNCPLUGINCMD): Integer; overload; function AddFuncItem(Name: nppString; Func: PFUNCPLUGINCMD; ShortcutKey: TShortcutKey): Integer; overload; function AddFuncItem(Name: nppString; Func: PFUNCPLUGINCMD; Checked: Boolean): Integer; overload; function AddFuncItem(Name: nppString; Func: PFUNCPLUGINCMD; ShortcutKey: TShortcutKey; Checked: Boolean): Integer; overload; public NppData: TNppData; constructor Create; destructor Destroy; override; procedure BeforeDestruction; override; function Caption: string; function CmdIdFromDlgId(DlgId: Integer): Integer; // needed for DLL export.. wrappers are in the main dll file. procedure SetInfo(NppData: TNppData); virtual; function GetName: nppPChar; function GetFuncsArray(out FuncsCount: Integer): Pointer; procedure BeNotified(sn: PSCNotification); procedure MessageProc(var Msg: TMessage); virtual; // hooks procedure DoNppnToolbarModification; virtual; procedure DoNppnShutdown; virtual; procedure DoNppnBufferActivated(const BufferID: THandle); virtual; procedure DoNppnFileClosed(const BufferID: THandle); virtual; procedure DoUpdateUI(const hwnd: HWND; const updated: Integer); virtual; procedure DoModified(const hwnd: HWND; const modificationType: Integer); virtual; // df function DoOpen(filename: String): boolean; overload; function DoOpen(filename: String; Line: Integer): boolean; overload; procedure GetFileLine(var filename: String; var Line: Integer); function GetWord: string; // helpers property ConfigDir: string read GetPluginsConfigDir; property FullFileName: string read GetPluginDllName; end; implementation uses Debug; { TNppPlugin } { This is hacking for troubble... We need to unset the Application handler so that the forms don't get berserk and start throwing OS error 1004. This happens because the main NPP HWND is already lost when the |
︙ | ︙ | |||
616 617 618 619 620 621 622 | SetLength(s, StrLen(PChar(s))); filename := s; r := SendMessage(self.NppData.ScintillaMainHandle, SciSupport.SCI_GETCURRENTPOS, 0, 0); Line := SendMessage(self.NppData.ScintillaMainHandle, SciSupport.SCI_LINEFROMPOSITION, r, 0); end; | | | > > > > > > | > | > | | | | 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 | SetLength(s, StrLen(PChar(s))); filename := s; r := SendMessage(self.NppData.ScintillaMainHandle, SciSupport.SCI_GETCURRENTPOS, 0, 0); Line := SendMessage(self.NppData.ScintillaMainHandle, SciSupport.SCI_LINEFROMPOSITION, r, 0); end; function TNppPlugin.GetFuncsArray(out FuncsCount: Integer): Pointer; begin FuncsCount := Length(self.FuncArray); Result := @self.FuncArray[0]; end; function TNppPlugin.GetName: nppPChar; begin Result := nppPChar(self.PluginName); end; function TNppPlugin.GetPluginDllName: string; begin Result := StringOfChar(#0, 2048); SetLength(Result, GetModuleFileName(HInstance, PChar(Result), Length(Result) + 1)); end; function TNppPlugin.GetPluginsConfigDir: string; begin if Length(FConfigDir) = 0 then begin SetLength(FConfigDir, 1001); SendMessage(self.NppData.NppHandle, NPPM_GETPLUGINSCONFIGDIR, 1000, LPARAM(PChar(FConfigDir))); SetString(FConfigDir, PChar(FConfigDir), StrLen(PChar(FConfigDir))); end; Result := FConfigDir; end; procedure TNppPlugin.BeNotified(sn: PSCNotification); begin try if sn^.nmhdr.hwndFrom = self.NppData.NppHandle then begin // ODS('BeNotified from Notepad++ %d', [sn.nmhdr.code]); case sn.nmhdr.code of NPPN_TB_MODIFICATION: begin self.DoNppnToolbarModification; end; NPPN_SHUTDOWN: begin self.DoNppnShutdown; end; NPPN_BUFFERACTIVATED: begin self.DoNppnBufferActivated(sn.nmhdr.idFrom); end; NPPN_FILEBEFORECLOSE: begin FClosingBufferID := SendMessage(sn.nmhdr.hwndFrom, NPPM_GETCURRENTBUFFERID, 0, 0); // self.DoNppnBeforeFileClose(FClosingBufferID); end; NPPN_FILECLOSED: begin self.DoNppnFileClosed(FClosingBufferID); end; end; end else begin // ODS('BeNotified from Scintilla %d', [sn.nmhdr.code]); case sn.nmhdr.code of SCN_MODIFIED: begin Self.DoModified(sn.nmhdr.hwndFrom, sn.modificationType); end; SCN_UPDATEUI: begin self.DoUpdateUI(sn.nmhdr.hwndFrom, sn.updated); end; end; end; // @todo except on E: Exception do begin ODS('%s> %s: "%s"', [PluginName, E.ClassName, E.Message]); end; end; end; procedure TNppPlugin.MessageProc(var Msg: TMessage); //var // hm: HMENU; |
︙ | ︙ | |||
748 749 750 751 752 753 754 | end; procedure TNppPlugin.DoNppnToolbarModification; begin // override these end; | | | | 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 | end; procedure TNppPlugin.DoNppnToolbarModification; begin // override these end; procedure TNppPlugin.DoNppnBufferActivated(const BufferID: THandle); begin // override these end; procedure TNppPlugin.DoNppnFileClosed(const BufferID: THandle); begin // override these end; procedure TNppPlugin.DoModified(const hwnd: HWND; const modificationType: Integer); begin // override these |
︙ | ︙ |
Changes to src/prj/PreviewHTML.dpr.
︙ | ︙ | |||
25 26 27 28 29 30 31 | U_Npp_PreviewHTML in '..\U_Npp_PreviewHTML.pas', 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', | | > > | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | U_Npp_PreviewHTML in '..\U_Npp_PreviewHTML.pas', 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', Debug; {$R *.res} {$Include '..\lib\NppPluginInclude.pas'} begin { First, assign the procedure to the DLLProc variable } DllProc := @DLLEntryPoint; { Now invoke the procedure to reflect that the DLL is attaching to the process } DLLEntryPoint(DLL_PROCESS_ATTACH); end. |
Changes to src/prj/PreviewHTML.dproj.
1 2 3 4 5 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <ProjectGuid>{A2533A0E-8621-4A31-A675-059AFF5AA9FB}</ProjectGuid> <MainSource>PreviewHTML.dpr</MainSource> <Base>True</Base> | | | | > > > > > > > > > > > | | > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <ProjectGuid>{A2533A0E-8621-4A31-A675-059AFF5AA9FB}</ProjectGuid> <MainSource>PreviewHTML.dpr</MainSource> <Base>True</Base> <Config Condition="'$(Config)'==''">Release</Config> <TargetedPlatforms>3</TargetedPlatforms> <AppType>Library</AppType> <FrameworkType>VCL</FrameworkType> <ProjectVersion>18.3</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win64</Platform> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''"> <Base_Win32>true</Base_Win32> <CfgParent>Base</CfgParent> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''"> <Base_Win64>true</Base_Win64> <CfgParent>Base</CfgParent> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> <Cfg_1>true</Cfg_1> <CfgParent>Base</CfgParent> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''"> <Cfg_1_Win32>true</Cfg_1_Win32> <CfgParent>Cfg_1</CfgParent> <Cfg_1>true</Cfg_1> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''"> <Cfg_2>true</Cfg_2> <CfgParent>Base</CfgParent> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''"> <Cfg_2_Win32>true</Cfg_2_Win32> <CfgParent>Cfg_2</CfgParent> <Cfg_2>true</Cfg_2> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="'$(Base)'!=''"> <SanitizedProjectName>PreviewHTML</SanitizedProjectName> <VerInfo_MinorVer>3</VerInfo_MinorVer> <PostBuildEventCancelOnError>false</PostBuildEventCancelOnError> <PostBuildEvent><![CDATA["C:\MC\Run\Util\Compression\UPX\upx.exe" --best -q "$(OUTPUTPATH)" $(PostBuildEvent)]]></PostBuildEvent> <VerInfo_DLL>true</VerInfo_DLL> <DCC_ImageBase>00400000</DCC_ImageBase> <VerInfo_Keys>CompanyName=Voronwë;FileDescription=HTML Preview plugin for Notepad++;FileVersion=1.3.2.0;InternalName=PreviewHTML;LegalCopyright=© Martijn Coppoolse;LegalTrademarks=;OriginalFilename=PreviewHTML.dll;ProductName=Notepad++;ProductVersion=6.0.0.0;Comments=https://martijn.coppoolse.com/software</VerInfo_Keys> <DCC_UsePackage>vcl;rtl;dbrtl;adortl;vcldb;vclx;bdertl;vcldbx;ibxpress;dsnap;cds;bdecds;qrpt;teeui;teedb;tee;dss;teeqr;visualclx;visualdbclx;dsnapcrba;dsnapcon;VclSmp;vclshlctrls;vclie;xmlrtl;inet;inetdbbde;inetdbxpress;inetdb;nmfast;webdsnap;websnap;soaprtl;dbexpress;dbxcds;indy;dclOffice2k;dOCI6;CoolTrayIcon_D6plus;curlpkg;ThemeManagerD6;VirtualTreesD6;Jcl;JclVcl;JvCoreD6R;JvSystemD6R;JvStdCtrlsD6R;JvAppFrmD6R;JvBandsD6R;JvDBD6R;JvDlgsD6R;JvBDED6R;JvCmpD6R;JvCryptD6R;JvCtrlsD6R;JvCustomD6R;JvDockingD6R;JvDotNetCtrlsD6R;JvEDID6R;JvGlobusD6R;JvHMID6R;JvInterpreterD6R;JvJansD6R;JvManagedThreadsD6R;JvMMD6R;JvNetD6R;JvPageCompsD6R;JvPluginD6R;JvPrintPreviewD6R;JvRuntimeDesignD6R;JvTimeFrameworkD6R;JvUIBD6R;JvValidatorsD6R;JvWizardD6R;JvXPCtrlsD6R;$(DCC_UsePackage)</DCC_UsePackage> <DCC_ExeOutput>..\..\out\$(PLATFORM)\$(CONFIG)</DCC_ExeOutput> <DCC_Define>NPPUNICODE;$(DCC_Define)</DCC_Define> <DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Winapi;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace)</DCC_Namespace> <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> <DCC_UnitSearchPath>$(DELPHI)\Lib\Debug;C:\PROGRA~1\Jedi\jcl\lib\d6\debug;..\;..\lib;..\common;$(DCC_UnitSearchPath)</DCC_UnitSearchPath> <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File> <DCC_N>true</DCC_N> <DCC_K>false</DCC_K> <GenDll>true</GenDll> <DCC_S>false</DCC_S> <DCC_F>false</DCC_F> <VerInfo_Locale>1033</VerInfo_Locale> <DCC_SymbolReferenceInfo>1</DCC_SymbolReferenceInfo> <DCC_E>false</DCC_E> <DCC_DcuOutput>..\..\out\dcu\$(PLATFORM)\$(CONFIG)</DCC_DcuOutput> <VerInfo_Release>2</VerInfo_Release> </PropertyGroup> <PropertyGroup Condition="'$(Base_Win32)'!=''"> <DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace> <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes> </PropertyGroup> <PropertyGroup Condition="'$(Base_Win64)'!=''"> <DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace> <BT_BuildType>Debug</BT_BuildType> <Debugger_HostApplication>C:\MC\Run\Office\Np++\x64\notepad++.exe</Debugger_HostApplication> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_1)'!=''"> <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> <DCC_DebugInformation>0</DCC_DebugInformation> <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_1_Win32)'!=''"> <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_2)'!=''"> <VerInfo_Debug>true</VerInfo_Debug> <VerInfo_PreRelease>true</VerInfo_PreRelease> <PostBuildEvent><![CDATA[]]></PostBuildEvent> <DCC_SymbolReferenceInfo>2</DCC_SymbolReferenceInfo> <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> <DCC_Optimize>false</DCC_Optimize> <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> <DCC_DebugInfoInExe>true</DCC_DebugInfoInExe> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''"> <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes> </PropertyGroup> <ItemGroup> <DelphiCompile Include="$(MainSource)"> <MainSource>MainSource</MainSource> |
︙ | ︙ | |||
126 127 128 129 130 131 132 | <Borland.ProjectType/> <BorlandProject> <Delphi.Personality> <Source> <Source Name="MainSource">PreviewHTML.dpr</Source> </Source> <Excluded_Packages> | | | < | 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | <Borland.ProjectType/> <BorlandProject> <Delphi.Personality> <Source> <Source Name="MainSource">PreviewHTML.dpr</Source> </Source> <Excluded_Packages> <Excluded_Packages Name="$(BDSBIN)\dcloffice2k250.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages> <Excluded_Packages Name="$(BDSBIN)\dclofficexp250.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages> </Excluded_Packages> <VersionInfo> <VersionInfo Name="IncludeVerInfo">False</VersionInfo> <VersionInfo Name="AutoIncBuild">False</VersionInfo> <VersionInfo Name="MajorVer">1</VersionInfo> <VersionInfo Name="MinorVer">2</VersionInfo> <VersionInfo Name="Release">0</VersionInfo> |
︙ | ︙ | |||
160 161 162 163 164 165 166 | <VersionInfoKeys Name="ProductName"/> <VersionInfoKeys Name="ProductVersion">6.0.0.0</VersionInfoKeys> <VersionInfoKeys Name="Comments"/> </VersionInfoKeys> </Delphi.Personality> <Platforms> <Platform value="Win32">True</Platform> | | | 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | <VersionInfoKeys Name="ProductName"/> <VersionInfoKeys Name="ProductVersion">6.0.0.0</VersionInfoKeys> <VersionInfoKeys Name="Comments"/> </VersionInfoKeys> </Delphi.Personality> <Platforms> <Platform value="Win32">True</Platform> <Platform value="Win64">True</Platform> </Platforms> </BorlandProject> <ProjectFileVersion>12</ProjectFileVersion> </ProjectExtensions> <Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/> <Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/> <PropertyGroup Condition="'$(Config)'=='Release' And '$(Platform)'=='Win32'"> |
︙ | ︙ |