├── .gitignore ├── Initial.Txt ├── LICENCE.TXT ├── Neatpad.dsw ├── Neatpad ├── NeatUtils.c ├── Neatpad.c ├── Neatpad.dsp ├── Neatpad.exe.manifest ├── Neatpad.h ├── OpenSave.c ├── Options.c ├── OptionsDisplay.c ├── OptionsFont.c ├── OptionsMisc.c ├── Printing.c ├── Search.c ├── ThemeUtils.c ├── Toolbars.c ├── bitmap1.bmp ├── bitmap2.bmp ├── bitmap3.bmp ├── bitmap4.bmp ├── icon0.ico ├── icon1.ico ├── icon2.ico ├── icon3.ico ├── icon4.ico ├── resource.h └── resource.rc ├── TextView ├── TextDocument.cpp ├── TextDocument.h ├── TextView.cpp ├── TextView.dsp ├── TextView.h ├── TextViewClipboard.cpp ├── TextViewFile.cpp ├── TextViewFont.cpp ├── TextViewInternal.h ├── TextViewKeyInput.cpp ├── TextViewKeyNav.cpp ├── TextViewMouse.cpp ├── TextViewPaint.cpp ├── TextViewParser.cpp ├── TextViewScroll.cpp ├── TextViewSyntax.cpp ├── Unicode.c ├── Unicode.h ├── codepages.h ├── racursor.h ├── sequence.cpp └── sequence.h ├── UspLib ├── USPDLL.dsp ├── USPDLL.dsw ├── UspCtrl.c ├── UspLib.c ├── UspLib.dsp ├── UspMain.c ├── UspMouse.c ├── UspPaint.c └── usplib.h └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/.gitignore -------------------------------------------------------------------------------- /Initial.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Initial.Txt -------------------------------------------------------------------------------- /LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/LICENCE.TXT -------------------------------------------------------------------------------- /Neatpad.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad.dsw -------------------------------------------------------------------------------- /Neatpad/NeatUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/NeatUtils.c -------------------------------------------------------------------------------- /Neatpad/Neatpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/Neatpad.c -------------------------------------------------------------------------------- /Neatpad/Neatpad.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/Neatpad.dsp -------------------------------------------------------------------------------- /Neatpad/Neatpad.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/Neatpad.exe.manifest -------------------------------------------------------------------------------- /Neatpad/Neatpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/Neatpad.h -------------------------------------------------------------------------------- /Neatpad/OpenSave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/OpenSave.c -------------------------------------------------------------------------------- /Neatpad/Options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/Options.c -------------------------------------------------------------------------------- /Neatpad/OptionsDisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/OptionsDisplay.c -------------------------------------------------------------------------------- /Neatpad/OptionsFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/OptionsFont.c -------------------------------------------------------------------------------- /Neatpad/OptionsMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/OptionsMisc.c -------------------------------------------------------------------------------- /Neatpad/Printing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/Printing.c -------------------------------------------------------------------------------- /Neatpad/Search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/Search.c -------------------------------------------------------------------------------- /Neatpad/ThemeUtils.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Neatpad/Toolbars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/Toolbars.c -------------------------------------------------------------------------------- /Neatpad/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/bitmap1.bmp -------------------------------------------------------------------------------- /Neatpad/bitmap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/bitmap2.bmp -------------------------------------------------------------------------------- /Neatpad/bitmap3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/bitmap3.bmp -------------------------------------------------------------------------------- /Neatpad/bitmap4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/bitmap4.bmp -------------------------------------------------------------------------------- /Neatpad/icon0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/icon0.ico -------------------------------------------------------------------------------- /Neatpad/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/icon1.ico -------------------------------------------------------------------------------- /Neatpad/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/icon2.ico -------------------------------------------------------------------------------- /Neatpad/icon3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/icon3.ico -------------------------------------------------------------------------------- /Neatpad/icon4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/icon4.ico -------------------------------------------------------------------------------- /Neatpad/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/resource.h -------------------------------------------------------------------------------- /Neatpad/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/Neatpad/resource.rc -------------------------------------------------------------------------------- /TextView/TextDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextDocument.cpp -------------------------------------------------------------------------------- /TextView/TextDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextDocument.h -------------------------------------------------------------------------------- /TextView/TextView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextView.cpp -------------------------------------------------------------------------------- /TextView/TextView.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextView.dsp -------------------------------------------------------------------------------- /TextView/TextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextView.h -------------------------------------------------------------------------------- /TextView/TextViewClipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewClipboard.cpp -------------------------------------------------------------------------------- /TextView/TextViewFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewFile.cpp -------------------------------------------------------------------------------- /TextView/TextViewFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewFont.cpp -------------------------------------------------------------------------------- /TextView/TextViewInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewInternal.h -------------------------------------------------------------------------------- /TextView/TextViewKeyInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewKeyInput.cpp -------------------------------------------------------------------------------- /TextView/TextViewKeyNav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewKeyNav.cpp -------------------------------------------------------------------------------- /TextView/TextViewMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewMouse.cpp -------------------------------------------------------------------------------- /TextView/TextViewPaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewPaint.cpp -------------------------------------------------------------------------------- /TextView/TextViewParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewParser.cpp -------------------------------------------------------------------------------- /TextView/TextViewScroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewScroll.cpp -------------------------------------------------------------------------------- /TextView/TextViewSyntax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/TextViewSyntax.cpp -------------------------------------------------------------------------------- /TextView/Unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/Unicode.c -------------------------------------------------------------------------------- /TextView/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/Unicode.h -------------------------------------------------------------------------------- /TextView/codepages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/codepages.h -------------------------------------------------------------------------------- /TextView/racursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/racursor.h -------------------------------------------------------------------------------- /TextView/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/sequence.cpp -------------------------------------------------------------------------------- /TextView/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/TextView/sequence.h -------------------------------------------------------------------------------- /UspLib/USPDLL.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/USPDLL.dsp -------------------------------------------------------------------------------- /UspLib/USPDLL.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/USPDLL.dsw -------------------------------------------------------------------------------- /UspLib/UspCtrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/UspCtrl.c -------------------------------------------------------------------------------- /UspLib/UspLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/UspLib.c -------------------------------------------------------------------------------- /UspLib/UspLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/UspLib.dsp -------------------------------------------------------------------------------- /UspLib/UspMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/UspMain.c -------------------------------------------------------------------------------- /UspLib/UspMouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/UspMouse.c -------------------------------------------------------------------------------- /UspLib/UspPaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/UspPaint.c -------------------------------------------------------------------------------- /UspLib/usplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/UspLib/usplib.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strobejb/Neatpad/HEAD/readme.txt --------------------------------------------------------------------------------