├── .gitignore ├── AStyle ├── AStyle.exe └── doc │ ├── astyle.html │ ├── index.html │ ├── install.html │ ├── license.html │ ├── links.html │ ├── news.html │ ├── notes.html │ ├── scripts.html │ ├── styles.css │ ├── subversion.html │ └── vsinstall.html ├── COPYING.txt ├── Help ├── FAQ │ ├── Compiler.htm │ ├── Editor.htm │ ├── Environment.htm │ └── Versions.htm ├── Interface │ ├── Dialog Windows │ │ ├── Compiler Options │ │ │ ├── Directories.htm │ │ │ ├── General.htm │ │ │ ├── Makefile.htm │ │ │ ├── Programs.htm │ │ │ ├── Settings.htm │ │ │ └── index.htm │ │ ├── Profile Analysis │ │ │ ├── Call Graph.htm │ │ │ ├── Flat Output.htm │ │ │ ├── Profiling Options.htm │ │ │ └── index.htm │ │ └── Project Options │ │ │ ├── Build Options.htm │ │ │ ├── Compiler.htm │ │ │ ├── Directories.htm │ │ │ ├── Files.htm │ │ │ ├── General.htm │ │ │ ├── Makefile.htm │ │ │ ├── Parameters.htm │ │ │ └── Version Info.htm │ └── Menus │ │ ├── Edit.htm │ │ ├── File.htm │ │ ├── Project.htm │ │ ├── Search.htm │ │ └── View.htm ├── Subjects │ ├── Compiling.htm │ ├── Debugging.htm │ ├── Editing.htm │ └── Profiling.htm ├── content.css ├── index.htm ├── intro.htm ├── jquery191.min.js ├── logo.png ├── main.css └── main.js ├── Icons ├── Book.ico ├── Communication.ico ├── Console.ico ├── ConsoleToo.ico ├── Crazy.ico ├── DLL.ico ├── Danger.ico ├── Documentation.ico ├── Edit.ico ├── Editor.ico ├── Empty.ico ├── File Management.ico ├── Folder.ico ├── Food.ico ├── Games.ico ├── Goofy.ico ├── Movie.ico ├── Multimedia.ico ├── Paint.ico ├── Pizza.ico ├── Rescue.ico ├── Smile.ico ├── Software.ico ├── StaticLib.ico ├── Ufo.ico ├── Window.ico ├── Windows.ico └── mainicon.ico ├── Lang ├── Bulgarian.lng ├── Catalan.lng ├── Catalan.tips ├── Chinese.lng ├── Chinese.tips ├── Chinese_TC.lng ├── Croatian.lng ├── Czech.lng ├── Czech.tips ├── Danish.lng ├── Danish.tips ├── Dutch.lng ├── Dutch.tips ├── English.lng ├── English.tips ├── Estonian.lng ├── Estonian.tips ├── French.lng ├── French.tips ├── Galego.lng ├── Galego.tips ├── German.lng ├── German.tips ├── Greek.lng ├── Hebrew.lng ├── Hebrew.tips ├── Hungarian.lng ├── Hungarian.tips ├── Italian.lng ├── Italian.tips ├── Japanese.lng ├── Japanese.tips ├── Korean.lng ├── Korean.tips ├── Latvian.lng ├── Latvian.tips ├── Norwegian.lng ├── Norwegian.tips ├── Polish.lng ├── Polish.tips ├── Portuguese.lng ├── Portuguese.tips ├── Romanian.lng ├── Romanian.tips ├── Russian.lng ├── Russian.tips ├── Slovak.lng ├── Slovenian.lng ├── Slovenian.tips ├── Spanish.lng ├── Spanish.tips ├── SpanishCastellano.lng ├── SpanishCastellano.tips ├── SpanishColombia.lng ├── SpanishColombia.tips ├── Swedish.lng ├── Swedish.tips ├── Turkish.lng ├── Turkish.tips ├── Ukrainian.lng └── Ukrainian.tips ├── NEWS.txt ├── Source ├── AboutFrm.dfm ├── AboutFrm.pas ├── AddToDoFrm.dfm ├── AddToDoFrm.pas ├── CFGData.pas ├── CPUFrm.dfm ├── CPUFrm.pas ├── CleanSource.bat ├── CodeInsList.pas ├── CodeToolTip.pas ├── CodeToolTip.res ├── CompOptionsFrame.dfm ├── CompOptionsFrame.pas ├── CompOptionsFrm.dfm ├── CompOptionsFrm.pas ├── CompileResources.bat ├── Compiler.pas ├── DataFrm.dfm ├── DataFrm.pas ├── DebugReader.pas ├── Debugger.pas ├── DefaultFiles.rc ├── DefaultFiles.res ├── Editor.pas ├── EditorList.pas ├── EditorOptFrm.dfm ├── EditorOptFrm.pas ├── EnviroFrm.dfm ├── EnviroFrm.pas ├── ExceptionFrm.dfm ├── ExceptionFrm.pas ├── FastMM4.pas ├── FastMM4Messages.pas ├── FastMM4Options.inc ├── FileAssocs.pas ├── FilePropertiesFrm.dfm ├── FilePropertiesFrm.pas ├── FindFrm.dfm ├── FindFrm.pas ├── FormatterOptionsFrm.dfm ├── FormatterOptionsFrm.pas ├── FunctionSearchFrm.dfm ├── FunctionSearchFrm.pas ├── GotoLineFrm.dfm ├── GotoLineFrm.pas ├── IconFrm.dfm ├── IconFrm.pas ├── Icons.rc ├── ImageTheme.pas ├── Images │ ├── associations │ │ ├── IDE2.ico │ │ ├── c.ico │ │ ├── cpp.ico │ │ ├── dev.ico │ │ ├── devpackage.ico │ │ ├── devpak.ico │ │ ├── h.ico │ │ ├── hpp.ico │ │ ├── ide.ico │ │ ├── o.ico │ │ ├── obj.ico │ │ ├── rc.ico │ │ └── template.ico │ ├── blue │ │ ├── About.bmp │ │ ├── Add.bmp │ │ ├── Arrange%20Icons.bmp │ │ ├── Bloodshed%20Homepage.bmp │ │ ├── Bookmarks.bmp │ │ ├── Cancel.bmp │ │ ├── Check%20for%20Update.bmp │ │ ├── Close.bmp │ │ ├── Compile%20And%20Run.bmp │ │ ├── Compile.bmp │ │ ├── Compiler%20Options.bmp │ │ ├── Compiler%20Results.bmp │ │ ├── Compiler%20ResultsX.bmp │ │ ├── Copy.bmp │ │ ├── Cut.bmp │ │ ├── Debug.bmp │ │ ├── Delete.bmp │ │ ├── Document of Project Manager.bmp │ │ ├── Down.bmp │ │ ├── EditorOptions.bmp │ │ ├── Environment Options.bmp │ │ ├── Execute.bmp │ │ ├── Exit.bmp │ │ ├── Explorer.bmp │ │ ├── Export.bmp │ │ ├── Find again.bmp │ │ ├── Find.bmp │ │ ├── FullscreenMode.bmp │ │ ├── Goto%20Bookmarks.bmp │ │ ├── Goto%20Line.bmp │ │ ├── Help.bmp │ │ ├── MS-DOS.bmp │ │ ├── Make.bmp │ │ ├── Minimize%20All.bmp │ │ ├── New.bmp │ │ ├── New2.bmp │ │ ├── Next.bmp │ │ ├── OK.bmp │ │ ├── Open.bmp │ │ ├── Package Manager.bmp │ │ ├── Paste.bmp │ │ ├── Preferences.bmp │ │ ├── Previous.bmp │ │ ├── Print.bmp │ │ ├── Project of Project Manager.bmp │ │ ├── Project.bmp │ │ ├── Properties.bmp │ │ ├── Rebuild%20All.bmp │ │ ├── Redo.bmp │ │ ├── Remove.bmp │ │ ├── Replace.bmp │ │ ├── Resource.bmp │ │ ├── Save%20All.bmp │ │ ├── Save%20As.bmp │ │ ├── Save.bmp │ │ ├── Setup.bmp │ │ ├── Toolbars.bmp │ │ ├── Tutorial.bmp │ │ ├── Typewriter.bmp │ │ ├── Undo.bmp │ │ └── Window.bmp │ ├── classparser │ │ ├── class.bmp │ │ ├── class_folder.bmp │ │ ├── method_inherited.bmp │ │ ├── method_inherited_protected.bmp │ │ ├── method_private.bmp │ │ ├── method_protected.bmp │ │ ├── method_public.bmp │ │ ├── var_inherited.bmp │ │ ├── var_inherited_protected.bmp │ │ ├── var_private.bmp │ │ ├── var_protected.bmp │ │ └── var_public.bmp │ ├── donate.bmp │ ├── donatesmall.bmp │ ├── gnome │ │ ├── About.bmp │ │ ├── Add.bmp │ │ ├── Arrange Icons.bmp │ │ ├── Bloodshed Homepage.bmp │ │ ├── Bookmarks.bmp │ │ ├── Check for Update.bmp │ │ ├── Close.bmp │ │ ├── Compile And Run.bmp │ │ ├── Compile.bmp │ │ ├── Compiler Options.bmp │ │ ├── Compiler Results.bmp │ │ ├── Compiler ResultsX.bmp │ │ ├── Copy.bmp │ │ ├── Cut.bmp │ │ ├── Debug.bmp │ │ ├── Delete.bmp │ │ ├── Down.bmp │ │ ├── Environment Options.bmp │ │ ├── Execute.bmp │ │ ├── Exit.bmp │ │ ├── Explorer.bmp │ │ ├── Export.bmp │ │ ├── Find.bmp │ │ ├── Goto Bookmarks.bmp │ │ ├── Goto Line.bmp │ │ ├── Help.bmp │ │ ├── MS-DOS.bmp │ │ ├── Make.bmp │ │ ├── Minimize All.bmp │ │ ├── New.bmp │ │ ├── New2.bmp │ │ ├── Next.bmp │ │ ├── Open.bmp │ │ ├── Paste.bmp │ │ ├── Preferences.bmp │ │ ├── Previous.bmp │ │ ├── Print.bmp │ │ ├── Project.bmp │ │ ├── Properties.bmp │ │ ├── Rebuild All.bmp │ │ ├── Redo.bmp │ │ ├── Remove.bmp │ │ ├── Replace.bmp │ │ ├── Resource.bmp │ │ ├── Save All.bmp │ │ ├── Save As.bmp │ │ ├── Save.bmp │ │ ├── Setup.bmp │ │ ├── Toolbars.bmp │ │ ├── Tutorial.bmp │ │ ├── Typewriter.bmp │ │ ├── Undo.bmp │ │ └── Window.bmp │ ├── newlook │ │ ├── about.bmp │ │ ├── add.bmp │ │ ├── addbook.bmp │ │ ├── addsrc.bmp │ │ ├── arricon.bmp │ │ ├── bughlp.bmp │ │ ├── close.bmp │ │ ├── closeall.bmp │ │ ├── closefl.bmp │ │ ├── clrhist.bmp │ │ ├── clsall.bmp │ │ ├── compile.bmp │ │ ├── compopt.bmp │ │ ├── compres.bmp │ │ ├── compresx.bmp │ │ ├── comprun.bmp │ │ ├── copy.bmp │ │ ├── cut.bmp │ │ ├── debug.bmp │ │ ├── dos.bmp │ │ ├── empty.bmp │ │ ├── envopt.bmp │ │ ├── explor.bmp │ │ ├── export.bmp │ │ ├── gobook.bmp │ │ ├── goto.bmp │ │ ├── help.bmp │ │ ├── homepg.bmp │ │ ├── icon.bmp │ │ ├── insert.bmp │ │ ├── makefl.bmp │ │ ├── minall.bmp │ │ ├── newproj.bmp │ │ ├── newsrc.bmp │ │ ├── newtemp.bmp │ │ ├── next.bmp │ │ ├── opnproj.bmp │ │ ├── package.bmp │ │ ├── packman.bmp │ │ ├── paste.bmp │ │ ├── prev.bmp │ │ ├── print.bmp │ │ ├── projopt.bmp │ │ ├── rebuild.bmp │ │ ├── redo.bmp │ │ ├── remsrc.bmp │ │ ├── reopen.bmp │ │ ├── resrc.bmp │ │ ├── run.bmp │ │ ├── save.bmp │ │ ├── saveall.bmp │ │ ├── saveas.bmp │ │ ├── screen.bmp │ │ ├── search.bmp │ │ ├── srcagain.bmp │ │ ├── srchrep.bmp │ │ ├── syntcheck.bmp │ │ ├── temphlp.bmp │ │ ├── tile.bmp │ │ ├── toolbar.bmp │ │ ├── tools.bmp │ │ ├── tutor.bmp │ │ ├── undo.bmp │ │ └── update.bmp │ ├── packman.ico │ └── splash.bmp ├── ImportCBFrm.dfm ├── ImportCBFrm.pas ├── ImportMSVCFrm.dfm ├── ImportMSVCFrm.pas ├── IncrementalFrm.dfm ├── IncrementalFrm.pas ├── Instances.pas ├── LangFrm.dfm ├── LangFrm.pas ├── LangIDs.inc ├── Macros.pas ├── MultiLangSupport.pas ├── NewClassFrm.dfm ├── NewClassFrm.pas ├── NewFunctionFrm.dfm ├── NewFunctionFrm.pas ├── NewProjectFrm.dfm ├── NewProjectFrm.pas ├── NewTemplateFrm.dfm ├── NewTemplateFrm.pas ├── NewVarFrm.dfm ├── NewVarFrm.pas ├── ParamsFrm.dfm ├── ParamsFrm.pas ├── PrintFrm.dfm ├── PrintFrm.pas ├── ProcessListFrm.dfm ├── ProcessListFrm.pas ├── ProfileAnalysisFrm.dfm ├── ProfileAnalysisFrm.pas ├── Project.pas ├── ProjectOptionsFrm.dfm ├── ProjectOptionsFrm.pas ├── ProjectTypes.pas ├── README.txt ├── RemoveUnitFrm.dfm ├── RemoveUnitFrm.pas ├── TODO.txt ├── Templates.pas ├── Tests.pas ├── Tests │ ├── Document │ │ ├── DevTest.pdf │ │ ├── automatic.tex │ │ ├── compare.tex │ │ ├── main.tex │ │ └── manual.tex │ ├── Explorer │ │ ├── Dirlight.cpp │ │ ├── Dirlight.h │ │ ├── Dropdown.cpp │ │ ├── Dropdown.h │ │ ├── Edit.cpp │ │ ├── Edit.h │ │ ├── FXHandle.cpp │ │ ├── FXHandle.h │ │ ├── FXShader.cpp │ │ ├── FXShader.h │ │ ├── FXVariable.cpp │ │ ├── FXVariable.h │ │ ├── Project │ │ │ ├── FunctionViewer.dev │ │ │ ├── FunctionViewer.exe │ │ │ ├── FunctionViewer.layout │ │ │ ├── Makefile.win │ │ │ ├── main.cpp │ │ │ └── main.o │ │ ├── float2.cpp │ │ ├── float2.h │ │ ├── float3.cpp │ │ ├── float3.h │ │ ├── float4.cpp │ │ ├── float4.h │ │ ├── float4x4.cpp │ │ └── float4x4.h │ ├── Fail.txt │ ├── Folds │ │ └── main.cpp │ ├── Parser │ │ ├── Code.cpp │ │ ├── Folder │ │ │ └── IncludeTestB.h │ │ ├── Function.cpp │ │ ├── Function.h │ │ ├── Include.cpp │ │ ├── IncludeTestA.h │ │ ├── OperatorTest.cpp │ │ ├── Preprocessor.cpp │ │ ├── SimpleClass.cpp │ │ ├── Struct.cpp │ │ ├── Typedef.cpp │ │ ├── Variable.cpp │ │ ├── float3.cpp │ │ ├── stl │ │ │ ├── basic_string.h │ │ │ ├── stl_deque.h │ │ │ ├── stl_list.h │ │ │ ├── stl_map.h │ │ │ ├── stl_queue.h │ │ │ ├── stl_stack.h │ │ │ └── stl_vector.h │ │ └── string.cpp │ └── Project │ │ ├── TestProject.dev │ │ └── main.cpp ├── TipOfTheDayFrm.dfm ├── TipOfTheDayFrm.pas ├── ToolEditFrm.dfm ├── ToolEditFrm.pas ├── ToolFrm.dfm ├── ToolFrm.pas ├── Tools │ ├── ConsolePauser │ │ ├── ConsolePauser.dev │ │ └── main.cpp │ ├── DevCppPortable │ │ ├── devcpp.ico │ │ ├── devcppPortable.dev │ │ ├── lib │ │ │ └── libshlwapi.a │ │ ├── main.cpp │ │ └── resource.rc │ ├── GitPush │ │ ├── GitPush.dev │ │ └── main.cpp │ ├── KeywordHighlighter │ │ ├── KeywordHighlighter.dev │ │ └── main.cpp │ ├── LangCheck │ │ ├── LangCheck.dev │ │ ├── LangCompare.cpp │ │ ├── LangCompare.h │ │ ├── LangFile.cpp │ │ ├── LangFile.h │ │ ├── main.cpp │ │ ├── resource.cpp │ │ └── resource.h │ ├── PackMaker │ │ ├── Blocks.obj │ │ ├── BzLib.obj │ │ ├── Compress.obj │ │ ├── Decompress.obj │ │ ├── Huffman.obj │ │ ├── LibTar.pas │ │ ├── PackMaker.dof │ │ ├── PackMaker.dpr │ │ ├── PackMaker.res │ │ ├── actionfrm.dfm │ │ ├── actionfrm.pas │ │ ├── buildfrm.dfm │ │ ├── buildfrm.pas │ │ ├── bzip2.pas │ │ ├── filefrm.dfm │ │ ├── filefrm.pas │ │ ├── main.dfm │ │ ├── main.pas │ │ ├── menufrm.dfm │ │ └── menufrm.pas │ └── Packman │ │ ├── AboutForms.dfm │ │ ├── AboutForms.pas │ │ ├── Blocks.obj │ │ ├── BzLib.obj │ │ ├── Compress.obj │ │ ├── Decompress.obj │ │ ├── DetailsForms.dfm │ │ ├── DetailsForms.pas │ │ ├── ExceptionsAnalyzer.dfm │ │ ├── ExceptionsAnalyzer.pas │ │ ├── ExtractionProgressDialog.dfm │ │ ├── ExtractionProgressDialog.pas │ │ ├── File Format.txt │ │ ├── Huffman.obj │ │ ├── InstallFiles.pas │ │ ├── InstallWizards.dfm │ │ ├── InstallWizards.pas │ │ ├── Installers.pas │ │ ├── LibTar.pas │ │ ├── Main.dfm │ │ ├── Main.pas │ │ ├── Packman.cfg │ │ ├── Packman.dof │ │ ├── Packman.dpr │ │ ├── Packman.res │ │ ├── PackmanExitCodesU.pas │ │ ├── PackmanUtils.pas │ │ ├── RemoveForms.dfm │ │ ├── RemoveForms.pas │ │ ├── VerifyForms.dfm │ │ ├── VerifyForms.pas │ │ ├── bzip2.pas │ │ └── unzip │ │ ├── unzip.inc │ │ ├── unzip.pas │ │ └── ziptypes.pas ├── Units │ └── dummy.txt ├── Utils.pas ├── VCL │ ├── ClassBrowsing │ │ ├── CBUtils.pas │ │ ├── ClassBrowser.pas │ │ ├── ClassBrowsing.cfg │ │ ├── ClassBrowsing.dcr │ │ ├── ClassBrowsing.dof │ │ ├── ClassBrowsing.dpk │ │ ├── ClassBrowsing.res │ │ ├── CodeCompletion.dcr │ │ ├── CodeCompletion.pas │ │ ├── CodeCompletionForm.dfm │ │ ├── CodeCompletionForm.pas │ │ ├── CppParser.dcr │ │ ├── CppParser.pas │ │ ├── CppPreprocessor.dcr │ │ ├── CppPreprocessor.pas │ │ ├── CppTokenizer.dcr │ │ ├── CppTokenizer.pas │ │ ├── IntList.pas │ │ └── StatementList.pas │ ├── CompOptionsList │ │ └── CompOptionsList.pas │ ├── DevCpp.dof │ ├── DevCpp.dpk │ ├── DevCpp.res │ ├── SynEdit │ │ ├── Contributors.txt │ │ ├── Packages │ │ │ ├── SynEdit_BCB3.bpk │ │ │ ├── SynEdit_BCB3.cpp │ │ │ ├── SynEdit_BCB4.bpk │ │ │ ├── SynEdit_BCB4.cpp │ │ │ ├── SynEdit_BCB5.bpk │ │ │ ├── SynEdit_BCB5.cpp │ │ │ ├── SynEdit_BCB6.bpk │ │ │ ├── SynEdit_BCB6.cpp │ │ │ ├── SynEdit_BCB6_PE.bpk │ │ │ ├── SynEdit_BCB6_PE.cpp │ │ │ ├── SynEdit_D2005.bdsproj │ │ │ ├── SynEdit_D2005.dpk │ │ │ ├── SynEdit_D2006.bdsproj │ │ │ ├── SynEdit_D2006.dpk │ │ │ ├── SynEdit_D3.dpk │ │ │ ├── SynEdit_D4.dpk │ │ │ ├── SynEdit_D5.dpk │ │ │ ├── SynEdit_D6.dpk │ │ │ ├── SynEdit_D6_CLX.dpk │ │ │ ├── SynEdit_D6_PE.dpk │ │ │ ├── SynEdit_D7.cfg │ │ │ ├── SynEdit_D7.dof │ │ │ ├── SynEdit_D7.dpk │ │ │ ├── SynEdit_D7.res │ │ │ ├── SynEdit_D7_CLX.dpk │ │ │ ├── SynEdit_D7_PE.dpk │ │ │ ├── SynEdit_R2005.bdsproj │ │ │ ├── SynEdit_R2005.dpk │ │ │ ├── SynEdit_R2006.bdsproj │ │ │ ├── SynEdit_R2006.dpk │ │ │ ├── SynEdit_R5.dpk │ │ │ ├── SynEdit_R6.dpk │ │ │ ├── SynEdit_R6_PE.dpk │ │ │ ├── SynEdit_R7.cfg │ │ │ ├── SynEdit_R7.dof │ │ │ ├── SynEdit_R7.dpk │ │ │ ├── SynEdit_R7.res │ │ │ ├── synedit_kylix.dpk │ │ │ ├── synedit_kylix.res │ │ │ └── synedit_kylix_OE.dpk │ │ ├── Readme.txt │ │ └── Source │ │ │ ├── Page.bmp │ │ │ ├── QSynAutoCorrect.pas │ │ │ ├── QSynAutoCorrectEditor.dfm │ │ │ ├── QSynAutoCorrectEditor.pas │ │ │ ├── QSynCompletionProposal.pas │ │ │ ├── QSynDBEdit.pas │ │ │ ├── QSynEdit.pas │ │ │ ├── QSynEditAutoComplete.pas │ │ │ ├── QSynEditExport.pas │ │ │ ├── QSynEditHighlighter.pas │ │ │ ├── QSynEditKbdHandler.pas │ │ │ ├── QSynEditKeyCmdEditor.dfm │ │ │ ├── QSynEditKeyCmdEditor.pas │ │ │ ├── QSynEditKeyCmds.pas │ │ │ ├── QSynEditKeyCmdsEditor.dfm │ │ │ ├── QSynEditKeyCmdsEditor.pas │ │ │ ├── QSynEditKeyConst.pas │ │ │ ├── QSynEditMiscClasses.pas │ │ │ ├── QSynEditMiscProcs.pas │ │ │ ├── QSynEditOptionsDialog.dfm │ │ │ ├── QSynEditOptionsDialog.pas │ │ │ ├── QSynEditPlugins.pas │ │ │ ├── QSynEditPrint.pas │ │ │ ├── QSynEditPrintHeaderFooter.pas │ │ │ ├── QSynEditPrintMargins.pas │ │ │ ├── QSynEditPrintMarginsDialog.dfm │ │ │ ├── QSynEditPrintMarginsDialog.pas │ │ │ ├── QSynEditPrintPreview.pas │ │ │ ├── QSynEditPrintTypes.pas │ │ │ ├── QSynEditPrinterInfo.pas │ │ │ ├── QSynEditPropertyReg.pas │ │ │ ├── QSynEditPythonBehaviour.pas │ │ │ ├── QSynEditReg.pas │ │ │ ├── QSynEditRegexSearch.pas │ │ │ ├── QSynEditSearch.pas │ │ │ ├── QSynEditStrConst.pas │ │ │ ├── QSynEditTextBuffer.pas │ │ │ ├── QSynEditTypes.pas │ │ │ ├── QSynEditWildcardSearch.pas │ │ │ ├── QSynEditWordWrap.pas │ │ │ ├── QSynExportHTML.pas │ │ │ ├── QSynExportRTF.pas │ │ │ ├── QSynExportTeX.pas │ │ │ ├── QSynHighlighterADSP21xx.pas │ │ │ ├── QSynHighlighterAWK.pas │ │ │ ├── QSynHighlighterAsm.pas │ │ │ ├── QSynHighlighterBaan.pas │ │ │ ├── QSynHighlighterBat.pas │ │ │ ├── QSynHighlighterCAC.pas │ │ │ ├── QSynHighlighterCPM.pas │ │ │ ├── QSynHighlighterCS.pas │ │ │ ├── QSynHighlighterCache.pas │ │ │ ├── QSynHighlighterCobol.pas │ │ │ ├── QSynHighlighterCpp.pas │ │ │ ├── QSynHighlighterCss.pas │ │ │ ├── QSynHighlighterDOT.pas │ │ │ ├── QSynHighlighterDfm.pas │ │ │ ├── QSynHighlighterDml.pas │ │ │ ├── QSynHighlighterEiffel.pas │ │ │ ├── QSynHighlighterFortran.pas │ │ │ ├── QSynHighlighterFoxpro.pas │ │ │ ├── QSynHighlighterGWS.pas │ │ │ ├── QSynHighlighterGalaxy.pas │ │ │ ├── QSynHighlighterGeneral.pas │ │ │ ├── QSynHighlighterHC11.pas │ │ │ ├── QSynHighlighterHP48.pas │ │ │ ├── QSynHighlighterHashEntries.pas │ │ │ ├── QSynHighlighterHaskell.pas │ │ │ ├── QSynHighlighterHtml.pas │ │ │ ├── QSynHighlighterIDL.pas │ │ │ ├── QSynHighlighterIni.pas │ │ │ ├── QSynHighlighterInno.pas │ │ │ ├── QSynHighlighterJScript.pas │ │ │ ├── QSynHighlighterJava.pas │ │ │ ├── QSynHighlighterKix.pas │ │ │ ├── QSynHighlighterLDraw.pas │ │ │ ├── QSynHighlighterM3.pas │ │ │ ├── QSynHighlighterManager.pas │ │ │ ├── QSynHighlighterModelica.pas │ │ │ ├── QSynHighlighterMsg.pas │ │ │ ├── QSynHighlighterMulti.pas │ │ │ ├── QSynHighlighterPHP.pas │ │ │ ├── QSynHighlighterPas.pas │ │ │ ├── QSynHighlighterPerl.pas │ │ │ ├── QSynHighlighterProgress.pas │ │ │ ├── QSynHighlighterPython.pas │ │ │ ├── QSynHighlighterRC.pas │ │ │ ├── QSynHighlighterRuby.pas │ │ │ ├── QSynHighlighterSDD.pas │ │ │ ├── QSynHighlighterSQL.pas │ │ │ ├── QSynHighlighterST.pas │ │ │ ├── QSynHighlighterSml.pas │ │ │ ├── QSynHighlighterTclTk.pas │ │ │ ├── QSynHighlighterTeX.pas │ │ │ ├── QSynHighlighterUNIXShellScript.pas │ │ │ ├── QSynHighlighterURI.pas │ │ │ ├── QSynHighlighterUnreal.pas │ │ │ ├── QSynHighlighterVB.pas │ │ │ ├── QSynHighlighterVBScript.pas │ │ │ ├── QSynHighlighterVrml97.pas │ │ │ ├── QSynHighlighterXML.pas │ │ │ ├── QSynMacroRecorder.pas │ │ │ ├── QSynMemo.pas │ │ │ ├── QSynRegExpr.pas │ │ │ ├── QSynURIOpener.pas │ │ │ ├── SynAutoCorrect.pas │ │ │ ├── SynAutoCorrectEditor.dfm │ │ │ ├── SynAutoCorrectEditor.pas │ │ │ ├── SynCompletionProposal.pas │ │ │ ├── SynDBEdit.pas │ │ │ ├── SynEdit.inc │ │ │ ├── SynEdit.pas │ │ │ ├── SynEdit.res │ │ │ ├── SynEditAutoComplete.pas │ │ │ ├── SynEditCodeFolding.pas │ │ │ ├── SynEditExport.pas │ │ │ ├── SynEditHighlighter.pas │ │ │ ├── SynEditKbdHandler.pas │ │ │ ├── SynEditKeyCmdEditor.dfm │ │ │ ├── SynEditKeyCmdEditor.pas │ │ │ ├── SynEditKeyCmds.pas │ │ │ ├── SynEditKeyCmdsEditor.dfm │ │ │ ├── SynEditKeyCmdsEditor.pas │ │ │ ├── SynEditKeyConst.pas │ │ │ ├── SynEditMiscClasses.pas │ │ │ ├── SynEditMiscProcs.pas │ │ │ ├── SynEditOptionsDialog.dfm │ │ │ ├── SynEditOptionsDialog.pas │ │ │ ├── SynEditPlugins.pas │ │ │ ├── SynEditPrint.pas │ │ │ ├── SynEditPrintHeaderFooter.pas │ │ │ ├── SynEditPrintMargins.pas │ │ │ ├── SynEditPrintMarginsDialog.dfm │ │ │ ├── SynEditPrintMarginsDialog.pas │ │ │ ├── SynEditPrintPreview.pas │ │ │ ├── SynEditPrintTypes.pas │ │ │ ├── SynEditPrinterInfo.pas │ │ │ ├── SynEditPropertyReg.pas │ │ │ ├── SynEditPythonBehaviour.pas │ │ │ ├── SynEditReg.dcr │ │ │ ├── SynEditReg.pas │ │ │ ├── SynEditReg.res │ │ │ ├── SynEditRegexSearch.pas │ │ │ ├── SynEditSearch.pas │ │ │ ├── SynEditStrConst.pas │ │ │ ├── SynEditTextBuffer.pas │ │ │ ├── SynEditTypes.pas │ │ │ ├── SynEditWildcardSearch.pas │ │ │ ├── SynEditWordWrap.pas │ │ │ ├── SynExportHTML.pas │ │ │ ├── SynExportRTF.pas │ │ │ ├── SynExportTeX.pas │ │ │ ├── SynHighlighterADSP21xx.pas │ │ │ ├── SynHighlighterAWK.pas │ │ │ ├── SynHighlighterAsm.pas │ │ │ ├── SynHighlighterBaan.pas │ │ │ ├── SynHighlighterBat.pas │ │ │ ├── SynHighlighterCAC.pas │ │ │ ├── SynHighlighterCPM.pas │ │ │ ├── SynHighlighterCS.pas │ │ │ ├── SynHighlighterCache.pas │ │ │ ├── SynHighlighterCobol.pas │ │ │ ├── SynHighlighterCpp.pas │ │ │ ├── SynHighlighterCss.pas │ │ │ ├── SynHighlighterDOT.pas │ │ │ ├── SynHighlighterDfm.pas │ │ │ ├── SynHighlighterDml.pas │ │ │ ├── SynHighlighterEiffel.pas │ │ │ ├── SynHighlighterFortran.pas │ │ │ ├── SynHighlighterFoxpro.pas │ │ │ ├── SynHighlighterGWS.pas │ │ │ ├── SynHighlighterGalaxy.pas │ │ │ ├── SynHighlighterGeneral.pas │ │ │ ├── SynHighlighterHC11.pas │ │ │ ├── SynHighlighterHP48.pas │ │ │ ├── SynHighlighterHashEntries.pas │ │ │ ├── SynHighlighterHaskell.pas │ │ │ ├── SynHighlighterHtml.pas │ │ │ ├── SynHighlighterIDL.pas │ │ │ ├── SynHighlighterIni.pas │ │ │ ├── SynHighlighterInno.pas │ │ │ ├── SynHighlighterJScript.pas │ │ │ ├── SynHighlighterJava.pas │ │ │ ├── SynHighlighterKix.pas │ │ │ ├── SynHighlighterLDraw.pas │ │ │ ├── SynHighlighterM3.pas │ │ │ ├── SynHighlighterManager.pas │ │ │ ├── SynHighlighterModelica.pas │ │ │ ├── SynHighlighterMsg.pas │ │ │ ├── SynHighlighterMulti.pas │ │ │ ├── SynHighlighterPHP.pas │ │ │ ├── SynHighlighterPas.pas │ │ │ ├── SynHighlighterPerl.pas │ │ │ ├── SynHighlighterProgress.pas │ │ │ ├── SynHighlighterPython.pas │ │ │ ├── SynHighlighterRC.pas │ │ │ ├── SynHighlighterRuby.pas │ │ │ ├── SynHighlighterSDD.pas │ │ │ ├── SynHighlighterSQL.pas │ │ │ ├── SynHighlighterST.pas │ │ │ ├── SynHighlighterSml.pas │ │ │ ├── SynHighlighterTclTk.pas │ │ │ ├── SynHighlighterTeX.pas │ │ │ ├── SynHighlighterUNIXShellScript.pas │ │ │ ├── SynHighlighterURI.pas │ │ │ ├── SynHighlighterUnreal.pas │ │ │ ├── SynHighlighterVB.pas │ │ │ ├── SynHighlighterVBScript.pas │ │ │ ├── SynHighlighterVrml97.pas │ │ │ ├── SynHighlighterXML.pas │ │ │ ├── SynMacroRecorder.pas │ │ │ ├── SynMemo.pas │ │ │ ├── SynRegExpr.pas │ │ │ ├── SynTextDrawer.pas │ │ │ ├── SynURIOpener.pas │ │ │ └── kTextDrawer.pas │ ├── devFileMonitor │ │ ├── devFileMonitor.dcr │ │ ├── devFileMonitor.pas │ │ ├── devMonitorThread.pas │ │ └── devMonitorTypes.pas │ └── devShortcuts │ │ ├── devShortcuts.dcr │ │ ├── devShortcuts.pas │ │ ├── devShortcutsEditorForm.dfm │ │ └── devShortcutsEditorForm.pas ├── Version.pas ├── ViewToDoFrm.dfm ├── ViewToDoFrm.pas ├── WindowListFrm.dfm ├── WindowListFrm.pas ├── devCFG.pas ├── devExec.pas ├── devRun.pas ├── devcpp.dof ├── devcpp.dpr ├── devcpp.res ├── icons.res ├── main.dfm └── main.pas ├── Templates ├── 1-WinApp.template ├── 2-ConsoleApp.template ├── 3-StaticLib.template ├── 4-DLL.template ├── 5-Empty.template ├── ConsoleApp_c.txt ├── ConsoleApp_cpp.txt ├── Direct3D.template ├── Direct3D.txt ├── Dll_c.txt ├── Dll_cpp.txt ├── Dll_h.txt ├── Dll_hpp.txt ├── FileEditor.template ├── FileEditor_c.txt ├── FileEditor_h.txt ├── FileEditor_rc.txt ├── Hello.template ├── HelloInput.template ├── HelloInput_c.txt ├── HelloInput_cpp.txt ├── Hello_c.txt ├── Hello_cpp.txt ├── Jackpot.template ├── Jackpot_cpp.txt ├── MDIEditor.template ├── MDIEditor_c.txt ├── MDIEditor_h.txt ├── MDIEditor_rc.txt ├── OpenGL.template ├── OpenGL.txt ├── OpenMP.template ├── OpenMP_c.txt ├── OpenMP_cpp.txt ├── StdThread.template ├── StdThread_c.txt ├── StdThread_cpp.txt ├── WinAnim.template ├── WinAnim_c.txt ├── WinAnim_rc.txt ├── WinApp_c.txt ├── ball.bmp └── ballmask.bmp ├── devcpp.exe.manifest ├── devcpp.ico ├── devcppmingw64.nsi └── devcppnocompiler.nsi /AStyle/AStyle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/AStyle/AStyle.exe -------------------------------------------------------------------------------- /Help/FAQ/Editor.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
Q: Can I disable these annoying mouseover popups?
9 |
A: Sure. You can toggle them in Tools >> Editor Options >> Show Editor Hints.
10 | 11 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Compiler Options/General.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | General Tab 5 | 6 | 7 | 8 | 9 |
Add the following commands when calling the compiler
10 |
Commands specified here are passed to the compiler at the end of the command. In project makefiles, they are appended at the end of CXXFLAGS, but project-specific commands are added after this.
11 |
12 |
Add the following commands when calling the linker
13 |
Commands specified here are passed to the linker at the end of the command. In project makefiles, they are appended at the end of LIBS, but project-specific commands are added after this.
14 | 15 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Compiler Options/Makefile.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Makefile Tab 5 | 6 | 7 | 8 | 9 |
Makefile generation
10 |
Compile delay
11 |
A compile delay can be used when make complains that the makefile is newer than the current system time. This feature is a leftover from ancient Dev-C++ versions. I have not been able to reproduce this bug in versions since 4.9.9.3.
12 |
13 |
Use fast but imperfect dependency generation
14 |
When this option is not selected, Dev-C++ will ask GCC which unmodified files need to be recompiled due to changes in their dependencies by using the -MM command of gcc (or g++ for C++ compilations). When this option is selected, only modified files will be recompiled. This feature is currently broken, so please tick this option.
15 | 16 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Profile Analysis/Call Graph.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 |
Function List
9 |
Here is where the output of GPROF gets placed. This data is generated by the following command:
10 |
gprof -q "executablename"
11 |
This tells GPROF to examine the generated workingdir\gmon.out file which contains the generated profiling data.
12 |
13 |
Explanation List
14 |
Here the explanation generated by gprof.exe is printed.
15 | 16 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Profile Analysis/Flat Output.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 |
Function List
9 |
Here is where the output of GPROF gets placed. This data is generated by the following command:
10 |
gprof -p "executablename"
11 |
This tells GPROF to examine the generated workingdir\gmon.out file which contains the generated profiling data.
12 |
13 |
Explanation List
14 |
Here the explanation generated by gprof.exe is printed.
15 | 16 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Profile Analysis/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
Profile Analysis
9 |
This is Dev-C++'s GUI wrapper around gprof.exe. All data shown here is generated by GPROF.
10 |
11 |
Tips
12 |
Only functions that consume more than 0.01 second of CPU time will show up in the analysis.
13 | 14 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Project Options/Build Options.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | General Tab 5 | 6 | 7 | 8 | 9 |
Executable Output Directory
10 |
Here you can change the output location of this projects' executable. This value is stored relatively.
11 |
12 |
Object file Output Directory
13 |
Here you can change the output location of this projects' object files. This value is stored relatively.
14 |
15 |
Override output filename
16 |
Here you can specify what name to give to the executable. By default, the projects' name + '.exe' is used.
17 | 18 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Project Options/Compiler.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | General Tab 5 | 6 | 7 | 8 | 9 |
These options control which compiler set to use for this project.
10 |
11 |
Base compiler set
12 |
Select which compiler set to use for compilations. All set preferences except for the compiler flags will be used during compilation. The compiler flags are initially copied, but can be changed below. These changes only affect the current project and do not change the set itself.
13 |
14 |
Customize
15 |
Customize a compiler set for this project only using this UI.
16 | 17 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Project Options/Directories.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | General Tab 5 | 6 | 7 | 8 | 9 |
Library Directories
10 |
On the previous tab, separate lib files could be added. If you want to add a whole folder to the linker, specify it here. It will be added to the LIBS variable in makefiles.
11 |
12 |
Include Directories
13 |
Here you can add nonstandard header file folders to the compiler.
14 |
15 |
Resource Directories
16 |
Here you can add directories in which the compiler will search for resource files. It is added to the WINDRES variable in the makefile.
17 | 18 | -------------------------------------------------------------------------------- /Help/Interface/Dialog Windows/Project Options/Makefile.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | General Tab 5 | 6 | 7 | 8 | 9 |
Use custom Makefile
10 |
By default, Dev-C++ constructs its own makefile based on the configuration on the previous tabs. Here you can point Dev to a custom replacement. Dev-C++ will not generate any more makefiles if this option is used.
11 |
12 |
Information about customizing the makefile...
13 |
Click!
14 |
15 |
Include the following files into the makefile
16 |
If your custom makefile (or Dev's one) is getting so large that it can't be properly maintained in a single file anymore, you can then include files here.
17 | 18 | -------------------------------------------------------------------------------- /Help/Interface/Menus/Project.htm: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 |
New File
9 |
Adds a file to the currently open project. Disabled if no project is opened.
10 |
11 |
Add to project
12 |
Opens up a file browser, asking the user to point to the file to be added to the currently open project. Disabled if no project is opened.
13 |
14 |
Remove from project
15 |
Removes the current file from project.
16 |
17 |
Project Options
18 |
Opens up the Project Options window.
19 | 20 | -------------------------------------------------------------------------------- /Help/Subjects/Editing.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
Editing a file
9 |
Editing a file is pretty straightforward. Create (Ctrl+N) or open (Ctrl+O) a file.
10 |
11 |
Tips
12 |
13 | 21 |
22 | 23 | -------------------------------------------------------------------------------- /Help/content.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-family:"Segoe UI","MS Sans Serif",serif; 3 | } 4 | body { 5 | margin:8px; 6 | } 7 | .Heading1 { 8 | font-size:20pt; 9 | margin-bottom:10px; 10 | } 11 | .Heading2 { 12 | font-weight:bold; 13 | font-size:14pt; 14 | } 15 | .Heading3 { 16 | font-weight:bold; 17 | font-size:12pt; 18 | } 19 | .Code { 20 | margin:10px; 21 | font-family:"Consolas","Courier New"; 22 | background-color:#DDDDDD; 23 | } 24 | .Link { 25 | display:inline-block; 26 | text-decoration:underline; 27 | color:rgb(0,0,238); /* webkit link */ 28 | cursor:pointer; 29 | } -------------------------------------------------------------------------------- /Help/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Dev-C++ Help 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 |
14 | 15 | 16 | 24 | 25 | 26 |
27 |
28 | 29 | -------------------------------------------------------------------------------- /Help/intro.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
Welcome to the Dev-C++ user manual!
9 |
The manual has been rewritten and greatly expanded as of Dev-C++ version 5.5.2. It is still far from complete though, so don't hesitate to contribute by creating and sending me new pages or donating me.
10 |
11 |
You can start navigating using the tree view at your left.
12 |
13 |
Compatilibity
14 |
This help file has been tested on the following browsers: 15 | 21 | 22 | -------------------------------------------------------------------------------- /Help/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Help/logo.png -------------------------------------------------------------------------------- /Icons/Book.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Book.ico -------------------------------------------------------------------------------- /Icons/Communication.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Communication.ico -------------------------------------------------------------------------------- /Icons/Console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Console.ico -------------------------------------------------------------------------------- /Icons/ConsoleToo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/ConsoleToo.ico -------------------------------------------------------------------------------- /Icons/Crazy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Crazy.ico -------------------------------------------------------------------------------- /Icons/DLL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/DLL.ico -------------------------------------------------------------------------------- /Icons/Danger.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Danger.ico -------------------------------------------------------------------------------- /Icons/Documentation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Documentation.ico -------------------------------------------------------------------------------- /Icons/Edit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Edit.ico -------------------------------------------------------------------------------- /Icons/Editor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Editor.ico -------------------------------------------------------------------------------- /Icons/Empty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Empty.ico -------------------------------------------------------------------------------- /Icons/File Management.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/File Management.ico -------------------------------------------------------------------------------- /Icons/Folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Folder.ico -------------------------------------------------------------------------------- /Icons/Food.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Food.ico -------------------------------------------------------------------------------- /Icons/Games.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Games.ico -------------------------------------------------------------------------------- /Icons/Goofy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Goofy.ico -------------------------------------------------------------------------------- /Icons/Movie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Movie.ico -------------------------------------------------------------------------------- /Icons/Multimedia.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Multimedia.ico -------------------------------------------------------------------------------- /Icons/Paint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Paint.ico -------------------------------------------------------------------------------- /Icons/Pizza.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Pizza.ico -------------------------------------------------------------------------------- /Icons/Rescue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Rescue.ico -------------------------------------------------------------------------------- /Icons/Smile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Smile.ico -------------------------------------------------------------------------------- /Icons/Software.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Software.ico -------------------------------------------------------------------------------- /Icons/StaticLib.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/StaticLib.ico -------------------------------------------------------------------------------- /Icons/Ufo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Ufo.ico -------------------------------------------------------------------------------- /Icons/Window.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Window.ico -------------------------------------------------------------------------------- /Icons/Windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/Windows.ico -------------------------------------------------------------------------------- /Icons/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Icons/mainicon.ico -------------------------------------------------------------------------------- /Lang/Bulgarian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Bulgarian.lng -------------------------------------------------------------------------------- /Lang/Catalan.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Catalan.lng -------------------------------------------------------------------------------- /Lang/Catalan.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Catalan.tips -------------------------------------------------------------------------------- /Lang/Chinese.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Chinese.lng -------------------------------------------------------------------------------- /Lang/Chinese.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Chinese.tips -------------------------------------------------------------------------------- /Lang/Chinese_TC.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Chinese_TC.lng -------------------------------------------------------------------------------- /Lang/Croatian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Croatian.lng -------------------------------------------------------------------------------- /Lang/Czech.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Czech.lng -------------------------------------------------------------------------------- /Lang/Czech.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Czech.tips -------------------------------------------------------------------------------- /Lang/Danish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Danish.lng -------------------------------------------------------------------------------- /Lang/Danish.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Danish.tips -------------------------------------------------------------------------------- /Lang/Dutch.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Dutch.lng -------------------------------------------------------------------------------- /Lang/Dutch.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Dutch.tips -------------------------------------------------------------------------------- /Lang/Estonian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Estonian.lng -------------------------------------------------------------------------------- /Lang/Estonian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Estonian.tips -------------------------------------------------------------------------------- /Lang/French.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/French.lng -------------------------------------------------------------------------------- /Lang/French.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/French.tips -------------------------------------------------------------------------------- /Lang/Galego.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Galego.lng -------------------------------------------------------------------------------- /Lang/Galego.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Galego.tips -------------------------------------------------------------------------------- /Lang/German.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/German.lng -------------------------------------------------------------------------------- /Lang/German.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/German.tips -------------------------------------------------------------------------------- /Lang/Greek.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Greek.lng -------------------------------------------------------------------------------- /Lang/Hebrew.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Hebrew.lng -------------------------------------------------------------------------------- /Lang/Hebrew.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Hebrew.tips -------------------------------------------------------------------------------- /Lang/Hungarian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Hungarian.lng -------------------------------------------------------------------------------- /Lang/Hungarian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Hungarian.tips -------------------------------------------------------------------------------- /Lang/Italian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Italian.lng -------------------------------------------------------------------------------- /Lang/Italian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Italian.tips -------------------------------------------------------------------------------- /Lang/Japanese.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Japanese.lng -------------------------------------------------------------------------------- /Lang/Japanese.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Japanese.tips -------------------------------------------------------------------------------- /Lang/Korean.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Korean.lng -------------------------------------------------------------------------------- /Lang/Korean.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Korean.tips -------------------------------------------------------------------------------- /Lang/Latvian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Latvian.lng -------------------------------------------------------------------------------- /Lang/Latvian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Latvian.tips -------------------------------------------------------------------------------- /Lang/Norwegian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Norwegian.lng -------------------------------------------------------------------------------- /Lang/Norwegian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Norwegian.tips -------------------------------------------------------------------------------- /Lang/Polish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Polish.lng -------------------------------------------------------------------------------- /Lang/Polish.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Polish.tips -------------------------------------------------------------------------------- /Lang/Portuguese.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Portuguese.lng -------------------------------------------------------------------------------- /Lang/Portuguese.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Portuguese.tips -------------------------------------------------------------------------------- /Lang/Romanian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Romanian.lng -------------------------------------------------------------------------------- /Lang/Romanian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Romanian.tips -------------------------------------------------------------------------------- /Lang/Russian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Russian.lng -------------------------------------------------------------------------------- /Lang/Russian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Russian.tips -------------------------------------------------------------------------------- /Lang/Slovak.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Slovak.lng -------------------------------------------------------------------------------- /Lang/Slovenian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Slovenian.lng -------------------------------------------------------------------------------- /Lang/Slovenian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Slovenian.tips -------------------------------------------------------------------------------- /Lang/Spanish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Spanish.lng -------------------------------------------------------------------------------- /Lang/Spanish.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Spanish.tips -------------------------------------------------------------------------------- /Lang/SpanishCastellano.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/SpanishCastellano.lng -------------------------------------------------------------------------------- /Lang/SpanishCastellano.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/SpanishCastellano.tips -------------------------------------------------------------------------------- /Lang/SpanishColombia.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/SpanishColombia.lng -------------------------------------------------------------------------------- /Lang/SpanishColombia.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/SpanishColombia.tips -------------------------------------------------------------------------------- /Lang/Swedish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Swedish.lng -------------------------------------------------------------------------------- /Lang/Swedish.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Swedish.tips -------------------------------------------------------------------------------- /Lang/Turkish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Turkish.lng -------------------------------------------------------------------------------- /Lang/Turkish.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Turkish.tips -------------------------------------------------------------------------------- /Lang/Ukrainian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Ukrainian.lng -------------------------------------------------------------------------------- /Lang/Ukrainian.tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Lang/Ukrainian.tips -------------------------------------------------------------------------------- /Source/CPUFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/CPUFrm.dfm -------------------------------------------------------------------------------- /Source/CleanSource.bat: -------------------------------------------------------------------------------- 1 | del /f /s *.dcu 2 | del /f /s *.drc 3 | del /f /s *.ddp 4 | del /f /s *.bak 5 | del /f /s *.bk1 6 | del /f /s *.bk2 7 | del /f /s *.bk3 8 | del /f /s devcpp.cfg 9 | pause -------------------------------------------------------------------------------- /Source/CodeToolTip.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/CodeToolTip.res -------------------------------------------------------------------------------- /Source/CompOptionsFrame.dfm: -------------------------------------------------------------------------------- 1 | object CompOptionsFrame: TCompOptionsFrame 2 | Left = 0 3 | Top = 0 4 | Width = 573 5 | Height = 520 6 | HorzScrollBar.Visible = False 7 | VertScrollBar.Visible = False 8 | TabOrder = 0 9 | object tabs: TTabControl 10 | Left = 0 11 | Top = 0 12 | Width = 573 13 | Height = 520 14 | Align = alClient 15 | TabOrder = 0 16 | OnChange = tabsChange 17 | object vle: TCompOptionsList 18 | Left = 4 19 | Top = 6 20 | Width = 565 21 | Height = 510 22 | Align = alClient 23 | BorderStyle = bsNone 24 | DefaultRowHeight = 22 25 | DisplayOptions = [doKeyColFixed] 26 | DropDownRows = 40 27 | FixedCols = 1 28 | Options = [goEditing, goAlwaysShowEditor] 29 | ScrollBars = ssNone 30 | TabOrder = 0 31 | OnSetEditText = vleSetEditText 32 | ColWidths = ( 33 | 199 34 | 364) 35 | end 36 | end 37 | end 38 | -------------------------------------------------------------------------------- /Source/CompileResources.bat: -------------------------------------------------------------------------------- 1 | brcc32 DefaultFiles.rc 2 | brcc32 Icons.rc 3 | pause -------------------------------------------------------------------------------- /Source/DefaultFiles.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/DefaultFiles.res -------------------------------------------------------------------------------- /Source/FastMM4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/FastMM4.pas -------------------------------------------------------------------------------- /Source/Icons.rc: -------------------------------------------------------------------------------- 1 | 10_DevCpp ICON "images\associations\ide.ico" 2 | 1_DevCpp ICON "images\associations\ide2.ico" 3 | 2_DevCpp ICON "images\associations\dev.ico" 4 | 3_CSource ICON "images\associations\c.ico" 5 | 4_CppSource ICON "images\associations\cpp.ico" 6 | 5_Header ICON "images\associations\h.ico" 7 | 6_HppHeader ICON "images\associations\hpp.ico" 8 | 7_RcSource ICON "images\associations\rc.ico" 9 | 8_DevPak ICON "images\associations\devpak.ico" 10 | 9_DevPackage ICON "images\associations\devpackage.ico" 11 | 10_Template ICON "images\associations\template.ico" 12 | -------------------------------------------------------------------------------- /Source/Images/associations/IDE2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/IDE2.ico -------------------------------------------------------------------------------- /Source/Images/associations/c.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/c.ico -------------------------------------------------------------------------------- /Source/Images/associations/cpp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/cpp.ico -------------------------------------------------------------------------------- /Source/Images/associations/dev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/dev.ico -------------------------------------------------------------------------------- /Source/Images/associations/devpackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/devpackage.ico -------------------------------------------------------------------------------- /Source/Images/associations/devpak.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/devpak.ico -------------------------------------------------------------------------------- /Source/Images/associations/h.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/h.ico -------------------------------------------------------------------------------- /Source/Images/associations/hpp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/hpp.ico -------------------------------------------------------------------------------- /Source/Images/associations/ide.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/ide.ico -------------------------------------------------------------------------------- /Source/Images/associations/o.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/o.ico -------------------------------------------------------------------------------- /Source/Images/associations/obj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/obj.ico -------------------------------------------------------------------------------- /Source/Images/associations/rc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/rc.ico -------------------------------------------------------------------------------- /Source/Images/associations/template.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/associations/template.ico -------------------------------------------------------------------------------- /Source/Images/blue/About.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/About.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Add.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Arrange%20Icons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Arrange%20Icons.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Bloodshed%20Homepage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Bloodshed%20Homepage.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Bookmarks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Bookmarks.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Cancel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Cancel.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Check%20for%20Update.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Check%20for%20Update.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Close.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Close.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Compile%20And%20Run.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Compile%20And%20Run.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Compile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Compile.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Compiler%20Options.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Compiler%20Options.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Compiler%20Results.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Compiler%20Results.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Compiler%20ResultsX.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Compiler%20ResultsX.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Copy.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Cut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Cut.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Debug.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Debug.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Delete.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Document of Project Manager.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Document of Project Manager.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Down.bmp -------------------------------------------------------------------------------- /Source/Images/blue/EditorOptions.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/EditorOptions.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Environment Options.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Environment Options.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Execute.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Execute.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Exit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Exit.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Explorer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Explorer.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Export.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Export.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Find again.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Find again.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Find.bmp -------------------------------------------------------------------------------- /Source/Images/blue/FullscreenMode.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/FullscreenMode.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Goto%20Bookmarks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Goto%20Bookmarks.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Goto%20Line.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Goto%20Line.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Help.bmp -------------------------------------------------------------------------------- /Source/Images/blue/MS-DOS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/MS-DOS.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Make.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Make.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Minimize%20All.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Minimize%20All.bmp -------------------------------------------------------------------------------- /Source/Images/blue/New.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/New.bmp -------------------------------------------------------------------------------- /Source/Images/blue/New2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/New2.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Next.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Next.bmp -------------------------------------------------------------------------------- /Source/Images/blue/OK.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/OK.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Open.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Package Manager.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Package Manager.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Paste.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Paste.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Preferences.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Preferences.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Previous.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Previous.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Print.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Print.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Project of Project Manager.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Project of Project Manager.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Project.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Project.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Properties.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Properties.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Rebuild%20All.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Rebuild%20All.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Redo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Redo.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Remove.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Remove.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Replace.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Replace.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Resource.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Resource.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Save%20All.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Save%20All.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Save%20As.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Save%20As.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Save.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Save.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Setup.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Setup.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Toolbars.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Toolbars.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Tutorial.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Tutorial.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Typewriter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Typewriter.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Undo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Undo.bmp -------------------------------------------------------------------------------- /Source/Images/blue/Window.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/blue/Window.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/class.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/class.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/class_folder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/class_folder.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/method_inherited.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/method_inherited.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/method_inherited_protected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/method_inherited_protected.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/method_private.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/method_private.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/method_protected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/method_protected.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/method_public.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/method_public.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/var_inherited.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/var_inherited.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/var_inherited_protected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/var_inherited_protected.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/var_private.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/var_private.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/var_protected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/var_protected.bmp -------------------------------------------------------------------------------- /Source/Images/classparser/var_public.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/classparser/var_public.bmp -------------------------------------------------------------------------------- /Source/Images/donate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/donate.bmp -------------------------------------------------------------------------------- /Source/Images/donatesmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/donatesmall.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/About.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/About.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Add.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Arrange Icons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Arrange Icons.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Bloodshed Homepage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Bloodshed Homepage.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Bookmarks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Bookmarks.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Check for Update.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Check for Update.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Close.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Close.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Compile And Run.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Compile And Run.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Compile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Compile.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Compiler Options.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Compiler Options.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Compiler Results.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Compiler Results.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Compiler ResultsX.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Compiler ResultsX.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Copy.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Cut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Cut.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Debug.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Debug.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Delete.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Down.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Environment Options.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Environment Options.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Execute.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Execute.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Exit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Exit.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Explorer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Explorer.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Export.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Export.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Find.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Goto Bookmarks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Goto Bookmarks.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Goto Line.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Goto Line.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Help.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/MS-DOS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/MS-DOS.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Make.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Make.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Minimize All.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Minimize All.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/New.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/New.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/New2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/New2.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Next.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Next.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Open.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Paste.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Paste.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Preferences.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Preferences.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Previous.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Previous.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Print.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Print.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Project.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Project.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Properties.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Properties.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Rebuild All.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Rebuild All.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Redo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Redo.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Remove.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Remove.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Replace.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Replace.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Resource.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Resource.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Save All.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Save All.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Save As.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Save As.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Save.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Save.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Setup.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Setup.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Toolbars.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Toolbars.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Tutorial.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Tutorial.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Typewriter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Typewriter.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Undo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Undo.bmp -------------------------------------------------------------------------------- /Source/Images/gnome/Window.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/gnome/Window.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/about.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/about.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/add.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/addbook.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/addbook.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/addsrc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/addsrc.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/arricon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/arricon.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/bughlp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/bughlp.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/close.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/close.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/closeall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/closeall.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/closefl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/closefl.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/clrhist.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/clrhist.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/clsall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/clsall.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/compile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/compile.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/compopt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/compopt.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/compres.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/compres.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/compresx.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/compresx.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/comprun.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/comprun.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/copy.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/cut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/cut.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/debug.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/debug.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/dos.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/dos.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/empty.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/envopt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/envopt.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/explor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/explor.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/export.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/export.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/gobook.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/gobook.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/goto.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/goto.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/help.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/homepg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/homepg.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/icon.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/insert.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/insert.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/makefl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/makefl.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/minall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/minall.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/newproj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/newproj.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/newsrc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/newsrc.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/newtemp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/newtemp.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/next.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/next.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/opnproj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/opnproj.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/package.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/package.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/packman.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/packman.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/paste.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/paste.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/prev.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/prev.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/print.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/print.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/projopt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/projopt.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/rebuild.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/rebuild.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/redo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/redo.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/remsrc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/remsrc.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/reopen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/reopen.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/resrc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/resrc.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/run.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/run.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/save.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/save.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/saveall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/saveall.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/saveas.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/saveas.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/screen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/screen.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/search.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/search.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/srcagain.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/srcagain.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/srchrep.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/srchrep.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/syntcheck.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/syntcheck.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/temphlp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/temphlp.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/tile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/tile.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/toolbar.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/tools.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/tools.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/tutor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/tutor.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/undo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/undo.bmp -------------------------------------------------------------------------------- /Source/Images/newlook/update.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/newlook/update.bmp -------------------------------------------------------------------------------- /Source/Images/packman.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/packman.ico -------------------------------------------------------------------------------- /Source/Images/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Images/splash.bmp -------------------------------------------------------------------------------- /Source/RemoveUnitFrm.dfm: -------------------------------------------------------------------------------- 1 | object RemoveUnitForm: TRemoveUnitForm 2 | Left = 687 3 | Top = 393 4 | Width = 354 5 | Height = 317 6 | BorderIcons = [biSystemMenu, biMaximize] 7 | Caption = 'Remove from project' 8 | Color = clBtnFace 9 | Font.Charset = DEFAULT_CHARSET 10 | Font.Color = clWindowText 11 | Font.Height = -11 12 | Font.Name = 'MS Sans Serif' 13 | Font.Style = [] 14 | OldCreateOrder = True 15 | Position = poMainFormCenter 16 | OnClose = FormClose 17 | OnCreate = FormCreate 18 | DesignSize = ( 19 | 338 20 | 279) 21 | PixelsPerInch = 96 22 | TextHeight = 13 23 | object UnitList: TListBox 24 | Left = 0 25 | Top = 0 26 | Width = 338 27 | Height = 251 28 | Align = alCustom 29 | Anchors = [akLeft, akTop, akRight, akBottom] 30 | ItemHeight = 13 31 | MultiSelect = True 32 | TabOrder = 0 33 | OnKeyPress = UnitListKeyPress 34 | end 35 | object DelBtn: TButton 36 | Left = 132 37 | Top = 252 38 | Width = 75 39 | Height = 25 40 | Anchors = [akBottom] 41 | Caption = 'Delete' 42 | TabOrder = 1 43 | OnClick = DelBtnClick 44 | end 45 | end 46 | -------------------------------------------------------------------------------- /Source/TODO.txt: -------------------------------------------------------------------------------- 1 | - Add required headers and libraries for D3D11 development 2 | - Increase the amount of automated and manual tests 3 | - When the current compiler changes, code should be reparsed because built-in defines of a compiler affect parsing 4 | - Fix messy painting of find results list 5 | - Add proxy support to webupdate 6 | - Unify look and feel of all windows 7 | - Rename file functionality (MoveFile) 8 | - Fix TClassBrowser.AdvancedCustomDrawItem crash 9 | - Same word highlight when selected 10 | 11 | - Implement conditional search 12 | https://sourceforge.net/p/orwelldevcpp/tickets/143/ 13 | 14 | - Customisable highlighter reserved words 15 | https://sourceforge.net/p/orwelldevcpp/tickets/145/ 16 | 17 | - Goto frame in CPU Window: 18 | https://sourceforge.net/p/orwelldevcpp/tickets/151/ -------------------------------------------------------------------------------- /Source/Tests/Document/DevTest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tests/Document/DevTest.pdf -------------------------------------------------------------------------------- /Source/Tests/Document/automatic.tex: -------------------------------------------------------------------------------- 1 | \clearpage 2 | \section{Automatic testing} 3 | \subsection{actRunTests} 4 | Run the automatic tests provided in Source\textbackslash Tests.pas by executing actRunTests. If all goes well, no assertion errors or memory leaks should be brought up during or after these tests have been run. Make sure to disable action actRunTests in release builds. -------------------------------------------------------------------------------- /Source/Tests/Document/compare.tex: -------------------------------------------------------------------------------- 1 | \clearpage 2 | \section{Compare} 3 | Before commiting any code, please compare your source code to a previous commit. :) -------------------------------------------------------------------------------- /Source/Tests/Document/main.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} 2 | \usepackage[utf8]{inputenc} 3 | \usepackage[a4paper,margin=.8in]{geometry} 4 | \usepackage{datetime} 5 | 6 | \title{Tests for Dev-C++} 7 | \author{Johan Mes} 8 | \date{\today} 9 | 10 | \begin{document} 11 | 12 | \maketitle 13 | \tableofcontents 14 | 15 | \input{manual} 16 | \input{automatic} 17 | \input{compare} 18 | 19 | \end{document} -------------------------------------------------------------------------------- /Source/Tests/Explorer/Dropdown.h: -------------------------------------------------------------------------------- 1 | #ifndef DROPDOWN_INCLUDE 2 | #define DROPDOWN_INCLUDE 3 | 4 | #include "Component.h" 5 | 6 | #include 7 | 8 | class DLLIMPORT Dropdown : public Component { 9 | std::vector items; 10 | public: 11 | Dropdown(int left,int top,int width,int height); 12 | ~Dropdown(); 13 | 14 | int itemheight; 15 | bool dropped; 16 | int selindex; 17 | 18 | // Collapse or not to collapse 19 | void Toggle(); 20 | void AddItem(const char* text); 21 | const char* GetItem(unsigned int index); 22 | const char* GetSelection(); 23 | unsigned int GetItemCount(); 24 | void Clear(); 25 | void SetSelection(const char* text); 26 | void DrawText(LPD3DXFONT font,LPD3DXSPRITE sprite); 27 | }; 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/Edit.cpp: -------------------------------------------------------------------------------- 1 | #include "Edit.h" 2 | 3 | Edit::Edit(int left,int top,int width,int height,const char* text) : Label(left,top,width,height,text,false) { 4 | 5 | focused = false; 6 | 7 | OnReturn = NULL; 8 | 9 | backcolor = float4(0.15f,0.15f,0.15f,1.0f); 10 | focuscolor = float4(0.5f,0.5f,0.5f,1.0f); 11 | 12 | type = ctEdit; 13 | } 14 | 15 | Edit::~Edit() { 16 | } 17 | 18 | void Edit::DrawText(LPD3DXFONT font,LPD3DXSPRITE sprite) { 19 | 20 | // Center it a bit 21 | RECT textrect; 22 | GetRect(&textrect); 23 | InflateRect(&textrect,-2,-2); 24 | 25 | // And draw 26 | sprite->Begin(D3DXSPRITE_ALPHABLEND); 27 | font->DrawText(sprite,caption.c_str(),std::min(1024,(int)caption.length()),&textrect,DT_NOCLIP,D3DCOLOR_XRGB(255,255,255)); 28 | sprite->End(); 29 | } 30 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/Edit.h: -------------------------------------------------------------------------------- 1 | #ifndef EDIT_INCLUDE 2 | #define EDIT_INCLUDE 3 | 4 | #include "Label.h" 5 | 6 | class DLLIMPORT Edit : public Label { 7 | public: 8 | Edit(int left,int top,int width,int height,const char* text); 9 | ~Edit(); 10 | 11 | // Andere kleur als we aan het typen zijn 12 | float4 focuscolor; 13 | bool focused; 14 | 15 | // Function pointer voor enter 16 | void (*OnReturn)(Component* Sender); 17 | 18 | // Rendering 19 | void DrawText(LPD3DXFONT font,LPD3DXSPRITE sprite); 20 | }; 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/FXHandle.cpp: -------------------------------------------------------------------------------- 1 | #include "FXHandle.h" 2 | 3 | FXHandle::FXHandle(const char* name) { 4 | handle = NULL; 5 | this->name = strdup(name); 6 | } 7 | 8 | FXHandle::~FXHandle() { 9 | } 10 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/FXHandle.h: -------------------------------------------------------------------------------- 1 | #ifndef FXHANDLE_INCLUDE 2 | #define FXHANDLE_INCLUDE 3 | 4 | #include 5 | #include 6 | 7 | class FXHandle { 8 | public: 9 | FXHandle(const char* name); 10 | ~FXHandle(); 11 | 12 | char* name; 13 | D3DXHANDLE handle; 14 | }; 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/FXShader.h: -------------------------------------------------------------------------------- 1 | #ifndef FXSHADER_INCLUDE 2 | #define FXSHADER_INCLUDE 3 | 4 | #include 5 | 6 | #include "FXHandle.h" 7 | #include "Object.h" 8 | 9 | class FXShader : public FXHandle { 10 | public: 11 | FXShader(const char* name); 12 | ~FXShader(); 13 | 14 | std::list::iterator nulldummy; 15 | std::list::iterator begin; // zelfde naam als std::list 16 | std::list::iterator end; 17 | bool unused; 18 | 19 | void Get(const char* name); 20 | void Reset(); 21 | void Print(); 22 | }; 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/FXVariable.h: -------------------------------------------------------------------------------- 1 | #ifndef FXVARIABLE_INCLUDE 2 | #define FXVARIABLE_INCLUDE 3 | 4 | #include "FXHandle.h" 5 | #include "Textures.h" 6 | #include "RenderTarget.h" 7 | 8 | class FXVariable : public FXHandle { 9 | LPDIRECT3DBASETEXTURE9 current; 10 | public: 11 | FXVariable(const char* name); 12 | ~FXVariable(); 13 | 14 | // TODO: operators maken? 15 | void Set(void* data); 16 | void Set(float data); 17 | void Set(unsigned int data); 18 | 19 | void SetTexture(LPDIRECT3DBASETEXTURE9 texture); 20 | void SetTexture(Texture* texture); 21 | void SetTexture(RenderTarget* target); 22 | }; 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/Project/FunctionViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tests/Explorer/Project/FunctionViewer.exe -------------------------------------------------------------------------------- /Source/Tests/Explorer/Project/FunctionViewer.layout: -------------------------------------------------------------------------------- 1 | [Editors] 2 | Order=0 3 | Focused=0 4 | [Editor_0] 5 | CursorCol=1 6 | CursorRow=39 7 | TopLine=1 8 | LeftChar=1 9 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/Project/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using std::ifstream; 3 | #include 4 | using std::string; 5 | #include 6 | using std::cout; 7 | 8 | void ViewFile(string File) { 9 | cout << "Opening file " << File << "..."; 10 | cout << "\n\n"; 11 | 12 | ifstream DelphiFile; 13 | DelphiFile.open(File.c_str()); 14 | 15 | // Print list of functions 16 | string Line; 17 | bool ImplementationFound = false; 18 | while(getline(DelphiFile,Line)) { 19 | 20 | // Only start printing after implementation 21 | if(Line.find("implementation") == 0) { 22 | ImplementationFound = true; 23 | continue; 24 | } 25 | if(!ImplementationFound) { 26 | continue; 27 | } 28 | 29 | // Only print if it starts with 'procedure' 30 | if(Line.find("procedure ") == 0) { 31 | cout << Line.substr(sizeof("procedure")) << "\n"; 32 | 33 | // Or 'function' 34 | } else if(Line.find("function ") == 0) { 35 | cout << Line.substr(sizeof("function")) << "\n"; 36 | } 37 | } 38 | } 39 | 40 | int main(int argc, char** argv) { 41 | ViewFile("C:\\Program Files (x86)\\Dev-Cpp\\Source\\VCL\\ClassBrowsing\\CppParser.pas"); 42 | return 0; 43 | } 44 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/Project/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tests/Explorer/Project/main.o -------------------------------------------------------------------------------- /Source/Tests/Explorer/float2.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "float2.h" 4 | 5 | float2::float2() { 6 | } 7 | float2::float2(float x,float y) { 8 | this->x = x; 9 | this->y = y; 10 | } 11 | float2::float2(const D3DXVECTOR2& rvalue) { 12 | x = rvalue.x; 13 | y = rvalue.y; 14 | } 15 | float2::float2(const POINT& rvalue) { 16 | x = rvalue.x; 17 | y = rvalue.y; 18 | } 19 | 20 | float float2::Length() { 21 | D3DXVECTOR2 a(x,y); 22 | return D3DXVec2Length(&a); 23 | } 24 | float float2::Dot(const float2& rvalue) { 25 | D3DXVECTOR2 a(x,y); 26 | D3DXVECTOR2 b(rvalue.x,rvalue.y); 27 | return D3DXVec2Dot(&a,&b); 28 | } 29 | float2 float2::SetLength(float value) { 30 | Normalize(); // Set length to 1 31 | x *= value; 32 | y *= value; // multiply 33 | return *this; 34 | } 35 | float2 float2::Normalize() { 36 | D3DXVECTOR2 a(x,y); 37 | D3DXVec2Normalize(&a,&a); 38 | x = a.x; // store result! 39 | y = a.y; 40 | return *this; 41 | } 42 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/float2.h: -------------------------------------------------------------------------------- 1 | #ifndef FLOAT2_H 2 | #define FLOAT2_H 3 | 4 | #include 5 | 6 | #if BUILDING_DLL 7 | #define DLLIMPORT __declspec(dllexport) 8 | #else 9 | #define DLLIMPORT __declspec(dllimport) 10 | #endif 11 | 12 | class DLLIMPORT float2 : public D3DXVECTOR2 { 13 | public: 14 | float2(); 15 | float2(float x,float y); 16 | float2(const D3DXVECTOR2& rvalue); 17 | float2(const POINT& rvalue); 18 | 19 | float Length(); 20 | float Dot(const float2& rvalue); 21 | float2 SetLength(float value); 22 | float2 Normalize(); 23 | }; 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/float3.h: -------------------------------------------------------------------------------- 1 | #ifndef FLOAT3_H 2 | #define FLOAT3_H 3 | 4 | #include 5 | 6 | #if BUILDING_DLL 7 | #define DLLIMPORT __declspec(dllexport) 8 | #else 9 | #define DLLIMPORT __declspec(dllimport) 10 | #endif 11 | 12 | class DLLIMPORT float3 : public D3DXVECTOR3 { 13 | public: 14 | float3(); 15 | float3(float x); 16 | float3(float x,float y,float z); 17 | float3(const D3DXVECTOR3& rvalue); 18 | 19 | float Length(); 20 | float Dot(const float3& rvalue); 21 | float3 Min(const float3& rvalue); 22 | float3 Max(const float3& rvalue); 23 | float3 SetLength(float value); 24 | float3 Cross(const float3& rvalue); 25 | float3 Normalize(); 26 | float3 Transform(const D3DXMATRIX& matrix); 27 | float3 TransformNormal(const D3DXMATRIX& matrix); // x,y,z,0 28 | float3 TransformCoord(const D3DXMATRIX& matrix); // x,y,z,1 29 | }; 30 | 31 | #endif 32 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/float4.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "float4.h" 4 | 5 | float4::float4() { 6 | } 7 | float4::float4(float x,float y,float z,float w) { 8 | this->x = x; 9 | this->y = y; 10 | this->z = z; 11 | this->w = w; 12 | } 13 | float4::float4(const D3DXVECTOR4& rvalue) { 14 | x = rvalue.x; 15 | y = rvalue.y; 16 | z = rvalue.z; 17 | w = rvalue.w; 18 | } 19 | 20 | float float4::Length() { 21 | return D3DXVec4Length(this); 22 | } 23 | float float4::Dot(const float4& rvalue) { 24 | return D3DXVec4Dot(this,&rvalue); 25 | } 26 | float4 float4::SetLength(float value) { 27 | Normalize(); 28 | x *= value; 29 | y *= value; 30 | z *= value; 31 | w *= value; 32 | return *this; 33 | } 34 | float4 float4::Normalize() { 35 | D3DXVec4Normalize(this,this); 36 | return *this; 37 | } 38 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/float4.h: -------------------------------------------------------------------------------- 1 | #ifndef FLOAT4_H 2 | #define FLOAT4_H 3 | 4 | #include 5 | 6 | #if BUILDING_DLL 7 | #define DLLIMPORT __declspec(dllexport) 8 | #else 9 | #define DLLIMPORT __declspec(dllimport) 10 | #endif 11 | 12 | class DLLIMPORT float4 : public D3DXVECTOR4 { 13 | public: 14 | float4(); 15 | float4(float x,float y,float z,float w); 16 | float4(const D3DXVECTOR4& rvalue); 17 | 18 | float Length(); 19 | float Dot(const float4& rvalue); 20 | float4 SetLength(float value); 21 | float4 Normalize(); 22 | }; 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /Source/Tests/Explorer/float4x4.h: -------------------------------------------------------------------------------- 1 | #ifndef FLOAT4X4_H 2 | #define FLOAT4X4_H 3 | 4 | #include 5 | 6 | #include "float3.h" 7 | 8 | #if BUILDING_DLL 9 | #define DLLIMPORT __declspec(dllexport) 10 | #else 11 | #define DLLIMPORT __declspec(dllimport) 12 | #endif 13 | 14 | class DLLIMPORT float4x4 : public D3DXMATRIX { 15 | public: 16 | float4x4(); 17 | float4x4(const D3DXMATRIX& rvalue); 18 | 19 | float4x4 EulerRotation(const D3DXVECTOR3& angle); 20 | float4x4 EulerRotationDeg(const D3DXVECTOR3& angle); 21 | float4x4 Translation(const D3DXVECTOR3& translation); 22 | float4x4 Scaling(const D3DXVECTOR3& scaling); 23 | float4x4 Identity(); 24 | float4x4 Inverse(); // does not apply, only returns result 25 | float4x4 LookAt(const D3DXVECTOR3& from,const D3DXVECTOR3& to); 26 | float Determinant(); 27 | }; 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /Source/Tests/Fail.txt: -------------------------------------------------------------------------------- 1 | - Parser\Function: conversion operators like "operator int" fail 2 | - Parser\Function: declaration does not link with definition if argument list text isn't exactly equal 3 | - Parser\Struct: enum does not show in class browser 4 | - Parsrer\SimpleClass: when hovering above classname left of function declaration, constructor hint is shown 5 | -------------------------------------------------------------------------------- /Source/Tests/Folds/main.cpp: -------------------------------------------------------------------------------- 1 | { 2 | { 3 | { 4 | } 5 | } 6 | { 7 | { 8 | 9 | } 10 | } 11 | switch(a) { 12 | case 1: { 13 | 14 | break; 15 | } 16 | case 2: { 17 | 18 | break; 19 | } 20 | default: { 21 | 22 | break; 23 | } 24 | } 25 | if(aap) { 26 | 27 | } else { 28 | 29 | } 30 | } 31 | 32 | // collapse this one 33 | { 34 | // leave this one as is 35 | { 36 | // collapse this one too 37 | { 38 | 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /Source/Tests/Parser/Code.cpp: -------------------------------------------------------------------------------- 1 | int main() { 2 | // If statement 3 | int a = 0; 4 | bool b = true; 5 | if(b) { 6 | a = 2; 7 | } else { 8 | a = 3; 9 | } 10 | if(a < 3) { 11 | b = false; 12 | } 13 | 14 | b = a < 3; 15 | 16 | // String stuff 17 | char c[32]; 18 | void* d = (void*)"Hello"; 19 | } 20 | -------------------------------------------------------------------------------- /Source/Tests/Parser/Folder/IncludeTestB.h: -------------------------------------------------------------------------------- 1 | int b; 2 | -------------------------------------------------------------------------------- /Source/Tests/Parser/Function.h: -------------------------------------------------------------------------------- 1 | void FunctionDeclDefPair(); 2 | -------------------------------------------------------------------------------- /Source/Tests/Parser/Include.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | System header 3 | */ 4 | #include 5 | #include 6 | # include 7 | #include 8 | #include 9 | # include 10 | #include // comment 11 | #include // comment 12 | # include // comment 13 | /* 14 | Local header 15 | */ 16 | #include"IncludeTestA.h" 17 | #include"IncludeTestA.h" 18 | # include"IncludeTestA.h" 19 | #include "IncludeTestA.h" 20 | #include "IncludeTestA.h" 21 | # include "IncludeTestA.h" 22 | #include "IncludeTestA.h" // comment 23 | #include "IncludeTestA.h" // comment 24 | # include "IncludeTestA.h" // comment 25 | /* 26 | Local header in folder 27 | */ 28 | #include"Folder\IncludeTestB.h" 29 | #include"Folder\IncludeTestB.h" 30 | # include"Folder\IncludeTestB.h" 31 | #include "Folder\IncludeTestB.h" 32 | #include "Folder\IncludeTestB.h" 33 | # include "Folder\IncludeTestB.h" 34 | #include "Folder\IncludeTestB.h" // comment 35 | #include "Folder\IncludeTestB.h" // comment 36 | # include "Folder\IncludeTestB.h" // comment 37 | -------------------------------------------------------------------------------- /Source/Tests/Parser/IncludeTestA.h: -------------------------------------------------------------------------------- 1 | int a; 2 | -------------------------------------------------------------------------------- /Source/Tests/Parser/OperatorTest.cpp: -------------------------------------------------------------------------------- 1 | class DummyClass { 2 | public: 3 | // Conversion operators (to int) 4 | operator int*(); // ERROR: currently shows type "operator" 5 | operator const int*() const; // ERROR: currently shows type "operator const" 6 | }; 7 | 8 | // Conversion operators (to int) 9 | inline DummyClass::operator int*() { // ERROR: does not link with class 10 | } 11 | inline DummyClass::operator const int*() const { // ERROR: does not link with class 12 | } 13 | -------------------------------------------------------------------------------- /Source/Tests/Parser/SimpleClass.cpp: -------------------------------------------------------------------------------- 1 | class ProtoClass { 2 | public: 3 | ProtoClass(); 4 | ProtoClass(int a); 5 | ProtoClass(int a, int b); 6 | ~ProtoClass(); 7 | void Foo() { 8 | } 9 | void Bar(); 10 | }; 11 | 12 | ProtoClass::ProtoClass() { 13 | 14 | } 15 | 16 | ProtoClass::ProtoClass(int a) { 17 | 18 | } 19 | 20 | ProtoClass::ProtoClass(int a, int b) { 21 | 22 | } 23 | 24 | ProtoClass::~ProtoClass() { 25 | 26 | } 27 | 28 | void ProtoClass::Bar() { 29 | 30 | } 31 | 32 | int main() { 33 | ProtoClass A; 34 | A.Foo(); 35 | A.Bar(); 36 | } 37 | -------------------------------------------------------------------------------- /Source/Tests/Parser/Typedef.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Complicated typedef 3 | */ 4 | typedef struct tagREKT { 5 | LONG left; 6 | LONG top; 7 | LONG right; 8 | LONG bottom; 9 | } REKT,*PREKT,*NPREKT,*LPREKT; 10 | -------------------------------------------------------------------------------- /Source/Tests/Parser/Variable.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Simple Arrays 3 | */ 4 | int SimpleVar; 5 | int SimpleDefinedVar = 100; 6 | const int ConstVar = 0xBB; 7 | int VarListA = 2, VarListB = 0, VarListC = 3; 8 | #define C int C 9 | void (*FunctionPointer)(int) = 0; 10 | 11 | /* 12 | Arrays 13 | */ 14 | float Array[] = {1,2,3,4,5}; 15 | float DefinedArray[4] = {1,2,3,4}; 16 | float ZeroedArray[5] = {}; 17 | float PartiallyZeroedArray[6] = {1,2}; 18 | 19 | /* 20 | Char arrays 21 | */ 22 | const char* ConstTextA = "This is a bit of text"; 23 | char ConstTextB[] = "This is a bit of text too"; 24 | char TextBuffer[256]; 25 | const char* ConstTextListA = "waw", ConstTextListB = "waw", ConstTextListC = "waw"; 26 | 27 | int main() { 28 | C; 29 | } 30 | -------------------------------------------------------------------------------- /Source/Tests/Parser/string.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using std::string; 3 | 4 | int main() { 5 | string a; 6 | a.append(); 7 | } 8 | -------------------------------------------------------------------------------- /Source/Tests/Project/main.cpp: -------------------------------------------------------------------------------- 1 | int main() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Source/Tools/DevCppPortable/devcpp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/DevCppPortable/devcpp.ico -------------------------------------------------------------------------------- /Source/Tools/DevCppPortable/lib/libshlwapi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/DevCppPortable/lib/libshlwapi.a -------------------------------------------------------------------------------- /Source/Tools/DevCppPortable/resource.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | 1 ICON "devcpp.ico" 4 | -------------------------------------------------------------------------------- /Source/Tools/GitPush/GitPush.dev: -------------------------------------------------------------------------------- 1 | [Project] 2 | FileName=GitPush.dev 3 | Name=GitPush 4 | Type=1 5 | Ver=2 6 | ObjFiles= 7 | Includes= 8 | Libs= 9 | PrivateResource= 10 | ResourceIncludes= 11 | MakeIncludes= 12 | Compiler= 13 | CppCompiler= 14 | Linker= 15 | IsCpp=1 16 | Icon= 17 | ExeOutput= 18 | ObjectOutput= 19 | LogOutput= 20 | LogOutputEnabled=0 21 | OverrideOutput=0 22 | OverrideOutputName=GitPush.exe 23 | HostApplication= 24 | UseCustomMakefile=0 25 | CustomMakefile= 26 | CommandLine= 27 | Folders= 28 | IncludeVersionInfo=0 29 | SupportXPThemes=0 30 | CompilerSet=3 31 | CompilerSettings=0000000100111000000001001 32 | UnitCount=1 33 | 34 | [VersionInfo] 35 | Major=1 36 | Minor=0 37 | Release=0 38 | Build=0 39 | LanguageID=1033 40 | CharsetID=1252 41 | CompanyName= 42 | FileVersion=1.0.0.0 43 | FileDescription=Developed using the Dev-C++ IDE 44 | InternalName= 45 | LegalCopyright= 46 | LegalTrademarks= 47 | OriginalFilename= 48 | ProductName= 49 | ProductVersion=1.0.0.0 50 | AutoIncBuildNr=0 51 | SyncProduct=1 52 | 53 | [Unit1] 54 | FileName=main.cpp 55 | CompileCpp=1 56 | Folder= 57 | Compile=1 58 | Link=1 59 | Priority=1000 60 | OverrideBuildCmd=0 61 | BuildCmd= 62 | 63 | -------------------------------------------------------------------------------- /Source/Tools/LangCheck/LangCompare.h: -------------------------------------------------------------------------------- 1 | #ifndef LANGCOMPARE_H 2 | #define LANGCOMPARE_H 3 | 4 | #include "LangFile.h" 5 | 6 | class LangCompare { 7 | private: 8 | LangFile& reference; 9 | LangFile& compare; 10 | void Compare(); 11 | public: 12 | LangCompare(LangFile& reference, LangFile& compare); 13 | ~LangCompare(); 14 | protected: 15 | }; 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /Source/Tools/LangCheck/LangFile.h: -------------------------------------------------------------------------------- 1 | #ifndef LANGFILE_H 2 | #define LANGFILE_H 3 | 4 | #include 5 | using std::vector; 6 | #include 7 | using std::string; 8 | #include 9 | #include 10 | #include "resource.h" 11 | 12 | struct LangItem { 13 | int ID; 14 | string text; 15 | string formatspec; 16 | }; 17 | 18 | class LangFile { 19 | public: 20 | LangFile(); 21 | LangFile(const char* FileName); 22 | ~LangFile(); 23 | void OpenFile(const char* FileName); 24 | LangItem* FindID(int ID); 25 | vector contents; 26 | }; 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /Source/Tools/LangCheck/resource.cpp: -------------------------------------------------------------------------------- 1 | #include "resource.h" 2 | 3 | HWND LogBoxHandle; 4 | void Log(const char* format,...) { 5 | if(!LogBoxHandle) { 6 | return; 7 | } 8 | 9 | va_list parameters; 10 | 11 | char text[2048] = ""; 12 | 13 | // Format final message 14 | va_start(parameters,format); 15 | vsnprintf(text,2048,format,parameters); 16 | va_end(parameters); 17 | 18 | // Append to log 19 | int OldLen = SendMessage(LogBoxHandle,WM_GETTEXTLENGTH,0,0); 20 | SendMessage(LogBoxHandle,EM_SETSEL,(WPARAM)OldLen,(LPARAM)OldLen); 21 | SendMessage(LogBoxHandle,EM_REPLACESEL,0,(LPARAM)text); 22 | } 23 | -------------------------------------------------------------------------------- /Source/Tools/LangCheck/resource.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | extern HWND LogBoxHandle; 5 | void Log(const char* format,...); 6 | -------------------------------------------------------------------------------- /Source/Tools/PackMaker/Blocks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/PackMaker/Blocks.obj -------------------------------------------------------------------------------- /Source/Tools/PackMaker/BzLib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/PackMaker/BzLib.obj -------------------------------------------------------------------------------- /Source/Tools/PackMaker/Compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/PackMaker/Compress.obj -------------------------------------------------------------------------------- /Source/Tools/PackMaker/Decompress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/PackMaker/Decompress.obj -------------------------------------------------------------------------------- /Source/Tools/PackMaker/Huffman.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/PackMaker/Huffman.obj -------------------------------------------------------------------------------- /Source/Tools/PackMaker/LibTar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/PackMaker/LibTar.pas -------------------------------------------------------------------------------- /Source/Tools/PackMaker/PackMaker.dpr: -------------------------------------------------------------------------------- 1 | program PackMaker; 2 | 3 | uses 4 | Forms, 5 | main in 'main.pas' {MainForm}, 6 | LibTar in 'LibTar.pas', 7 | BZip2 in 'bzip2.pas', 8 | menufrm in 'menufrm.pas' {MenuForm}, 9 | filefrm in 'filefrm.pas' {FileForm}, 10 | buildfrm in 'buildfrm.pas' {BuildForm}, 11 | actionfrm in 'actionfrm.pas' {ActionForm}; 12 | 13 | {$R *.res} 14 | 15 | begin 16 | Application.Initialize; 17 | Application.Title := 'Dev-C++ Package Maker'; 18 | Application.CreateForm(TMainForm, MainForm); 19 | Application.Run; 20 | end. 21 | -------------------------------------------------------------------------------- /Source/Tools/PackMaker/PackMaker.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/PackMaker/PackMaker.res -------------------------------------------------------------------------------- /Source/Tools/PackMaker/actionfrm.dfm: -------------------------------------------------------------------------------- 1 | object ActionForm: TActionForm 2 | Left = 192 3 | Top = 107 4 | BorderStyle = bsDialog 5 | Caption = 'Choose an Action' 6 | ClientHeight = 109 7 | ClientWidth = 252 8 | Color = clBtnFace 9 | Font.Charset = DEFAULT_CHARSET 10 | Font.Color = clWindowText 11 | Font.Height = -11 12 | Font.Name = 'MS Sans Serif' 13 | Font.Style = [] 14 | OldCreateOrder = False 15 | Position = poScreenCenter 16 | PixelsPerInch = 96 17 | TextHeight = 13 18 | object RadioGroup1: TRadioGroup 19 | Left = 8 20 | Top = 8 21 | Width = 233 22 | Height = 57 23 | Caption = 'What would you like to do?' 24 | ItemIndex = 0 25 | Items.Strings = ( 26 | '&Create a new package' 27 | '&Open an existing package') 28 | TabOrder = 0 29 | end 30 | object BitBtn1: TBitBtn 31 | Left = 41 32 | Top = 76 33 | Width = 81 34 | Height = 25 35 | TabOrder = 1 36 | Kind = bkOK 37 | end 38 | object BitBtn2: TBitBtn 39 | Left = 129 40 | Top = 76 41 | Width = 81 42 | Height = 25 43 | TabOrder = 2 44 | Kind = bkCancel 45 | end 46 | end 47 | -------------------------------------------------------------------------------- /Source/Tools/PackMaker/buildfrm.dfm: -------------------------------------------------------------------------------- 1 | object BuildForm: TBuildForm 2 | Left = 269 3 | Top = 240 4 | BorderIcons = [] 5 | BorderStyle = bsDialog 6 | Caption = 'Building Package...' 7 | ClientHeight = 45 8 | ClientWidth = 265 9 | Color = clBtnFace 10 | Font.Charset = DEFAULT_CHARSET 11 | Font.Color = clWindowText 12 | Font.Height = -11 13 | Font.Name = 'MS Sans Serif' 14 | Font.Style = [] 15 | FormStyle = fsStayOnTop 16 | OldCreateOrder = False 17 | Position = poOwnerFormCenter 18 | PixelsPerInch = 96 19 | TextHeight = 13 20 | object GroupBox: TGroupBox 21 | Left = 0 22 | Top = 0 23 | Width = 265 24 | Height = 45 25 | Align = alClient 26 | Caption = 'Progress... ' 27 | TabOrder = 0 28 | object ProgressBar: TProgressBar 29 | Left = 8 30 | Top = 18 31 | Width = 249 32 | Height = 16 33 | Min = 0 34 | Max = 10 35 | Step = 1 36 | TabOrder = 0 37 | end 38 | end 39 | end 40 | -------------------------------------------------------------------------------- /Source/Tools/PackMaker/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/PackMaker/main.pas -------------------------------------------------------------------------------- /Source/Tools/Packman/Blocks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/Packman/Blocks.obj -------------------------------------------------------------------------------- /Source/Tools/Packman/BzLib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/Packman/BzLib.obj -------------------------------------------------------------------------------- /Source/Tools/Packman/Compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/Packman/Compress.obj -------------------------------------------------------------------------------- /Source/Tools/Packman/Decompress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/Packman/Decompress.obj -------------------------------------------------------------------------------- /Source/Tools/Packman/DetailsForms.pas: -------------------------------------------------------------------------------- 1 | unit DetailsForms; 2 | 3 | interface 4 | 5 | uses 6 | {$IFDEF WIN32} 7 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 8 | Dialogs, StdCtrls, Buttons, ExtCtrls; 9 | {$ENDIF} 10 | {$IFDEF LINUX} 11 | SysUtils, Variants, Classes, QGraphics, QControls, QForms, 12 | QDialogs, QStdCtrls, QButtons, QExtCtrls; 13 | {$ENDIF} 14 | 15 | type 16 | TDetailsForm = class(TForm) 17 | Memo1: TMemo; 18 | Panel1: TPanel; 19 | BitBtn1: TBitBtn; 20 | procedure BitBtn1Click(Sender: TObject); 21 | private 22 | { Private declarations } 23 | public 24 | { Public declarations } 25 | end; 26 | 27 | var 28 | DetailsForm: TDetailsForm; 29 | 30 | implementation 31 | 32 | {$R *.dfm} 33 | 34 | procedure TDetailsForm.BitBtn1Click(Sender: TObject); 35 | begin 36 | Close; 37 | end; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Source/Tools/Packman/ExceptionsAnalyzer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/Packman/ExceptionsAnalyzer.pas -------------------------------------------------------------------------------- /Source/Tools/Packman/ExtractionProgressDialog.dfm: -------------------------------------------------------------------------------- 1 | object ExtractionProgress: TExtractionProgress 2 | Left = 192 3 | Top = 107 4 | BorderIcons = [biMinimize, biMaximize] 5 | BorderStyle = bsDialog 6 | Caption = 'Extraction progress' 7 | ClientHeight = 54 8 | ClientWidth = 329 9 | Color = clBtnFace 10 | Font.Charset = DEFAULT_CHARSET 11 | Font.Color = clWindowText 12 | Font.Height = -11 13 | Font.Name = 'MS Sans Serif' 14 | Font.Style = [] 15 | OldCreateOrder = False 16 | Position = poScreenCenter 17 | PixelsPerInch = 96 18 | TextHeight = 13 19 | object Label1: TLabel 20 | Left = 8 21 | Top = 8 22 | Width = 311 23 | Height = 13 24 | Caption = 25 | 'Please wait while Package Manager is preparing the installation.' + 26 | '...' 27 | end 28 | object ProgressBar1: TProgressBar 29 | Left = 8 30 | Top = 24 31 | Width = 313 32 | Height = 19 33 | Min = 0 34 | Max = 100 35 | Smooth = True 36 | TabOrder = 0 37 | end 38 | object Memo1: TMemo 39 | Left = 8 40 | Top = 56 41 | Width = 313 42 | Height = 145 43 | ScrollBars = ssVertical 44 | TabOrder = 1 45 | end 46 | end 47 | -------------------------------------------------------------------------------- /Source/Tools/Packman/ExtractionProgressDialog.pas: -------------------------------------------------------------------------------- 1 | unit ExtractionProgressDialog; 2 | 3 | interface 4 | 5 | uses 6 | {$IFDEF WIN32} 7 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 8 | Dialogs, ComCtrls, StdCtrls; 9 | {$ENDIF} 10 | {$IFDEF LINUX} 11 | SysUtils, Variants, Classes, QGraphics, QControls, QForms, 12 | QDialogs, QComCtrls, QStdCtrls; 13 | {$ENDIF} 14 | 15 | type 16 | TExtractionProgress = class(TForm) 17 | Label1: TLabel; 18 | ProgressBar1: TProgressBar; 19 | Memo1: TMemo; 20 | private 21 | { Private declarations } 22 | public 23 | { Public declarations } 24 | end; 25 | 26 | var 27 | ExtractionProgress: TExtractionProgress; 28 | 29 | implementation 30 | 31 | {$R *.dfm} 32 | 33 | end. 34 | -------------------------------------------------------------------------------- /Source/Tools/Packman/Huffman.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/Packman/Huffman.obj -------------------------------------------------------------------------------- /Source/Tools/Packman/LibTar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/Packman/LibTar.pas -------------------------------------------------------------------------------- /Source/Tools/Packman/Packman.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J- 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -GD 28 | -cg 29 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 30 | -H+ 31 | -W+ 32 | -M 33 | -$M16384,1048576 34 | -K$00400000 35 | -LE"c:\program files\borland\delphi6\Projects\Bpl" 36 | -LN"c:\program files\borland\delphi6\Projects\Bpl" 37 | -------------------------------------------------------------------------------- /Source/Tools/Packman/Packman.dpr: -------------------------------------------------------------------------------- 1 | program Packman; 2 | 3 | uses 4 | {$IFDEF WIN32} 5 | Forms, 6 | {$ENDIF} 7 | {$IFDEF LINUX} 8 | QForms, 9 | {$ENDIF} 10 | InstallWizards in 'InstallWizards.pas' {InstallWizard}, 11 | InstallFiles in 'InstallFiles.pas', 12 | Installers in 'Installers.pas', 13 | Main in 'Main.pas' {MainForm}, 14 | PackmanUtils in 'PackmanUtils.pas', 15 | RemoveForms in 'RemoveForms.pas' {RemoveForm}, 16 | VerifyForms in 'VerifyForms.pas' {VerifyForm}, 17 | DetailsForms in 'DetailsForms.pas' {DetailsForm}, 18 | AboutForms in 'AboutForms.pas' {AboutForm}, 19 | BZip2 in 'bzip2.pas', 20 | LibTar in 'LibTar.pas', 21 | ExtractionProgressDialog in 'ExtractionProgressDialog.pas' {ExtractionProgress}, 22 | PackmanExitCodesU in 'PackmanExitCodesU.pas', 23 | ExceptionsAnalyzer in 'ExceptionsAnalyzer.pas' {frmExceptionsAnalyzer}, 24 | Unzip in 'unzip\UNZIP.PAS', 25 | ziptypes in 'unzip\ZIPTYPES.PAS'; 26 | 27 | {$R *.res} 28 | 29 | begin 30 | Application.Initialize; 31 | Application.Title := 'Package Manager'; 32 | Application.CreateForm(TMainForm, MainForm); 33 | Application.Run; 34 | end. 35 | -------------------------------------------------------------------------------- /Source/Tools/Packman/Packman.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/Tools/Packman/Packman.res -------------------------------------------------------------------------------- /Source/Tools/Packman/PackmanExitCodesU.pas: -------------------------------------------------------------------------------- 1 | unit PackmanExitCodesU; 2 | 3 | interface 4 | 5 | type 6 | TPackmanExitCode = Integer; 7 | 8 | const 9 | PACKMAN_EXITCODE_ERRCODE_UNKNOWN : TPackmanExitCode = -1; 10 | PACKMAN_EXITCODE_NO_ERROR : TPackmanExitCode = 0; 11 | PACKMAN_EXITCODE_INVALID_FORMAT : TPackmanExitCode = 1; 12 | PACKMAN_EXITCODE_INSTALL_CANCELLED : TPackmanExitCode = 2; 13 | PACKMAN_EXITCODE_NO_PACKAGE_DESCRIPTION : TPackmanExitCode = 3; 14 | PACKMAN_EXITCODE_VERSION_NOT_SUPPORTED : TPackmanExitCode = 4; 15 | PACKMAN_EXITCODE_DEPENDACIES_NOT_MET : TPackmanExitCode = 5; 16 | PACKMAN_EXITCODE_FILE_NOT_FOUND : TPackmanExitCode = 6; 17 | 18 | implementation 19 | 20 | end. -------------------------------------------------------------------------------- /Source/Units/dummy.txt: -------------------------------------------------------------------------------- 1 | Dummy file that ensures git commits this folder. Without this file, this folder becomes empty and git will not commit it, even though Delphi needs it for compilations. -------------------------------------------------------------------------------- /Source/VCL/ClassBrowsing/ClassBrowsing.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I- 10 | -$J+ 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$Y- 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files (x86)\delphi7se\Projects\Bpl" 35 | -LN"c:\program files (x86)\delphi7se\Projects\Bpl" 36 | -Z 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /Source/VCL/ClassBrowsing/ClassBrowsing.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/ClassBrowsing/ClassBrowsing.dcr -------------------------------------------------------------------------------- /Source/VCL/ClassBrowsing/ClassBrowsing.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/ClassBrowsing/ClassBrowsing.res -------------------------------------------------------------------------------- /Source/VCL/ClassBrowsing/CodeCompletion.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/ClassBrowsing/CodeCompletion.dcr -------------------------------------------------------------------------------- /Source/VCL/ClassBrowsing/CppParser.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/ClassBrowsing/CppParser.dcr -------------------------------------------------------------------------------- /Source/VCL/ClassBrowsing/CppPreprocessor.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/ClassBrowsing/CppPreprocessor.dcr -------------------------------------------------------------------------------- /Source/VCL/ClassBrowsing/CppTokenizer.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/ClassBrowsing/CppTokenizer.dcr -------------------------------------------------------------------------------- /Source/VCL/DevCpp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/DevCpp.res -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Contributors.txt -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_BCB3.bpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Packages/SynEdit_BCB3.bpk -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_BCB3.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | #include 3 | #pragma hdrstop 4 | USERES("SynEdit_BCB3.res"); 5 | USEUNIT("..\Source\SynEditReg.pas"); 6 | USERES("..\Source\SynEditReg.dcr"); 7 | USEUNIT("..\Source\SynEditPropertyReg.pas"); 8 | USEPACKAGE("vcl35.bpi"); 9 | USEPACKAGE("vcldb35.bpi"); 10 | //--------------------------------------------------------------------------- 11 | #pragma package(smart_init) 12 | //--------------------------------------------------------------------------- 13 | // Package-Quelle. 14 | //--------------------------------------------------------------------------- 15 | int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*) 16 | { 17 | return 1; 18 | } 19 | //--------------------------------------------------------------------------- 20 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_BCB4.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | #include 3 | #pragma hdrstop 4 | USERES("SynEdit_BCB4.res"); 5 | USEPACKAGE("vcl40.bpi"); 6 | USEUNIT("..\Source\SynEditReg.pas"); 7 | USERES("..\Source\SynEditReg.dcr"); 8 | USEUNIT("..\Source\SynEditPropertyReg.pas"); 9 | USEPACKAGE("vclx40.bpi"); 10 | USEPACKAGE("vcldb40.bpi"); 11 | //--------------------------------------------------------------------------- 12 | #pragma package(smart_init) 13 | //--------------------------------------------------------------------------- 14 | // Package source. 15 | //--------------------------------------------------------------------------- 16 | int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*) 17 | { 18 | return 1; 19 | } 20 | //--------------------------------------------------------------------------- 21 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_BCB5.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | USERES("SynEdit_BCB5.res"); 6 | USEPACKAGE("vcl50.bpi"); 7 | USEUNIT("..\Source\SynEditReg.pas"); 8 | USERES("..\Source\SynEditReg.dcr"); 9 | USEUNIT("..\Source\SynEditPropertyReg.pas"); 10 | USEPACKAGE("vclx50.bpi"); 11 | USEPACKAGE("vcldb50.bpi"); 12 | //--------------------------------------------------------------------------- 13 | #pragma package(smart_init) 14 | //--------------------------------------------------------------------------- 15 | 16 | // Package source. 17 | //--------------------------------------------------------------------------- 18 | 19 | #pragma argsused 20 | int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*) 21 | { 22 | return 1; 23 | } 24 | //--------------------------------------------------------------------------- 25 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_BCB6.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | USERES("SynEdit_BCB6.res"); 6 | USEPACKAGE("vcl60.bpi"); 7 | USEUNIT("..\Source\SynEditReg.pas"); 8 | USERES("..\Source\SynEditReg.dcr"); 9 | USEUNIT("..\Source\SynEditPropertyReg.pas"); 10 | USEPACKAGE("vclx60.bpi"); 11 | USEPACKAGE("vcldb60.bpi"); 12 | #pragma package(smart_init) 13 | //--------------------------------------------------------------------------- 14 | 15 | // Package source. 16 | //--------------------------------------------------------------------------- 17 | 18 | #pragma argsused 19 | int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*) 20 | { 21 | return 1; 22 | } 23 | //--------------------------------------------------------------------------- 24 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_BCB6_PE.cpp: -------------------------------------------------------------------------------- 1 | //--------------------------------------------------------------------------- 2 | 3 | #include 4 | #pragma hdrstop 5 | USERES("SynEdit_BCB6_PE.res"); 6 | USEPACKAGE("vcl60.bpi"); 7 | USEUNIT("..\Source\SynEditReg.pas"); 8 | USERES("..\Source\SynEditReg.dcr"); 9 | USEUNIT("..\Source\SynEditPropertyReg.pas"); 10 | USEPACKAGE("vclx60.bpi"); 11 | USEPACKAGE("designide.bpi"); 12 | //--------------------------------------------------------------------------- 13 | #pragma package(smart_init) 14 | //--------------------------------------------------------------------------- 15 | 16 | // Package source. 17 | //--------------------------------------------------------------------------- 18 | 19 | #pragma argsused 20 | int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*) 21 | { 22 | return 1; 23 | } 24 | //--------------------------------------------------------------------------- 25 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D2005.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D2005; 2 | 3 | { $Id: SynEdit_D2005.dpk,v 1.1 2004/12/07 21:13:16 plpolak Exp $ } 4 | 5 | {$R *.res} 6 | {$R '..\Source\SynEditReg.dcr'} 7 | {$ALIGN 8} 8 | {$ASSERTIONS ON} 9 | {$BOOLEVAL OFF} 10 | {$DEBUGINFO ON} 11 | {$EXTENDEDSYNTAX ON} 12 | {$IMPORTEDDATA ON} 13 | {$IOCHECKS ON} 14 | {$LOCALSYMBOLS ON} 15 | {$LONGSTRINGS ON} 16 | {$OPENSTRINGS ON} 17 | {$OPTIMIZATION ON} 18 | {$OVERFLOWCHECKS OFF} 19 | {$RANGECHECKS OFF} 20 | {$REFERENCEINFO ON} 21 | {$SAFEDIVIDE OFF} 22 | {$STACKFRAMES OFF} 23 | {$TYPEDADDRESS OFF} 24 | {$VARSTRINGCHECKS ON} 25 | {$WRITEABLECONST ON} 26 | {$MINENUMSIZE 1} 27 | {$IMAGEBASE $400000} 28 | {$DESCRIPTION 'SynEdit component suite'} 29 | {$DESIGNONLY} 30 | {$IMPLICITBUILD OFF} 31 | 32 | requires 33 | designide, 34 | SynEdit_R2005; 35 | 36 | contains 37 | SynEditReg in '..\Source\SynEditReg.pas', 38 | SynEditPropertyReg in '..\Source\SynEditPropertyReg.pas', 39 | SynHighlighterManager in '..\Source\SynHighlighterManager.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D2006.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D2006; 2 | 3 | { $Id: SynEdit_D2006.dpk,v 1.1 2005/12/31 07:34:36 skyweb Exp $ } 4 | 5 | {$R *.res} 6 | {$R '..\Source\SynEditReg.dcr'} 7 | {$ALIGN 8} 8 | {$ASSERTIONS ON} 9 | {$BOOLEVAL OFF} 10 | {$DEBUGINFO ON} 11 | {$EXTENDEDSYNTAX ON} 12 | {$IMPORTEDDATA ON} 13 | {$IOCHECKS ON} 14 | {$LOCALSYMBOLS ON} 15 | {$LONGSTRINGS ON} 16 | {$OPENSTRINGS ON} 17 | {$OPTIMIZATION ON} 18 | {$OVERFLOWCHECKS OFF} 19 | {$RANGECHECKS OFF} 20 | {$REFERENCEINFO ON} 21 | {$SAFEDIVIDE OFF} 22 | {$STACKFRAMES OFF} 23 | {$TYPEDADDRESS OFF} 24 | {$VARSTRINGCHECKS ON} 25 | {$WRITEABLECONST ON} 26 | {$MINENUMSIZE 1} 27 | {$IMAGEBASE $400000} 28 | {$DESCRIPTION 'SynEdit component suite'} 29 | {$DESIGNONLY} 30 | {$IMPLICITBUILD OFF} 31 | 32 | requires 33 | designide, 34 | SynEdit_R2006; 35 | 36 | contains 37 | SynEditReg in '..\Source\SynEditReg.pas', 38 | SynEditPropertyReg in '..\Source\SynEditPropertyReg.pas', 39 | SynHighlighterManager in '..\Source\SynHighlighterManager.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D3.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D3; 2 | 3 | {$R *.RES} 4 | {$R 'SynEditReg.dcr'} 5 | {$ALIGN ON} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO ON} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS ON} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO OFF} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST ON} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $00400000} 26 | {$DESCRIPTION 'SynEdit component suite'} 27 | {$DESIGNONLY} 28 | {$IMPLICITBUILD ON} 29 | 30 | requires 31 | vcl30, 32 | vcldb30; 33 | 34 | contains 35 | SynEditReg, 36 | SynEditPropertyReg; 37 | 38 | end. 39 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D4.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D4; 2 | 3 | {.$R *.RES} 4 | {$R '..\Source\SynEditReg.dcr'} 5 | {$ALIGN ON} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO ON} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS ON} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO ON} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST ON} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $00400000} 26 | {$DESCRIPTION 'SynEdit component suite'} 27 | {$DESIGNONLY} 28 | {$IMPLICITBUILD OFF} 29 | 30 | requires 31 | vcl40, 32 | Vclx40, 33 | Vcldb40; 34 | 35 | contains 36 | SynEditReg in '..\Source\SynEditReg.pas', 37 | SynEditPropertyReg in '..\Source\SynEditPropertyReg.pas'; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D5.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D5; 2 | 3 | {$R *.RES} 4 | {$R '..\Source\SynEditReg.dcr'} 5 | {$ALIGN ON} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO ON} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS ON} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO ON} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST ON} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DESCRIPTION 'SynEdit component suite'} 27 | {$IMPLICITBUILD OFF} 28 | 29 | requires 30 | SynEdit_R5; 31 | 32 | contains 33 | SynEditReg in '..\Source\SynEditReg.pas', 34 | SynEditPropertyReg in '..\Source\SynEditPropertyReg.pas', 35 | SynHighlighterManager in '..\Source\SynHighlighterManager.pas'; 36 | 37 | end. 38 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D6.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D6; 2 | 3 | { $Id: SynEdit_D6.dpk,v 1.5 2003/12/31 11:08:26 markonjezic Exp $ } 4 | 5 | {$R *.res} 6 | {$R '..\Source\SynEditReg.dcr'} 7 | {$ALIGN 8} 8 | {$ASSERTIONS ON} 9 | {$BOOLEVAL OFF} 10 | {$DEBUGINFO ON} 11 | {$EXTENDEDSYNTAX ON} 12 | {$IMPORTEDDATA ON} 13 | {$IOCHECKS ON} 14 | {$LOCALSYMBOLS ON} 15 | {$LONGSTRINGS ON} 16 | {$OPENSTRINGS ON} 17 | {$OPTIMIZATION ON} 18 | {$OVERFLOWCHECKS OFF} 19 | {$RANGECHECKS OFF} 20 | {$REFERENCEINFO ON} 21 | {$SAFEDIVIDE OFF} 22 | {$STACKFRAMES OFF} 23 | {$TYPEDADDRESS OFF} 24 | {$VARSTRINGCHECKS ON} 25 | {$WRITEABLECONST ON} 26 | {$MINENUMSIZE 1} 27 | {$IMAGEBASE $400000} 28 | {$DESCRIPTION 'SynEdit component suite'} 29 | {$DESIGNONLY} 30 | {$IMPLICITBUILD OFF} 31 | 32 | requires 33 | designide, 34 | SynEdit_R6; 35 | 36 | contains 37 | SynEditReg in '..\Source\SynEditReg.pas', 38 | SynEditPropertyReg in '..\Source\SynEditPropertyReg.pas', 39 | SynHighlighterManager in '..\Source\SynHighlighterManager.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D6_PE.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D6_PE; 2 | 3 | {$R *.res} 4 | {$R '..\Source\SynEditReg.dcr'} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO ON} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS ON} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO ON} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST ON} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DESCRIPTION 'SynEdit component suite'} 27 | {$IMPLICITBUILD OFF} 28 | {$DEFINE SYN_DELPHI_PE} 29 | 30 | requires 31 | designide, 32 | SynEdit_R6_PE; 33 | 34 | contains 35 | SynEditReg in '..\Source\SynEditReg.pas', 36 | SynEditPropertyReg in '..\Source\SynEditPropertyReg.pas'; 37 | 38 | end. 39 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D7.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J+ 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files (x86)\delphi7se\Projects\Bpl" 35 | -LN"c:\program files (x86)\delphi7se\Projects\Bpl" 36 | -Z 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D7.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D7; 2 | 3 | { $Id: SynEdit_D7.dpk,v 1.4 2004/04/22 21:01:21 markonjezic Exp $ } 4 | 5 | {$R *.res} 6 | {$R '..\Source\SynEditReg.dcr'} 7 | {$ALIGN 8} 8 | {$ASSERTIONS ON} 9 | {$BOOLEVAL OFF} 10 | {$DEBUGINFO ON} 11 | {$EXTENDEDSYNTAX ON} 12 | {$IMPORTEDDATA ON} 13 | {$IOCHECKS ON} 14 | {$LOCALSYMBOLS ON} 15 | {$LONGSTRINGS ON} 16 | {$OPENSTRINGS ON} 17 | {$OPTIMIZATION ON} 18 | {$OVERFLOWCHECKS OFF} 19 | {$RANGECHECKS OFF} 20 | {$REFERENCEINFO ON} 21 | {$SAFEDIVIDE OFF} 22 | {$STACKFRAMES OFF} 23 | {$TYPEDADDRESS OFF} 24 | {$VARSTRINGCHECKS ON} 25 | {$WRITEABLECONST ON} 26 | {$MINENUMSIZE 1} 27 | {$IMAGEBASE $400000} 28 | {$DESCRIPTION 'SynEdit component suite'} 29 | {$DESIGNONLY} 30 | {$IMPLICITBUILD OFF} 31 | 32 | requires 33 | designide, 34 | SynEdit_R7; 35 | 36 | contains 37 | SynEditReg in '..\Source\SynEditReg.pas', 38 | SynEditPropertyReg in '..\Source\SynEditPropertyReg.pas', 39 | SynHighlighterManager in '..\Source\SynHighlighterManager.pas'; 40 | 41 | end. 42 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D7.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Packages/SynEdit_D7.res -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D7_CLX.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D7_CLX; 2 | 3 | {$R *.res} 4 | {$R '..\Source\SynEditReg.dcr'} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO ON} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS ON} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO ON} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST ON} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DESCRIPTION 'SynEdit CLX component suite'} 27 | {$IMPLICITBUILD OFF} 28 | {$DEFINE SYN_CLX} 29 | 30 | requires 31 | visualclx, 32 | visualdbclx, 33 | designide; 34 | 35 | contains 36 | QSynEditReg in '..\Source\QSynEditReg.pas', 37 | QSynEditPropertyReg in '..\Source\QSynEditPropertyReg.pas'; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_D7_PE.dpk: -------------------------------------------------------------------------------- 1 | package SynEdit_D7_PE; 2 | 3 | {$R *.res} 4 | {$R '..\Source\SynEditReg.dcr'} 5 | {$ALIGN 8} 6 | {$ASSERTIONS ON} 7 | {$BOOLEVAL OFF} 8 | {$DEBUGINFO ON} 9 | {$EXTENDEDSYNTAX ON} 10 | {$IMPORTEDDATA ON} 11 | {$IOCHECKS ON} 12 | {$LOCALSYMBOLS ON} 13 | {$LONGSTRINGS ON} 14 | {$OPENSTRINGS ON} 15 | {$OPTIMIZATION ON} 16 | {$OVERFLOWCHECKS OFF} 17 | {$RANGECHECKS OFF} 18 | {$REFERENCEINFO ON} 19 | {$SAFEDIVIDE OFF} 20 | {$STACKFRAMES OFF} 21 | {$TYPEDADDRESS OFF} 22 | {$VARSTRINGCHECKS ON} 23 | {$WRITEABLECONST ON} 24 | {$MINENUMSIZE 1} 25 | {$IMAGEBASE $400000} 26 | {$DESCRIPTION 'SynEdit component suite'} 27 | {$IMPLICITBUILD OFF} 28 | {$DEFINE SYN_DELPHI_PE} 29 | 30 | requires 31 | vcl, 32 | vclx, 33 | designide; 34 | 35 | contains 36 | SynEditReg in '..\Source\SynEditReg.pas', 37 | SynEditPropertyReg in '..\Source\SynEditPropertyReg.pas'; 38 | 39 | end. 40 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_R7.cfg: -------------------------------------------------------------------------------- 1 | -$A8 2 | -$B- 3 | -$C+ 4 | -$D+ 5 | -$E- 6 | -$F- 7 | -$G+ 8 | -$H+ 9 | -$I+ 10 | -$J+ 11 | -$K- 12 | -$L+ 13 | -$M- 14 | -$N+ 15 | -$O+ 16 | -$P+ 17 | -$Q- 18 | -$R- 19 | -$S- 20 | -$T- 21 | -$U- 22 | -$V+ 23 | -$W- 24 | -$X+ 25 | -$YD 26 | -$Z1 27 | -cg 28 | -AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 29 | -H+ 30 | -W+ 31 | -M 32 | -$M16384,1048576 33 | -K$00400000 34 | -LE"c:\program files (x86)\delphi7se\Projects\Bpl" 35 | -LN"c:\program files (x86)\delphi7se\Projects\Bpl" 36 | -Z 37 | -w-UNSAFE_TYPE 38 | -w-UNSAFE_CODE 39 | -w-UNSAFE_CAST 40 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/SynEdit_R7.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Packages/SynEdit_R7.res -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Packages/synedit_kylix.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Packages/synedit_kylix.res -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/Page.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/Page.bmp -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynAutoCorrect.pas: -------------------------------------------------------------------------------- 1 | unit QSynAutoCorrect; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNAUTOCORRECT} 5 | 6 | {$I SynAutoCorrect.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynAutoCorrectEditor.pas: -------------------------------------------------------------------------------- 1 | unit QSynAutoCorrectEditor; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNAUTOCORRECTEDITOR} 5 | 6 | {$I SynAutoCorrectEditor.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynCompletionProposal.pas: -------------------------------------------------------------------------------- 1 | unit QSynCompletionProposal; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNCOMPLETIONPROPOSAL} 5 | 6 | {$I SynCompletionProposal.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynDBEdit.pas: -------------------------------------------------------------------------------- 1 | unit QSynDBEdit; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNDBEDIT} 5 | 6 | {$I SynDBEdit.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEdit.pas: -------------------------------------------------------------------------------- 1 | unit QSynEdit; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDIT} 5 | 6 | {$I SynEdit.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditAutoComplete.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditAutoComplete; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITAUTOCOMPLETE} 5 | 6 | {$I SynEditAutoComplete.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditExport.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditExport; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITEXPORT} 5 | 6 | {$I SynEditExport.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditHighlighter.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditHighlighter; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITHIGHLIGHTER} 5 | 6 | {$I SynEditHighlighter.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditKbdHandler.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditKbdHandler; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITKBDHANDLER} 5 | 6 | {$I SynEditKbdHandler.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditKeyCmdEditor.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditKeyCmdEditor; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITKEYCMDEDITOR} 5 | 6 | {$I SynEditKeyCmdEditor.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditKeyCmds.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditKeyCmds; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITKEYCMDS} 5 | 6 | {$I SynEditKeyCmds.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditKeyCmdsEditor.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditKeyCmdsEditor; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITKEYCMDSEDITOR} 5 | 6 | {$I SynEditKeyCmdsEditor.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditKeyConst.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditKeyConst; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITKEYCONST} 5 | 6 | {$I SynEditKeyConst.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditMiscClasses.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditMiscClasses; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITMISCCLASSES} 5 | 6 | {$I SynEditMiscClasses.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditMiscProcs.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditMiscProcs; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITMISCPROCS} 5 | 6 | {$I SynEditMiscProcs.pas} 7 | 8 | 9 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditOptionsDialog.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditOptionsDialog; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITOPTIONSDIALOG} 5 | 6 | {$I SynEditOptionsDialog.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPlugins.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPlugins; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPLUGINS} 5 | 6 | {$I SynEditPlugins.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPrint.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPrint; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPRINT} 5 | 6 | {$I SynEditPrint.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPrintHeaderFooter.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPrintHeaderFooter; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPRINTHEADERFOOTER} 5 | 6 | {$I SynEditPrintHeaderFooter.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPrintMargins.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPrintMargins; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPRINTMARGINS} 5 | 6 | {$I SynEditPrintMargins.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPrintMarginsDialog.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPrintMarginsDialog; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPRINTMARGINSDIALOG} 5 | 6 | {$I SynEditPrintMarginsDialog.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPrintPreview.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPrintPreview; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPRINTPREVIEW} 5 | 6 | {$I SynEditPrintPreview.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPrintTypes.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPrintTypes; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPRINTTYPES} 5 | 6 | {$I SynEditPrintTypes.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPrinterInfo.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPrinterInfo; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPRINTERINFO} 5 | 6 | {$I SynEditPrinterInfo.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPropertyReg.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPropertyReg; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPROPERTYREG} 5 | 6 | {$I SynEditPropertyReg.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditPythonBehaviour.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditPythonBehaviour; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITPYTHONBEHAVIOUR} 5 | 6 | {$I SynEditPythonBehaviour.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditReg.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditReg; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITREG} 5 | 6 | {$I SynEditReg.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditRegexSearch.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditRegexSearch; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITREGEXSEARCH} 5 | 6 | {$I SynEditRegexSearch.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditSearch.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditSearch; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITSEARCH} 5 | 6 | {$I SynEditSearch.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditStrConst.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditStrConst; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITSTRCONST} 5 | 6 | {$I SynEditStrConst.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditTextBuffer.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditTextBuffer; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITTEXTBUFFER} 5 | 6 | {$I SynEditTextBuffer.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditTypes.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditTypes; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITTYPES} 5 | 6 | {$I SynEditTypes.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditWildcardSearch.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditWildcardSearch; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITWILDCARDSEARCH} 5 | 6 | {$I SynEditWildcardSearch.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynEditWordWrap.pas: -------------------------------------------------------------------------------- 1 | unit QSynEditWordWrap; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEDITWORDWRAP} 5 | 6 | {$I SynEditWordWrap.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynExportHTML.pas: -------------------------------------------------------------------------------- 1 | unit QSynExportHTML; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEXPORTHTML} 5 | 6 | {$I SynExportHTML.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynExportRTF.pas: -------------------------------------------------------------------------------- 1 | unit QSynExportRTF; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEXPORTRTF} 5 | 6 | {$I SynExportRTF.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynExportTeX.pas: -------------------------------------------------------------------------------- 1 | unit QSynExportTeX; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNEXPORTTEX} 5 | 6 | {$I SynExportTeX.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterADSP21xx.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterADSP21xx; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERADSP21XX} 5 | 6 | {$I SynHighlighterADSP21xx.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterAWK.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterAWK; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERAWK} 5 | 6 | {$I SynHighlighterAWK.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterAsm.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterAsm; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERASM} 5 | 6 | {$I SynHighlighterAsm.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterBaan.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterBaan; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERBAAN} 5 | 6 | {$I SynHighlighterBaan.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterBat.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterBat; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERBAT} 5 | 6 | {$I SynHighlighterBat.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterCAC.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterCAC; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERCAC} 5 | 6 | {$I SynHighlighterCAC.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterCPM.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterCPM; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERCPM} 5 | 6 | {$I SynHighlighterCPM.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterCS.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterCS; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERCS} 5 | 6 | {$I SynHighlighterCS.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterCache.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterCache; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERCACHE} 5 | 6 | {$I SynHighlighterCache.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterCobol.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterCobol; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERCOBOL} 5 | 6 | {$I SynHighlighterCobol.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterCpp.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterCpp; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERCPP} 5 | 6 | {$I SynHighlighterCpp.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterCss.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterCss; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERCSS} 5 | 6 | {$I SynHighlighterCss.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterDOT.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterDOT; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERDOT} 5 | 6 | {$I SynHighlighterDOT.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterDfm.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterDfm; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERDFM} 5 | 6 | {$I SynHighlighterDfm.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterDml.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterDml; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERDML} 5 | 6 | {$I SynHighlighterDml.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterEiffel.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterEiffel; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTEREIFFEL} 5 | 6 | {$I SynHighlighterEiffel.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterFortran.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterFortran; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERFORTRAN} 5 | 6 | {$I SynHighlighterFortran.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterFoxpro.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterFoxpro; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERFOXPRO} 5 | 6 | {$I SynHighlighterFoxpro.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterGWS.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterGWS; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERGWS} 5 | 6 | {$I SynHighlighterGWS.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterGalaxy.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterGalaxy; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERGALAXY} 5 | 6 | {$I SynHighlighterGalaxy.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterGeneral.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterGeneral; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERGENERAL} 5 | 6 | {$I SynHighlighterGeneral.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterHC11.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterHC11; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERHC11} 5 | 6 | {$I SynHighlighterHC11.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterHP48.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterHP48; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERHP48} 5 | 6 | {$I SynHighlighterHP48.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterHashEntries.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterHashEntries; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERHASHENTRIES} 5 | 6 | {$I SynHighlighterHashEntries.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterHaskell.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterHaskell; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERHASKELL} 5 | 6 | {$I SynHighlighterHaskell.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterHtml.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterHtml; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERHTML} 5 | 6 | {$I SynHighlighterHtml.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterIDL.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterIDL; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERIDL} 5 | 6 | {$I SynHighlighterIDL.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterIni.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterIni; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERINI} 5 | 6 | {$I SynHighlighterIni.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterInno.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterInno; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERINNO} 5 | 6 | {$I SynHighlighterInno.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterJScript.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterJScript; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERJSCRIPT} 5 | 6 | {$I SynHighlighterJScript.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterJava.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterJava; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERJAVA} 5 | 6 | {$I SynHighlighterJava.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterKix.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterKix; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERKIX} 5 | 6 | {$I SynHighlighterKix.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterLDraw.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterLDraw; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERLDRAW} 5 | 6 | {$I SynHighlighterLDraw.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterM3.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterM3; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERM3} 5 | 6 | {$I SynHighlighterM3.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterManager.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterManager; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERMANAGER} 5 | 6 | {$I SynHighlighterManager.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterModelica.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterModelica; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERMODELICA} 5 | 6 | {$I SynHighlighterModelica.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterMsg.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterMsg; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERMSG} 5 | 6 | {$I SynHighlighterMsg.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterMulti.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterMulti; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERMULTI} 5 | 6 | {$I SynHighlighterMulti.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterPHP.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterPHP; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERPHP} 5 | 6 | {$I SynHighlighterPHP.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterPas.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterPas; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERPAS} 5 | 6 | {$I SynHighlighterPas.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterPerl.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterPerl; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERPERL} 5 | 6 | {$I SynHighlighterPerl.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterProgress.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterProgress; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERPROGRESS} 5 | 6 | {$I SynHighlighterProgress.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterPython.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterPython; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERPYTHON} 5 | 6 | {$I SynHighlighterPython.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterRC.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterRC; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERRC} 5 | 6 | {$I SynHighlighterRC.pas} 7 | 8 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterRuby.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterRuby; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERRUBY} 5 | 6 | {$I SynHighlighterRuby.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterSDD.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterSDD; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERSDD} 5 | 6 | {$I SynHighlighterSDD.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterSQL.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterSQL; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERSQL} 5 | 6 | {$I SynHighlighterSQL.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterST.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterST; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERST} 5 | 6 | {$I SynHighlighterST.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterSml.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterSml; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERSML} 5 | 6 | {$I SynHighlighterSml.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterTclTk.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterTclTk; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERTCLTK} 5 | 6 | {$I SynHighlighterTclTk.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterTeX.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterTeX; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERTEX} 5 | 6 | {$I SynHighlighterTeX.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterUNIXShellScript.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterUNIXShellScript; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSynHighlighterUNIXShellScript} 5 | 6 | {$I SynHighlighterUNIXShellScript.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterURI.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterURI; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERURI} 5 | 6 | {$I SynHighlighterURI.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterUnreal.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterUnreal; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERUNREAL} 5 | 6 | {$I SynHighlighterUnreal.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterVB.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterVB; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERVB} 5 | 6 | {$I SynHighlighterVB.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterVBScript.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterVBScript; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERVBSCRIPT} 5 | 6 | {$I SynHighlighterVBScript.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterVrml97.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterVrml97; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERVRML97} 5 | 6 | {$I SynHighlighterVrml97.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynHighlighterXML.pas: -------------------------------------------------------------------------------- 1 | unit QSynHighlighterXML; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNHIGHLIGHTERXML} 5 | 6 | {$I SynHighlighterXML.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynMacroRecorder.pas: -------------------------------------------------------------------------------- 1 | unit QSynMacroRecorder; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNMACRORECORDER} 5 | 6 | {$I SynMacroRecorder.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynMemo.pas: -------------------------------------------------------------------------------- 1 | unit QSynMemo; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNMEMO} 5 | 6 | {$I SynMemo.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynRegExpr.pas: -------------------------------------------------------------------------------- 1 | unit QSynRegExpr; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNREGEXPR} 5 | 6 | {$I SynRegExpr.pas} 7 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/QSynURIOpener.pas: -------------------------------------------------------------------------------- 1 | unit QSynURIOpener; 2 | 3 | {$DEFINE SYN_CLX} 4 | {$DEFINE QSYNURIOPENER} 5 | 6 | {$I SynURIOpener.pas} 7 | 8 | -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynAutoCorrectEditor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynAutoCorrectEditor.dfm -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEdit.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEdit.res -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditKeyCmdEditor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditKeyCmdEditor.dfm -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditKeyCmdsEditor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditKeyCmdsEditor.dfm -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditOptionsDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditOptionsDialog.dfm -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditPlugins.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditPlugins.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditPrint.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditPrint.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditPrintMarginsDialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditPrintMarginsDialog.dfm -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditReg.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditReg.dcr -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditReg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditReg.res -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditRegexSearch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditRegexSearch.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditTypes.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynEditWordWrap.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynEditWordWrap.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynExportHTML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynExportHTML.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynHighlighterHtml.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynHighlighterHtml.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynHighlighterRuby.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynHighlighterRuby.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynHighlighterURI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynHighlighterURI.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynHighlighterVB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynHighlighterVB.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynMacroRecorder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynMacroRecorder.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynRegExpr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynRegExpr.pas -------------------------------------------------------------------------------- /Source/VCL/SynEdit/Source/SynURIOpener.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/SynEdit/Source/SynURIOpener.pas -------------------------------------------------------------------------------- /Source/VCL/devFileMonitor/devFileMonitor.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/devFileMonitor/devFileMonitor.dcr -------------------------------------------------------------------------------- /Source/VCL/devShortcuts/devShortcuts.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/VCL/devShortcuts/devShortcuts.dcr -------------------------------------------------------------------------------- /Source/devcpp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/devcpp.res -------------------------------------------------------------------------------- /Source/icons.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Source/icons.res -------------------------------------------------------------------------------- /Templates/1-WinApp.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Windows Application 4 | Icon=Windows.ico 5 | Description=A standard Windows application 6 | Category=Basic 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=winapp_c.txt 12 | Cpp=winapp_c.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=0 17 | -------------------------------------------------------------------------------- /Templates/2-ConsoleApp.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Console Application 4 | Icon=ConsoleToo.ico 5 | Description=A console application (MS-DOS window) 6 | Category=Basic 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=consoleapp_c.txt 12 | Cpp=consoleapp_cpp.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=1 17 | -------------------------------------------------------------------------------- /Templates/3-StaticLib.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Static Library 4 | Icon=StaticLib.ico 5 | Description=A static library (.a) 6 | Category=Basic 7 | 8 | [Unit0] 9 | CName= 10 | CppName= 11 | 12 | [Project] 13 | UnitCount=1 14 | Type=2 15 | -------------------------------------------------------------------------------- /Templates/4-DLL.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=DLL 4 | Icon=DLL.ico 5 | Description=A Dynamic Link Library (DLL) 6 | Category=Basic 7 | 8 | [Unit0] 9 | CName=dllmain.c 10 | CppName=dllmain.cpp 11 | C=DLL_c.txt 12 | Cpp=Dll_cpp.txt 13 | 14 | [Unit1] 15 | CName=dll.h 16 | CppName=dll.h 17 | C=DLL_h.txt 18 | Cpp=Dll_hpp.txt 19 | 20 | [Project] 21 | UnitCount=2 22 | Type=3 23 | 24 | Compiler=-DBUILDING_DLL=1 25 | CppCompiler=-DBUILDING_DLL=1 -------------------------------------------------------------------------------- /Templates/5-Empty.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Empty Project 4 | Icon=Empty.ico 5 | Description=An empty project 6 | Catagory=Basic 7 | 8 | [Unit0] 9 | CName= 10 | CppName= 11 | 12 | [Project] 13 | UnitCount=1 14 | Type=1 15 | -------------------------------------------------------------------------------- /Templates/ConsoleApp_c.txt: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | /* run this program using the console pauser or add your own getch, system("pause") or input loop */ 5 | 6 | int main(int argc, char *argv[]) { 7 | return 0; 8 | } -------------------------------------------------------------------------------- /Templates/ConsoleApp_cpp.txt: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | /* run this program using the console pauser or add your own getch, system("pause") or input loop */ 4 | 5 | int main(int argc, char** argv) { 6 | return 0; 7 | } -------------------------------------------------------------------------------- /Templates/Direct3D.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Direct3D 4 | Icon=Pizza.ico 5 | Description=A basic Direct3D program 6 | Category=Multimedia 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=Direct3D.txt 12 | Cpp=Direct3D.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=0 17 | -------------------------------------------------------------------------------- /Templates/Dll_c.txt: -------------------------------------------------------------------------------- 1 | /* Replace "dll.h" with the name of your header */ 2 | #include "dll.h" 3 | #include 4 | 5 | DLLIMPORT void HelloWorld() 6 | { 7 | MessageBox(0,"Hello World from DLL!\n","Hi",MB_ICONINFORMATION); 8 | } 9 | 10 | BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) 11 | { 12 | switch(fdwReason) 13 | { 14 | case DLL_PROCESS_ATTACH: 15 | { 16 | break; 17 | } 18 | case DLL_PROCESS_DETACH: 19 | { 20 | break; 21 | } 22 | case DLL_THREAD_ATTACH: 23 | { 24 | break; 25 | } 26 | case DLL_THREAD_DETACH: 27 | { 28 | break; 29 | } 30 | } 31 | 32 | /* Return TRUE on success, FALSE on failure */ 33 | return TRUE; 34 | } 35 | -------------------------------------------------------------------------------- /Templates/Dll_cpp.txt: -------------------------------------------------------------------------------- 1 | /* Replace "dll.h" with the name of your header */ 2 | #include "dll.h" 3 | #include 4 | 5 | DllClass::DllClass() 6 | { 7 | 8 | } 9 | 10 | DllClass::~DllClass() 11 | { 12 | 13 | } 14 | 15 | void DllClass::HelloWorld() 16 | { 17 | MessageBox(0, "Hello World from DLL!\n","Hi",MB_ICONINFORMATION); 18 | } 19 | 20 | BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) 21 | { 22 | switch(fdwReason) 23 | { 24 | case DLL_PROCESS_ATTACH: 25 | { 26 | break; 27 | } 28 | case DLL_PROCESS_DETACH: 29 | { 30 | break; 31 | } 32 | case DLL_THREAD_ATTACH: 33 | { 34 | break; 35 | } 36 | case DLL_THREAD_DETACH: 37 | { 38 | break; 39 | } 40 | } 41 | 42 | /* Return TRUE on success, FALSE on failure */ 43 | return TRUE; 44 | } 45 | -------------------------------------------------------------------------------- /Templates/Dll_h.txt: -------------------------------------------------------------------------------- 1 | #ifndef _DLL_H_ 2 | #define _DLL_H_ 3 | 4 | #if BUILDING_DLL 5 | #define DLLIMPORT __declspec(dllexport) 6 | #else 7 | #define DLLIMPORT __declspec(dllimport) 8 | #endif 9 | 10 | DLLIMPORT void HelloWorld(); 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /Templates/Dll_hpp.txt: -------------------------------------------------------------------------------- 1 | #ifndef _DLL_H_ 2 | #define _DLL_H_ 3 | 4 | #if BUILDING_DLL 5 | #define DLLIMPORT __declspec(dllexport) 6 | #else 7 | #define DLLIMPORT __declspec(dllimport) 8 | #endif 9 | 10 | class DLLIMPORT DllClass 11 | { 12 | public: 13 | DllClass(); 14 | virtual ~DllClass(); 15 | void HelloWorld(); 16 | }; 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Templates/FileEditor.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=File Editor 4 | Icon=Editor.ico 5 | Description=A simple Win32 file editor 6 | Category=Win32 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=FileEditor_c.txt 12 | Cpp=FileEditor_c.txt 13 | 14 | [Unit1] 15 | CName=main.h 16 | CppName=main.h 17 | C=FileEditor_h.txt 18 | Cpp=FileEditor_h.txt 19 | 20 | [Unit2] 21 | CName=resource.rc 22 | CppName=resource.rc 23 | C=FileEditor_rc.txt 24 | Cpp=FileEditor_rc.txt 25 | 26 | [Project] 27 | UnitCount=3 28 | Type=0 29 | Icon=Editor.ico 30 | -------------------------------------------------------------------------------- /Templates/FileEditor_h.txt: -------------------------------------------------------------------------------- 1 | #define CM_FILE_SAVEAS 9072 2 | #define CM_FILE_EXIT 9071 3 | #define CM_FILE_OPEN 9070 4 | #define CM_ABOUT 9069 5 | 6 | #define IDC_MAIN_TEXT 1001 7 | -------------------------------------------------------------------------------- /Templates/FileEditor_rc.txt: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | 3 | MAINMENU MENU 4 | { 5 | POPUP "&File" 6 | { 7 | MENUITEM "&Open...", CM_FILE_OPEN 8 | MENUITEM "Save &As...", CM_FILE_SAVEAS 9 | MENUITEM SEPARATOR 10 | MENUITEM "E&xit", CM_FILE_EXIT 11 | } 12 | 13 | POPUP "&Help" 14 | { 15 | MENUITEM "&About", CM_ABOUT 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /Templates/Hello.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Hello World 4 | Icon=Communication.ico 5 | Description=A classic Hello World program 6 | Category=Console 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=Hello_c.txt 12 | Cpp=Hello_cpp.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=1 17 | Icon=Communication.ico 18 | -------------------------------------------------------------------------------- /Templates/HelloInput.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Input Loop 4 | Icon=ConsoleToo.ico 5 | Description=A console with an input loop 6 | Category=Console 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.c 11 | C=HelloInput_c.txt 12 | Cpp=HelloInput_cpp.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=1 17 | -------------------------------------------------------------------------------- /Templates/HelloInput_c.txt: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void Foo() { 4 | printf("Hello World!\n"); 5 | } 6 | 7 | int main(int argc, char** argv) { 8 | char input = 0; 9 | 10 | printf("Hello! This is a console application.\n"); 11 | printf("Press q to quit, press a to execute foo.\n"); 12 | while(1) { 13 | if(scanf("%c",&input) == 1) { 14 | if(input == 'a') { 15 | Foo(); 16 | } else if(input == 'q') { 17 | break; 18 | } else if(input != '\n') { 19 | printf("Unknown command '%c'! Ignoring...\n",input); 20 | } 21 | } else { 22 | printf("Invalid input! Ignoring...\n"); 23 | } 24 | } 25 | 26 | return 0; 27 | } 28 | -------------------------------------------------------------------------------- /Templates/HelloInput_cpp.txt: -------------------------------------------------------------------------------- 1 | #include 2 | using std::cin; 3 | using std::cout; 4 | using std::endl; 5 | 6 | void Foo() { 7 | cout << "Hello World!" << endl; 8 | } 9 | 10 | int main(int argc, char** argv) { 11 | char input = 0; 12 | 13 | cout << "Hello! This is a console application." << endl; 14 | cout << "Press q to quit, press a to execute foo." << endl; 15 | while(1) { 16 | cin >> input; 17 | if(input == 'a') { 18 | Foo(); 19 | } else if(input == 'q') { 20 | break; 21 | } else if(input != '\n') { 22 | cout << "Unknown command '" << input << "'! Ignoring...\n"; 23 | } 24 | } 25 | 26 | return 0; 27 | } 28 | -------------------------------------------------------------------------------- /Templates/Hello_c.txt: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char** argv) { 4 | printf("Hello world!\n"); 5 | return 0; 6 | } -------------------------------------------------------------------------------- /Templates/Hello_cpp.txt: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char** argv) { 4 | std::cout << "Hello world!\n"; 5 | } -------------------------------------------------------------------------------- /Templates/Jackpot.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Jackpot 4 | Icon=Games.ico 5 | Description=A number guessing game 6 | Category=Console 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=Jackpot_c.txt 12 | Cpp=Jackpot_cpp.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=1 17 | Icon=Games.ico 18 | -------------------------------------------------------------------------------- /Templates/MDIEditor.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=MDI Editor 4 | Icon=Windows.ico 5 | Description=A Win32 MDI file editor 6 | Category=Win32 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=MDIEditor_c.txt 12 | Cpp=MDIEditor_c.txt 13 | 14 | [Unit1] 15 | CName=main.h 16 | CppName=main.h 17 | C=MDIEditor_h.txt 18 | Cpp=MDIEditor_h.txt 19 | 20 | [Unit2] 21 | CName=resource.rc 22 | CppName=resource.rc 23 | C=MDIEditor_rc.txt 24 | Cpp=MDIEditor_rc.txt 25 | 26 | [Project] 27 | UnitCount=3 28 | Type=0 29 | -------------------------------------------------------------------------------- /Templates/MDIEditor_h.txt: -------------------------------------------------------------------------------- 1 | #define CM_WINDOW_TILEVERT 9080 2 | #define CM_WINDOW_TILEHORZ 9082 3 | #define CM_WINDOW_ARRANGE 9081 4 | #define CM_WINDOW_TILE 9080 5 | #define CM_WINDOW_CASCADE 9076 6 | #define CM_EDIT_PASTE 9079 7 | #define CM_EDIT_COPY 9078 8 | #define CM_EDIT_CUT 9077 9 | #define CM_EDIT_REDO 9076 10 | #define CM_EDIT_UNDO 9075 11 | #define CM_FILE_SAVEAS 9074 12 | #define CM_FILE_SAVE 9073 13 | #define CM_FILE_OPEN 9072 14 | #define CM_HELP_ABOUT 9072 15 | #define CM_FILE_EXIT 9071 16 | #define CM_FILE_NEW 9070 17 | 18 | #define ID_STATUSBAR 4997 19 | #define ID_TOOLBAR 4998 20 | 21 | #define ID_MDI_CLIENT 4999 22 | #define ID_MDI_FIRSTCHILD 50000 23 | 24 | #define IDC_CHILD_EDIT 2000 25 | -------------------------------------------------------------------------------- /Templates/MDIEditor_rc.txt: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | 3 | MAIN MENU 4 | { 5 | POPUP "&File" 6 | { 7 | MENUITEM "&New", CM_FILE_NEW 8 | MENUITEM "&Open...", CM_FILE_OPEN 9 | MENUITEM "&Save", CM_FILE_SAVE, GRAYED 10 | MENUITEM "Save &As...", CM_FILE_SAVEAS, GRAYED 11 | MENUITEM SEPARATOR 12 | MENUITEM "E&xit", CM_FILE_EXIT 13 | } 14 | 15 | POPUP "&Edit", GRAYED 16 | { 17 | MENUITEM "&Undo\tCtrl+Z", CM_EDIT_UNDO 18 | MENUITEM SEPARATOR 19 | MENUITEM "Cu&t\tCtrl+X", CM_EDIT_CUT 20 | MENUITEM "&Copy\tCtrl+C", CM_EDIT_COPY 21 | MENUITEM "&Paste\tCtrl+V", CM_EDIT_PASTE 22 | } 23 | 24 | POPUP "&Window", GRAYED 25 | { 26 | MENUITEM "&Cascade", CM_WINDOW_CASCADE 27 | MENUITEM "Tile &Horizontal", CM_WINDOW_TILEHORZ 28 | MENUITEM "Tile &Vertical", CM_WINDOW_TILEVERT 29 | MENUITEM "Arrange &Icons", CM_WINDOW_ARRANGE 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Templates/OpenGL.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=OpenGL 4 | Icon=Pizza.ico 5 | Description=A basic OpenGL program 6 | Category=Multimedia 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=OpenGL.txt 12 | Cpp=OpenGL.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=0 17 | Linker=-lopengl32 18 | -------------------------------------------------------------------------------- /Templates/OpenMP.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=OpenMP 4 | Icon=File Management.ico 5 | Description=A OpenMP multithreading example 6 | Category=Console 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=OpenMP_c.txt 12 | Cpp=OpenMP_cpp.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=1 17 | Compiler=-fopenmp 18 | CppCompiler=-fopenmp 19 | Linker=-lgomp 20 | -------------------------------------------------------------------------------- /Templates/OpenMP_c.txt: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() { 5 | 6 | int i; 7 | 8 | #pragma omp parallel num_threads(2) 9 | printf("Hi, I'm thread number %d!\n",omp_get_thread_num()); 10 | 11 | #pragma omp parallel for num_threads(2) 12 | for(i = 0;i < 20;i++) { 13 | printf("\nThread number %d, executing iteration %d...",omp_get_thread_num(),i); 14 | } 15 | 16 | return 0; 17 | } 18 | -------------------------------------------------------------------------------- /Templates/OpenMP_cpp.txt: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | // not using iostream here due to output ordering issues 5 | 6 | // iostream tends to output each part between <<'s separately to the console, 7 | // which can lead to random output if multiple threads are doing the same 8 | // thing. 9 | 10 | // printf will generally output the whole result string in one go, so results 11 | // of separate printf calls, even from different threads, will remain intact 12 | 13 | // Another fix, other than using printf, would be to give each thread its own 14 | // place to store output temporarily (a stringstream), and then output the whole 15 | // result in one go. 16 | 17 | int main() { 18 | 19 | #pragma omp parallel num_threads(2) 20 | printf("Hi, I'm thread number %d!\n",omp_get_thread_num()); 21 | 22 | #pragma omp parallel for num_threads(2) 23 | for(int i = 0;i < 20;i++) { 24 | printf("\nThread number %d, executing iteration %d...",omp_get_thread_num(),i); 25 | } 26 | } -------------------------------------------------------------------------------- /Templates/StdThread.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=std::thread 4 | Icon=Software.ico 5 | Description=A C++ multithreading example 6 | Category=Console 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=StdThread_c.txt 12 | Cpp=StdThread_cpp.txt 13 | 14 | [Project] 15 | UnitCount=1 16 | Type=1 17 | Compiler= 18 | CppCompiler=-std=gnu++11 19 | Linker= 20 | -------------------------------------------------------------------------------- /Templates/StdThread_c.txt: -------------------------------------------------------------------------------- 1 | // Please note that MinGW32 compilers currently do not support . Use MinGW64 builds like TDM-GCC instead. 2 | // C does not support this magic ;) -------------------------------------------------------------------------------- /Templates/WinAnim.template: -------------------------------------------------------------------------------- 1 | [Template] 2 | ver=1 3 | Name=Animation Example 4 | Icon=Windows.ico 5 | Description=A Win32 painting example 6 | Category=Win32 7 | 8 | [Unit0] 9 | CName=main.c 10 | CppName=main.cpp 11 | C=WinAnim_c.txt 12 | Cpp=WinAnim_c.txt 13 | 14 | [Unit1] 15 | CName=resource.rc 16 | CppName=resource.rc 17 | C=WinAnim_rc.txt 18 | Cpp=WinAnim_rc.txt 19 | 20 | [Project] 21 | UnitCount=2 22 | Type=0 23 | -------------------------------------------------------------------------------- /Templates/WinAnim_rc.txt: -------------------------------------------------------------------------------- 1 | BALLBMP BITMAP "ball.bmp" // can be found in the Templates folder, please copy to the project folder 2 | MASKBMP BITMAP "ballmask.bmp" // as above -------------------------------------------------------------------------------- /Templates/ball.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Templates/ball.bmp -------------------------------------------------------------------------------- /Templates/ballmask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/Templates/ballmask.bmp -------------------------------------------------------------------------------- /devcpp.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | Your application description here. 10 | 11 | 12 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /devcpp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klozz/dev-cpp/f90d0db17303d774642a7a57d2846334162c209b/devcpp.ico --------------------------------------------------------------------------------