├── .gitattributes ├── .gitignore ├── .gitmodules ├── Contributing.md ├── Delphinus.Info.json ├── Delphinus.Install.json ├── IDEExplorer.cfg ├── IDEExplorer.dpr ├── IDEExplorer.dproj ├── IDEExplorer.ithelper ├── IDEExplorer.res ├── IDEExplorerITHVerInfo.RC ├── Icons ├── IDE Explorer 48x48 Icon.bmp ├── IDE Explorer.xcf ├── New IDE Explorer 24x24 Icon.bmp ├── New IDE Explorer 48x48 Icon.bmp ├── Splash Screen Icons.xcf ├── SplashScreenImage24x24.xcf └── SplashScreenImage48x48.xcf ├── Images ├── Char.bmp ├── Dcu.ico ├── Dfm.ico ├── Dpk.ico ├── Dpr.ico ├── IDEExplorerInheritance.gif ├── IDEExplorerNewEvents.gif ├── IDEExplorerNewFields.gif ├── IDEExplorerNewHeirarchies.gif ├── IDEExplorerNewMethods.gif ├── IDEExplorerNewProperties.gif ├── IDEExplorerOldProperties.gif ├── IDEExplorerProperties.gif ├── MainIcon.ico ├── Pas.ico ├── array.bmp ├── class.bmp ├── classref.bmp ├── dynarray.bmp ├── enum.bmp ├── float.bmp ├── int64.bmp ├── integer.bmp ├── interface.bmp ├── lstring.bmp ├── method.bmp ├── pointer.bmp ├── private.bmp ├── procedure.bmp ├── protected.bmp ├── public.bmp ├── published.bmp ├── record.bmp ├── set.bmp ├── string.bmp ├── unknown.bmp ├── ustring.bmp ├── variant.bmp ├── wChar.bmp └── wstring.bmp ├── License.md ├── README.md ├── Source ├── CompilerDefinitions.inc ├── IDEExplorer.AboutBox.pas ├── IDEExplorer.Constants.pas ├── IDEExplorer.ExplorerForm.dfm ├── IDEExplorer.ExplorerForm.pas ├── IDEExplorer.Functions.pas ├── IDEExplorer.Interfaces.pas ├── IDEExplorer.OLDRTTIFunctions.pas ├── IDEExplorer.ProgressForm.dfm ├── IDEExplorer.ProgressForm.pas ├── IDEExplorer.ProgressMgr.pas ├── IDEExplorer.RTTIFunctions.pas ├── IDEExplorer.ResourceStrings.pas ├── IDEExplorer.SplashScreen.pas ├── IDEExplorer.Types.pas ├── IDEExplorer.Wizard.pas └── LibrarySuffixes.inc ├── SplashScreenIcon.RC └── SplashScreenIcon.RES /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/.gitmodules -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Contributing.md -------------------------------------------------------------------------------- /Delphinus.Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Delphinus.Info.json -------------------------------------------------------------------------------- /Delphinus.Install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Delphinus.Install.json -------------------------------------------------------------------------------- /IDEExplorer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/IDEExplorer.cfg -------------------------------------------------------------------------------- /IDEExplorer.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/IDEExplorer.dpr -------------------------------------------------------------------------------- /IDEExplorer.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/IDEExplorer.dproj -------------------------------------------------------------------------------- /IDEExplorer.ithelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/IDEExplorer.ithelper -------------------------------------------------------------------------------- /IDEExplorer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/IDEExplorer.res -------------------------------------------------------------------------------- /IDEExplorerITHVerInfo.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/IDEExplorerITHVerInfo.RC -------------------------------------------------------------------------------- /Icons/IDE Explorer 48x48 Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Icons/IDE Explorer 48x48 Icon.bmp -------------------------------------------------------------------------------- /Icons/IDE Explorer.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Icons/IDE Explorer.xcf -------------------------------------------------------------------------------- /Icons/New IDE Explorer 24x24 Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Icons/New IDE Explorer 24x24 Icon.bmp -------------------------------------------------------------------------------- /Icons/New IDE Explorer 48x48 Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Icons/New IDE Explorer 48x48 Icon.bmp -------------------------------------------------------------------------------- /Icons/Splash Screen Icons.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Icons/Splash Screen Icons.xcf -------------------------------------------------------------------------------- /Icons/SplashScreenImage24x24.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Icons/SplashScreenImage24x24.xcf -------------------------------------------------------------------------------- /Icons/SplashScreenImage48x48.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Icons/SplashScreenImage48x48.xcf -------------------------------------------------------------------------------- /Images/Char.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/Char.bmp -------------------------------------------------------------------------------- /Images/Dcu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/Dcu.ico -------------------------------------------------------------------------------- /Images/Dfm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/Dfm.ico -------------------------------------------------------------------------------- /Images/Dpk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/Dpk.ico -------------------------------------------------------------------------------- /Images/Dpr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/Dpr.ico -------------------------------------------------------------------------------- /Images/IDEExplorerInheritance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/IDEExplorerInheritance.gif -------------------------------------------------------------------------------- /Images/IDEExplorerNewEvents.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/IDEExplorerNewEvents.gif -------------------------------------------------------------------------------- /Images/IDEExplorerNewFields.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/IDEExplorerNewFields.gif -------------------------------------------------------------------------------- /Images/IDEExplorerNewHeirarchies.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/IDEExplorerNewHeirarchies.gif -------------------------------------------------------------------------------- /Images/IDEExplorerNewMethods.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/IDEExplorerNewMethods.gif -------------------------------------------------------------------------------- /Images/IDEExplorerNewProperties.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/IDEExplorerNewProperties.gif -------------------------------------------------------------------------------- /Images/IDEExplorerOldProperties.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/IDEExplorerOldProperties.gif -------------------------------------------------------------------------------- /Images/IDEExplorerProperties.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/IDEExplorerProperties.gif -------------------------------------------------------------------------------- /Images/MainIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/MainIcon.ico -------------------------------------------------------------------------------- /Images/Pas.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/Pas.ico -------------------------------------------------------------------------------- /Images/array.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/array.bmp -------------------------------------------------------------------------------- /Images/class.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/class.bmp -------------------------------------------------------------------------------- /Images/classref.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/classref.bmp -------------------------------------------------------------------------------- /Images/dynarray.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/dynarray.bmp -------------------------------------------------------------------------------- /Images/enum.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/enum.bmp -------------------------------------------------------------------------------- /Images/float.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/float.bmp -------------------------------------------------------------------------------- /Images/int64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/int64.bmp -------------------------------------------------------------------------------- /Images/integer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/integer.bmp -------------------------------------------------------------------------------- /Images/interface.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/interface.bmp -------------------------------------------------------------------------------- /Images/lstring.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/lstring.bmp -------------------------------------------------------------------------------- /Images/method.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/method.bmp -------------------------------------------------------------------------------- /Images/pointer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/pointer.bmp -------------------------------------------------------------------------------- /Images/private.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/private.bmp -------------------------------------------------------------------------------- /Images/procedure.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/procedure.bmp -------------------------------------------------------------------------------- /Images/protected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/protected.bmp -------------------------------------------------------------------------------- /Images/public.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/public.bmp -------------------------------------------------------------------------------- /Images/published.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/published.bmp -------------------------------------------------------------------------------- /Images/record.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/record.bmp -------------------------------------------------------------------------------- /Images/set.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/set.bmp -------------------------------------------------------------------------------- /Images/string.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/string.bmp -------------------------------------------------------------------------------- /Images/unknown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/unknown.bmp -------------------------------------------------------------------------------- /Images/ustring.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/ustring.bmp -------------------------------------------------------------------------------- /Images/variant.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/variant.bmp -------------------------------------------------------------------------------- /Images/wChar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/wChar.bmp -------------------------------------------------------------------------------- /Images/wstring.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Images/wstring.bmp -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/README.md -------------------------------------------------------------------------------- /Source/CompilerDefinitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/CompilerDefinitions.inc -------------------------------------------------------------------------------- /Source/IDEExplorer.AboutBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.AboutBox.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.Constants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.Constants.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.ExplorerForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.ExplorerForm.dfm -------------------------------------------------------------------------------- /Source/IDEExplorer.ExplorerForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.ExplorerForm.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.Functions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.Functions.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.Interfaces.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.OLDRTTIFunctions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.OLDRTTIFunctions.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.ProgressForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.ProgressForm.dfm -------------------------------------------------------------------------------- /Source/IDEExplorer.ProgressForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.ProgressForm.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.ProgressMgr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.ProgressMgr.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.RTTIFunctions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.RTTIFunctions.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.ResourceStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.ResourceStrings.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.SplashScreen.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.SplashScreen.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.Types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.Types.pas -------------------------------------------------------------------------------- /Source/IDEExplorer.Wizard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/IDEExplorer.Wizard.pas -------------------------------------------------------------------------------- /Source/LibrarySuffixes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/Source/LibrarySuffixes.inc -------------------------------------------------------------------------------- /SplashScreenIcon.RC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/SplashScreenIcon.RC -------------------------------------------------------------------------------- /SplashScreenIcon.RES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGH2112/Delphi-IDE-Explorer/HEAD/SplashScreenIcon.RES --------------------------------------------------------------------------------