├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── CI_MS_analysis.yml │ ├── CI_build.yml │ └── codeql-analysis.yml ├── .gitignore ├── Common └── Ccpp │ ├── Common.cpp │ ├── Common.h │ ├── Notepad_plus_msgs.h │ ├── Notepad_plus_rc.h │ ├── NppDarkMode.h │ ├── NppDarkModeDummy.cpp │ ├── PluginInterface.h │ ├── SciSubClassWrp.h │ ├── Sci_Position.h │ ├── Scintilla.h │ ├── StaticDialog.cpp │ ├── StaticDialog.h │ ├── Utf8.h │ ├── Window.h │ ├── dpiManagerV2.cpp │ ├── dpiManagerV2.h │ ├── keys.h │ └── menuCmdID.h ├── HexEditor ├── change.log ├── lang │ ├── NativeLang_ger.ini │ └── NativeLang_template.ini ├── license.txt ├── projects │ └── 2003 │ │ └── HexEditor.vcxproj ├── readme.txt ├── res │ ├── HEXText.txt │ ├── hex.bmp │ └── hex.ico └── src │ ├── HEXDialog.cpp │ ├── HEXDialog.h │ ├── HEXDialog.rc │ ├── HEXResource.h │ ├── HelpDlg │ ├── HelpDialog.cpp │ ├── HelpDialog.h │ ├── URLCtrl.cpp │ └── URLCtrl.h │ ├── Hex.cpp │ ├── Hex.h │ ├── OptionDlg │ ├── ColumnDialog.cpp │ ├── ColumnDialog.h │ ├── OptionDialog.cpp │ └── OptionDialog.h │ ├── UserDlg │ ├── CompareDialog.cpp │ ├── CompareDialog.h │ ├── FindReplaceDialog.cpp │ ├── FindReplaceDialog.h │ ├── GotoDialog.cpp │ ├── GotoDialog.h │ ├── PatternDialog.cpp │ └── PatternDialog.h │ ├── Utf8_16.cpp │ ├── Utf8_16.h │ ├── misc │ ├── ColorCombo.cpp │ ├── ColorCombo.h │ ├── ColorPopup.cpp │ ├── ColorPopup.h │ ├── ModifyMenu.cpp │ ├── ModifyMenu.h │ ├── MultiTypeCombo.cpp │ └── MultiTypeCombo.h │ ├── resource.h │ └── tables.h ├── NativeLang ├── change.log ├── license.txt ├── readme.txt └── src │ ├── NativeLang_def.h │ └── lang │ ├── NativeLang_ger.ini │ └── NativeLang_template.ini ├── README.md └── appveyor.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI_MS_analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/.github/workflows/CI_MS_analysis.yml -------------------------------------------------------------------------------- /.github/workflows/CI_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/.github/workflows/CI_build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/Ccpp/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/Common.cpp -------------------------------------------------------------------------------- /Common/Ccpp/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/Common.h -------------------------------------------------------------------------------- /Common/Ccpp/Notepad_plus_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/Notepad_plus_msgs.h -------------------------------------------------------------------------------- /Common/Ccpp/Notepad_plus_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/Notepad_plus_rc.h -------------------------------------------------------------------------------- /Common/Ccpp/NppDarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/NppDarkMode.h -------------------------------------------------------------------------------- /Common/Ccpp/NppDarkModeDummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/NppDarkModeDummy.cpp -------------------------------------------------------------------------------- /Common/Ccpp/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/PluginInterface.h -------------------------------------------------------------------------------- /Common/Ccpp/SciSubClassWrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/SciSubClassWrp.h -------------------------------------------------------------------------------- /Common/Ccpp/Sci_Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/Sci_Position.h -------------------------------------------------------------------------------- /Common/Ccpp/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/Scintilla.h -------------------------------------------------------------------------------- /Common/Ccpp/StaticDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/StaticDialog.cpp -------------------------------------------------------------------------------- /Common/Ccpp/StaticDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/StaticDialog.h -------------------------------------------------------------------------------- /Common/Ccpp/Utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/Utf8.h -------------------------------------------------------------------------------- /Common/Ccpp/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/Window.h -------------------------------------------------------------------------------- /Common/Ccpp/dpiManagerV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/dpiManagerV2.cpp -------------------------------------------------------------------------------- /Common/Ccpp/dpiManagerV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/dpiManagerV2.h -------------------------------------------------------------------------------- /Common/Ccpp/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/keys.h -------------------------------------------------------------------------------- /Common/Ccpp/menuCmdID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/Common/Ccpp/menuCmdID.h -------------------------------------------------------------------------------- /HexEditor/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/change.log -------------------------------------------------------------------------------- /HexEditor/lang/NativeLang_ger.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/lang/NativeLang_ger.ini -------------------------------------------------------------------------------- /HexEditor/lang/NativeLang_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/lang/NativeLang_template.ini -------------------------------------------------------------------------------- /HexEditor/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/license.txt -------------------------------------------------------------------------------- /HexEditor/projects/2003/HexEditor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/projects/2003/HexEditor.vcxproj -------------------------------------------------------------------------------- /HexEditor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/readme.txt -------------------------------------------------------------------------------- /HexEditor/res/HEXText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/res/HEXText.txt -------------------------------------------------------------------------------- /HexEditor/res/hex.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/res/hex.bmp -------------------------------------------------------------------------------- /HexEditor/res/hex.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/res/hex.ico -------------------------------------------------------------------------------- /HexEditor/src/HEXDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/HEXDialog.cpp -------------------------------------------------------------------------------- /HexEditor/src/HEXDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/HEXDialog.h -------------------------------------------------------------------------------- /HexEditor/src/HEXDialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/HEXDialog.rc -------------------------------------------------------------------------------- /HexEditor/src/HEXResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/HEXResource.h -------------------------------------------------------------------------------- /HexEditor/src/HelpDlg/HelpDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/HelpDlg/HelpDialog.cpp -------------------------------------------------------------------------------- /HexEditor/src/HelpDlg/HelpDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/HelpDlg/HelpDialog.h -------------------------------------------------------------------------------- /HexEditor/src/HelpDlg/URLCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/HelpDlg/URLCtrl.cpp -------------------------------------------------------------------------------- /HexEditor/src/HelpDlg/URLCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/HelpDlg/URLCtrl.h -------------------------------------------------------------------------------- /HexEditor/src/Hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/Hex.cpp -------------------------------------------------------------------------------- /HexEditor/src/Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/Hex.h -------------------------------------------------------------------------------- /HexEditor/src/OptionDlg/ColumnDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/OptionDlg/ColumnDialog.cpp -------------------------------------------------------------------------------- /HexEditor/src/OptionDlg/ColumnDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/OptionDlg/ColumnDialog.h -------------------------------------------------------------------------------- /HexEditor/src/OptionDlg/OptionDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/OptionDlg/OptionDialog.cpp -------------------------------------------------------------------------------- /HexEditor/src/OptionDlg/OptionDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/OptionDlg/OptionDialog.h -------------------------------------------------------------------------------- /HexEditor/src/UserDlg/CompareDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/UserDlg/CompareDialog.cpp -------------------------------------------------------------------------------- /HexEditor/src/UserDlg/CompareDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/UserDlg/CompareDialog.h -------------------------------------------------------------------------------- /HexEditor/src/UserDlg/FindReplaceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/UserDlg/FindReplaceDialog.cpp -------------------------------------------------------------------------------- /HexEditor/src/UserDlg/FindReplaceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/UserDlg/FindReplaceDialog.h -------------------------------------------------------------------------------- /HexEditor/src/UserDlg/GotoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/UserDlg/GotoDialog.cpp -------------------------------------------------------------------------------- /HexEditor/src/UserDlg/GotoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/UserDlg/GotoDialog.h -------------------------------------------------------------------------------- /HexEditor/src/UserDlg/PatternDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/UserDlg/PatternDialog.cpp -------------------------------------------------------------------------------- /HexEditor/src/UserDlg/PatternDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/UserDlg/PatternDialog.h -------------------------------------------------------------------------------- /HexEditor/src/Utf8_16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/Utf8_16.cpp -------------------------------------------------------------------------------- /HexEditor/src/Utf8_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/Utf8_16.h -------------------------------------------------------------------------------- /HexEditor/src/misc/ColorCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/misc/ColorCombo.cpp -------------------------------------------------------------------------------- /HexEditor/src/misc/ColorCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/misc/ColorCombo.h -------------------------------------------------------------------------------- /HexEditor/src/misc/ColorPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/misc/ColorPopup.cpp -------------------------------------------------------------------------------- /HexEditor/src/misc/ColorPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/misc/ColorPopup.h -------------------------------------------------------------------------------- /HexEditor/src/misc/ModifyMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/misc/ModifyMenu.cpp -------------------------------------------------------------------------------- /HexEditor/src/misc/ModifyMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/misc/ModifyMenu.h -------------------------------------------------------------------------------- /HexEditor/src/misc/MultiTypeCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/misc/MultiTypeCombo.cpp -------------------------------------------------------------------------------- /HexEditor/src/misc/MultiTypeCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/misc/MultiTypeCombo.h -------------------------------------------------------------------------------- /HexEditor/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/resource.h -------------------------------------------------------------------------------- /HexEditor/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/HexEditor/src/tables.h -------------------------------------------------------------------------------- /NativeLang/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/NativeLang/change.log -------------------------------------------------------------------------------- /NativeLang/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/NativeLang/license.txt -------------------------------------------------------------------------------- /NativeLang/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/NativeLang/readme.txt -------------------------------------------------------------------------------- /NativeLang/src/NativeLang_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/NativeLang/src/NativeLang_def.h -------------------------------------------------------------------------------- /NativeLang/src/lang/NativeLang_ger.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/NativeLang/src/lang/NativeLang_ger.ini -------------------------------------------------------------------------------- /NativeLang/src/lang/NativeLang_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/NativeLang/src/lang/NativeLang_template.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chcg/NPP_HexEdit/HEAD/appveyor.yml --------------------------------------------------------------------------------