├── .gitattributes ├── .gitignore ├── CodeProject Website.url ├── CudaPAD.sln ├── CudaPAD ├── AboutBox.Designer.cs ├── AboutBox.cs ├── AboutBox.resx ├── CudaPAD.csproj ├── Diff.cs ├── License.txt ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Resources │ ├── Find_5650.png │ ├── Folder(special)_5843_16x.png │ ├── GitHub2.bmp │ ├── PTXIcon16x16x8Only.ico │ ├── PTXIcon48.gif │ ├── PTXIcon48x48x8Only.ico │ ├── PTXIcon96.gif │ ├── Redo_16x.png │ └── codeProject2.bmp ├── ScintillaNET.dll ├── ScintillaNET.xml ├── ScintillaNETLicense.txt ├── VS_Tools.cs ├── app.config ├── customSyntaxHighlighting.xml ├── img │ ├── Diff24x22.bmp │ ├── Diff24x22Dis.bmp │ ├── Diff24x22Off.bmp │ ├── Diff24x22On.bmp │ ├── DiffStrip.bmp │ ├── Warning.bmp │ ├── auto24x22Off.bmp │ ├── auto24x22On.bmp │ ├── error.bmp │ ├── lines24x22.bmp │ ├── lines24x22Dis.bmp │ ├── lines24x22Off.bmp │ └── lines24x22On.bmp └── packages.config ├── GitHub Website.url ├── README.md └── license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/.gitignore -------------------------------------------------------------------------------- /CodeProject Website.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CodeProject Website.url -------------------------------------------------------------------------------- /CudaPAD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD.sln -------------------------------------------------------------------------------- /CudaPAD/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/AboutBox.Designer.cs -------------------------------------------------------------------------------- /CudaPAD/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/AboutBox.cs -------------------------------------------------------------------------------- /CudaPAD/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/AboutBox.resx -------------------------------------------------------------------------------- /CudaPAD/CudaPAD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/CudaPAD.csproj -------------------------------------------------------------------------------- /CudaPAD/Diff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Diff.cs -------------------------------------------------------------------------------- /CudaPAD/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/License.txt -------------------------------------------------------------------------------- /CudaPAD/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /CudaPAD/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/MainForm.cs -------------------------------------------------------------------------------- /CudaPAD/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/MainForm.resx -------------------------------------------------------------------------------- /CudaPAD/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Program.cs -------------------------------------------------------------------------------- /CudaPAD/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CudaPAD/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CudaPAD/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Properties/Resources.resx -------------------------------------------------------------------------------- /CudaPAD/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CudaPAD/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Properties/Settings.settings -------------------------------------------------------------------------------- /CudaPAD/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Properties/app.manifest -------------------------------------------------------------------------------- /CudaPAD/Resources/Find_5650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/Find_5650.png -------------------------------------------------------------------------------- /CudaPAD/Resources/Folder(special)_5843_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/Folder(special)_5843_16x.png -------------------------------------------------------------------------------- /CudaPAD/Resources/GitHub2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/GitHub2.bmp -------------------------------------------------------------------------------- /CudaPAD/Resources/PTXIcon16x16x8Only.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/PTXIcon16x16x8Only.ico -------------------------------------------------------------------------------- /CudaPAD/Resources/PTXIcon48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/PTXIcon48.gif -------------------------------------------------------------------------------- /CudaPAD/Resources/PTXIcon48x48x8Only.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/PTXIcon48x48x8Only.ico -------------------------------------------------------------------------------- /CudaPAD/Resources/PTXIcon96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/PTXIcon96.gif -------------------------------------------------------------------------------- /CudaPAD/Resources/Redo_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/Redo_16x.png -------------------------------------------------------------------------------- /CudaPAD/Resources/codeProject2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/Resources/codeProject2.bmp -------------------------------------------------------------------------------- /CudaPAD/ScintillaNET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/ScintillaNET.dll -------------------------------------------------------------------------------- /CudaPAD/ScintillaNET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/ScintillaNET.xml -------------------------------------------------------------------------------- /CudaPAD/ScintillaNETLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/ScintillaNETLicense.txt -------------------------------------------------------------------------------- /CudaPAD/VS_Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/VS_Tools.cs -------------------------------------------------------------------------------- /CudaPAD/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/app.config -------------------------------------------------------------------------------- /CudaPAD/customSyntaxHighlighting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/customSyntaxHighlighting.xml -------------------------------------------------------------------------------- /CudaPAD/img/Diff24x22.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/Diff24x22.bmp -------------------------------------------------------------------------------- /CudaPAD/img/Diff24x22Dis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/Diff24x22Dis.bmp -------------------------------------------------------------------------------- /CudaPAD/img/Diff24x22Off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/Diff24x22Off.bmp -------------------------------------------------------------------------------- /CudaPAD/img/Diff24x22On.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/Diff24x22On.bmp -------------------------------------------------------------------------------- /CudaPAD/img/DiffStrip.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/DiffStrip.bmp -------------------------------------------------------------------------------- /CudaPAD/img/Warning.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/Warning.bmp -------------------------------------------------------------------------------- /CudaPAD/img/auto24x22Off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/auto24x22Off.bmp -------------------------------------------------------------------------------- /CudaPAD/img/auto24x22On.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/auto24x22On.bmp -------------------------------------------------------------------------------- /CudaPAD/img/error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/error.bmp -------------------------------------------------------------------------------- /CudaPAD/img/lines24x22.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/lines24x22.bmp -------------------------------------------------------------------------------- /CudaPAD/img/lines24x22Dis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/lines24x22Dis.bmp -------------------------------------------------------------------------------- /CudaPAD/img/lines24x22Off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/lines24x22Off.bmp -------------------------------------------------------------------------------- /CudaPAD/img/lines24x22On.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/img/lines24x22On.bmp -------------------------------------------------------------------------------- /CudaPAD/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/CudaPAD/packages.config -------------------------------------------------------------------------------- /GitHub Website.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/GitHub Website.url -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetQuest/CudaPAD/HEAD/license.txt --------------------------------------------------------------------------------