├── Automation └── Tester │ ├── DispatchHelper.cpp │ ├── DispatchHelper.h │ ├── Mobile.cpp │ ├── Mobile.h │ ├── Mobile.idl │ ├── ReadMe.txt │ ├── Resource.h │ ├── Tester.cpp │ ├── Tester.h │ ├── Tester.rc │ ├── Tester.sln │ ├── Tester.vcproj │ ├── safe_defs.h │ ├── stdafx.cpp │ └── stdafx.h ├── CurveSee ├── CCurvePainter.cpp ├── CCurvePainter.h ├── CDataCurve.cpp ├── CDataCurve.h ├── CWinScriptHost.cpp ├── CWinScriptHost.h ├── CurveSee.cpp ├── CurveSee.h ├── CurveSee.rc ├── CurveSee.sln ├── CurveSee.vcproj ├── CurveSeeDlg.cpp ├── CurveSeeDlg.h ├── IDispatchImpl.h ├── ReadMe.txt ├── SetttingDlg.cpp ├── SetttingDlg.h ├── curves.idl ├── res │ ├── CurveSee.ico │ ├── CurveSee.manifest │ └── CurveSee.rc2 ├── resource.h ├── safe_defs.h ├── stdafx.cpp └── stdafx.h ├── ImageViewer_Basic ├── ImageProcessor.cpp ├── ImageProcessor.h ├── ImageViewer.cpp ├── ImageViewer.h ├── ImageViewer.rc ├── ImageViewer.sln ├── ImageViewer.vcproj ├── ImageViewerDlg.cpp ├── ImageViewerDlg.h ├── ImageViewer_Basic_d.exe ├── ImageViewer_Basic_d.ilk ├── MiscUtils.cpp ├── MiscUtils.h ├── ReadMe.txt ├── logo.gif ├── res │ ├── ImageViewer.ico │ ├── ImageViewer.manifest │ └── ImageViewer.rc2 ├── resource.h ├── safe_defs.h ├── src_benz.jpg ├── stdafx.cpp └── stdafx.h ├── ImageViewer_Customized ├── ActionDispatchIF.h ├── CCustomizedButton.cpp ├── CCustomizedButton.h ├── CEasyHyperlink.cpp ├── CEasyHyperlink.h ├── CSkinButton.cpp ├── CSkinButton.h ├── CSkinDialog.cpp ├── CSkinDialog.h ├── CSkinObject.cpp ├── CSkinObject.h ├── CUISkinXmlParser.cpp ├── CUISkinXmlParser.h ├── CXmlWrapper.cpp ├── CXmlWrapper.h ├── ImageProcessor.cpp ├── ImageProcessor.h ├── ImageViewer.cpp ├── ImageViewer.h ├── ImageViewer.rc ├── ImageViewer.sln ├── ImageViewer.vcproj ├── ImageViewerDlg.cpp ├── ImageViewerDlg.h ├── MiscUtils.cpp ├── MiscUtils.h ├── ReadMe.txt ├── Skin │ ├── btn_About.jpg │ ├── btn_Exit.jpg │ ├── btn_Invert.jpg │ ├── btn_Min.jpg │ ├── btn_Open.jpg │ ├── btn_Save.jpg │ ├── main.jpg │ ├── myViewer.xml │ └── myViewer2.xml ├── global_defs.h ├── res │ ├── ImageViewer.ico │ ├── ImageViewer.manifest │ └── ImageViewer.rc2 ├── resource.h ├── safe_defs.h ├── stdafx.cpp └── stdafx.h ├── ImageViewer_ScriptDriven ├── CApplicationWrapper.cpp ├── CApplicationWrapper.h ├── CButtonWrapper.cpp ├── CButtonWrapper.h ├── CEasyHyperlink.cpp ├── CEasyHyperlink.h ├── CHQException.h ├── CImageProcessorWrapper.cpp ├── CImageProcessorWrapper.h ├── CMainWindowWrapper.cpp ├── CMainWindowWrapper.h ├── CMyJScriptHost.cpp ├── CMyJScriptHost.h ├── CScriptButton.cpp ├── CScriptButton.h ├── CSkinButton.cpp ├── CSkinButton.h ├── CSkinDialog.cpp ├── CSkinDialog.h ├── CSkinObject.cpp ├── CSkinObject.h ├── CUISkinXmlParser.cpp ├── CUISkinXmlParser.h ├── CXmlWrapper.cpp ├── CXmlWrapper.h ├── DOM2Event.cpp ├── DOM2Event.h ├── DOM2EventListener.cpp ├── DOM2EventListener.h ├── DOM2EventTarget.cpp ├── DOM2EventTarget.h ├── DOM2_defs.h ├── DispatchHelper.cpp ├── DispatchHelper.h ├── IDispatchBaseImpl.h ├── IDispatchExImpl2.h ├── IDispatchImpl.h ├── ImageProcessor.cpp ├── ImageProcessor.h ├── ImageViewer.cpp ├── ImageViewer.h ├── ImageViewer.idl ├── ImageViewer.rc ├── ImageViewer.sln ├── ImageViewer.vcproj ├── ImageViewerDlg.cpp ├── ImageViewerDlg.h ├── JSEventHandling.cpp ├── JSEventHandling.h ├── MiscUtils.cpp ├── MiscUtils.h ├── ReadMe.txt ├── Skin │ ├── btn_About.jpg │ ├── btn_Exit.jpg │ ├── btn_Greyscale.jpg │ ├── btn_Invert.jpg │ ├── btn_Min.jpg │ ├── btn_Open.jpg │ ├── btn_Reload.jpg │ ├── btn_Save.jpg │ ├── logo_ScriptDriven.jpg │ ├── main.jpg │ ├── main.js │ └── myViewer.xml ├── ViewerEvent.cpp ├── ViewerEvent.h ├── global_defs.h ├── res │ ├── ImageViewer.ico │ ├── ImageViewer.manifest │ └── ImageViewer.rc2 ├── resource.h ├── safe_defs.h ├── stdafx.cpp └── stdafx.h ├── ImageViewer_Skinned ├── CSkinButton.cpp ├── CSkinButton.h ├── CSkinDialog.cpp ├── CSkinDialog.h ├── CSkinObject.cpp ├── CSkinObject.h ├── CUISkinXmlReader.cpp ├── CUISkinXmlReader.h ├── CXmlWrapper.cpp ├── CXmlWrapper.h ├── ImageProcessor.cpp ├── ImageProcessor.h ├── ImageViewer.cpp ├── ImageViewer.h ├── ImageViewer.rc ├── ImageViewer.sln ├── ImageViewer.vcproj ├── ImageViewerDlg.cpp ├── ImageViewerDlg.h ├── MiscUtils.cpp ├── MiscUtils.h ├── ReadMe.txt ├── Skin │ ├── ImageViewer.xml │ ├── btn_About.jpg │ ├── btn_Clean.jpg │ ├── btn_Exit.jpg │ ├── btn_Invert.jpg │ ├── btn_Logo.jpg │ ├── btn_Min.jpg │ ├── btn_Open.jpg │ ├── btn_Reload.jpg │ ├── btn_Save.jpg │ ├── btn_SystemTime.jpg │ └── main.jpg ├── res │ ├── ImageViewer.ico │ ├── ImageViewer.manifest │ └── ImageViewer.rc2 ├── resource.h ├── safe_defs.h ├── stdafx.cpp └── stdafx.h ├── JSInterpreting ├── CApplication.cpp ├── CApplication.h ├── CCallbackManager.cpp ├── CCallbackManager.h ├── CCar.cpp ├── CCar.h ├── CDebugger.cpp ├── CDebugger.h ├── CFileCopyThread.h ├── CHQException.h ├── CHQThread.cpp ├── CHQThread.h ├── CJScriptHost.cpp ├── CJScriptHost.h ├── CMediaPlayer.cpp ├── CMediaPlayer.h ├── CScriptEngineWrapper.cpp ├── CScriptEngineWrapper.h ├── CTimer.cpp ├── CTimer.h ├── CTimerManager.cpp ├── CTimerManager.h ├── DispatchHelper.cpp ├── DispatchHelper.h ├── IDispatchArrayImpl.h ├── IDispatchBaseImpl.h ├── IDispatchExImpl.h ├── IDispatchImpl.h ├── IDispatchImpl2.h ├── JSInterpreting.cpp ├── JSInterpreting.sln ├── JSInterpreting.vcproj ├── ReadMe.txt ├── ScriptDebugger │ ├── Dispex.h │ ├── HostInfo.h │ ├── Multinfo.h │ ├── activdbg.h │ ├── activscp.h │ ├── ad1.lib │ ├── ad1ex.h │ └── dbgprop.h ├── TestingCase01.js ├── TestingCase02.js ├── TestingCase03.js ├── TestingCase04.js ├── TestingCase05.js ├── TestingCase06.js ├── TestingCase07.js ├── TestingCase08.js ├── TestingCase09.js ├── TestingCase10.js ├── TestingCase11.js ├── TestingCase12.js ├── TestingCase13.js ├── TestingCase14.js ├── global.h ├── js_demo.idl ├── safe_defs.h ├── stdafx.cpp └── stdafx.h ├── Readme.txt └── XML ├── WebBased ├── BookInfo.xml └── xmlReader.htm ├── XMLParser ├── CXmlParserDemo.cpp ├── CXmlParserDemo.h ├── CXmlWrapper.cpp ├── CXmlWrapper.h ├── ImageViewer.xml ├── MiscUtils.cpp ├── MiscUtils.h ├── ReadMe.txt ├── Resource.h ├── XMLParser.cpp ├── XMLParser.h ├── XMLParser.rc ├── XMLParser.sln ├── XMLParser.vcproj ├── stdafx.cpp └── stdafx.h └── typical.xml /Automation/Tester/DispatchHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/DispatchHelper.cpp -------------------------------------------------------------------------------- /Automation/Tester/DispatchHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/DispatchHelper.h -------------------------------------------------------------------------------- /Automation/Tester/Mobile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/Mobile.cpp -------------------------------------------------------------------------------- /Automation/Tester/Mobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/Mobile.h -------------------------------------------------------------------------------- /Automation/Tester/Mobile.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/Mobile.idl -------------------------------------------------------------------------------- /Automation/Tester/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/ReadMe.txt -------------------------------------------------------------------------------- /Automation/Tester/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/Resource.h -------------------------------------------------------------------------------- /Automation/Tester/Tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/Tester.cpp -------------------------------------------------------------------------------- /Automation/Tester/Tester.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /Automation/Tester/Tester.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/Tester.rc -------------------------------------------------------------------------------- /Automation/Tester/Tester.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/Tester.sln -------------------------------------------------------------------------------- /Automation/Tester/Tester.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/Tester.vcproj -------------------------------------------------------------------------------- /Automation/Tester/safe_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/safe_defs.h -------------------------------------------------------------------------------- /Automation/Tester/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/stdafx.cpp -------------------------------------------------------------------------------- /Automation/Tester/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Automation/Tester/stdafx.h -------------------------------------------------------------------------------- /CurveSee/CCurvePainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CCurvePainter.cpp -------------------------------------------------------------------------------- /CurveSee/CCurvePainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CCurvePainter.h -------------------------------------------------------------------------------- /CurveSee/CDataCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CDataCurve.cpp -------------------------------------------------------------------------------- /CurveSee/CDataCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CDataCurve.h -------------------------------------------------------------------------------- /CurveSee/CWinScriptHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CWinScriptHost.cpp -------------------------------------------------------------------------------- /CurveSee/CWinScriptHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CWinScriptHost.h -------------------------------------------------------------------------------- /CurveSee/CurveSee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CurveSee.cpp -------------------------------------------------------------------------------- /CurveSee/CurveSee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CurveSee.h -------------------------------------------------------------------------------- /CurveSee/CurveSee.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CurveSee.rc -------------------------------------------------------------------------------- /CurveSee/CurveSee.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CurveSee.sln -------------------------------------------------------------------------------- /CurveSee/CurveSee.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CurveSee.vcproj -------------------------------------------------------------------------------- /CurveSee/CurveSeeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CurveSeeDlg.cpp -------------------------------------------------------------------------------- /CurveSee/CurveSeeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/CurveSeeDlg.h -------------------------------------------------------------------------------- /CurveSee/IDispatchImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/IDispatchImpl.h -------------------------------------------------------------------------------- /CurveSee/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/ReadMe.txt -------------------------------------------------------------------------------- /CurveSee/SetttingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/SetttingDlg.cpp -------------------------------------------------------------------------------- /CurveSee/SetttingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/SetttingDlg.h -------------------------------------------------------------------------------- /CurveSee/curves.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/curves.idl -------------------------------------------------------------------------------- /CurveSee/res/CurveSee.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/res/CurveSee.ico -------------------------------------------------------------------------------- /CurveSee/res/CurveSee.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/res/CurveSee.manifest -------------------------------------------------------------------------------- /CurveSee/res/CurveSee.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/res/CurveSee.rc2 -------------------------------------------------------------------------------- /CurveSee/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/resource.h -------------------------------------------------------------------------------- /CurveSee/safe_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/safe_defs.h -------------------------------------------------------------------------------- /CurveSee/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/stdafx.cpp -------------------------------------------------------------------------------- /CurveSee/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/CurveSee/stdafx.h -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageProcessor.cpp -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageProcessor.h -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewer.cpp -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewer.h -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewer.rc -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewer.sln -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewer.vcproj -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewerDlg.cpp -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewerDlg.h -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewer_Basic_d.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewer_Basic_d.exe -------------------------------------------------------------------------------- /ImageViewer_Basic/ImageViewer_Basic_d.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ImageViewer_Basic_d.ilk -------------------------------------------------------------------------------- /ImageViewer_Basic/MiscUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/MiscUtils.cpp -------------------------------------------------------------------------------- /ImageViewer_Basic/MiscUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/MiscUtils.h -------------------------------------------------------------------------------- /ImageViewer_Basic/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/ReadMe.txt -------------------------------------------------------------------------------- /ImageViewer_Basic/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/logo.gif -------------------------------------------------------------------------------- /ImageViewer_Basic/res/ImageViewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/res/ImageViewer.ico -------------------------------------------------------------------------------- /ImageViewer_Basic/res/ImageViewer.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/res/ImageViewer.manifest -------------------------------------------------------------------------------- /ImageViewer_Basic/res/ImageViewer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/res/ImageViewer.rc2 -------------------------------------------------------------------------------- /ImageViewer_Basic/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/resource.h -------------------------------------------------------------------------------- /ImageViewer_Basic/safe_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/safe_defs.h -------------------------------------------------------------------------------- /ImageViewer_Basic/src_benz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/src_benz.jpg -------------------------------------------------------------------------------- /ImageViewer_Basic/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/stdafx.cpp -------------------------------------------------------------------------------- /ImageViewer_Basic/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Basic/stdafx.h -------------------------------------------------------------------------------- /ImageViewer_Customized/ActionDispatchIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ActionDispatchIF.h -------------------------------------------------------------------------------- /ImageViewer_Customized/CCustomizedButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CCustomizedButton.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/CCustomizedButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CCustomizedButton.h -------------------------------------------------------------------------------- /ImageViewer_Customized/CEasyHyperlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CEasyHyperlink.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/CEasyHyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CEasyHyperlink.h -------------------------------------------------------------------------------- /ImageViewer_Customized/CSkinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CSkinButton.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/CSkinButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CSkinButton.h -------------------------------------------------------------------------------- /ImageViewer_Customized/CSkinDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CSkinDialog.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/CSkinDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CSkinDialog.h -------------------------------------------------------------------------------- /ImageViewer_Customized/CSkinObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CSkinObject.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/CSkinObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CSkinObject.h -------------------------------------------------------------------------------- /ImageViewer_Customized/CUISkinXmlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CUISkinXmlParser.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/CUISkinXmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CUISkinXmlParser.h -------------------------------------------------------------------------------- /ImageViewer_Customized/CXmlWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CXmlWrapper.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/CXmlWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/CXmlWrapper.h -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageProcessor.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageProcessor.h -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageViewer.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageViewer.h -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageViewer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageViewer.rc -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageViewer.sln -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageViewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageViewer.vcproj -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageViewerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageViewerDlg.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/ImageViewerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ImageViewerDlg.h -------------------------------------------------------------------------------- /ImageViewer_Customized/MiscUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/MiscUtils.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/MiscUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/MiscUtils.h -------------------------------------------------------------------------------- /ImageViewer_Customized/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/ReadMe.txt -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/btn_About.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/btn_About.jpg -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/btn_Exit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/btn_Exit.jpg -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/btn_Invert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/btn_Invert.jpg -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/btn_Min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/btn_Min.jpg -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/btn_Open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/btn_Open.jpg -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/btn_Save.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/btn_Save.jpg -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/main.jpg -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/myViewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/myViewer.xml -------------------------------------------------------------------------------- /ImageViewer_Customized/Skin/myViewer2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/Skin/myViewer2.xml -------------------------------------------------------------------------------- /ImageViewer_Customized/global_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/global_defs.h -------------------------------------------------------------------------------- /ImageViewer_Customized/res/ImageViewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/res/ImageViewer.ico -------------------------------------------------------------------------------- /ImageViewer_Customized/res/ImageViewer.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/res/ImageViewer.manifest -------------------------------------------------------------------------------- /ImageViewer_Customized/res/ImageViewer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/res/ImageViewer.rc2 -------------------------------------------------------------------------------- /ImageViewer_Customized/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/resource.h -------------------------------------------------------------------------------- /ImageViewer_Customized/safe_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/safe_defs.h -------------------------------------------------------------------------------- /ImageViewer_Customized/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/stdafx.cpp -------------------------------------------------------------------------------- /ImageViewer_Customized/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Customized/stdafx.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CApplicationWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CApplicationWrapper.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CApplicationWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CApplicationWrapper.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CButtonWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CButtonWrapper.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CButtonWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CButtonWrapper.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CEasyHyperlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CEasyHyperlink.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CEasyHyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CEasyHyperlink.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CHQException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CHQException.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CImageProcessorWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CImageProcessorWrapper.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CImageProcessorWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CImageProcessorWrapper.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CMainWindowWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CMainWindowWrapper.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CMainWindowWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CMainWindowWrapper.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CMyJScriptHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CMyJScriptHost.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CMyJScriptHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CMyJScriptHost.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CScriptButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CScriptButton.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CScriptButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CScriptButton.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CSkinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CSkinButton.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CSkinButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CSkinButton.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CSkinDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CSkinDialog.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CSkinDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CSkinDialog.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CSkinObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CSkinObject.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CSkinObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CSkinObject.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CUISkinXmlParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CUISkinXmlParser.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CUISkinXmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CUISkinXmlParser.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CXmlWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CXmlWrapper.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/CXmlWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/CXmlWrapper.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DOM2Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DOM2Event.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DOM2Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DOM2Event.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DOM2EventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DOM2EventListener.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DOM2EventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DOM2EventListener.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DOM2EventTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DOM2EventTarget.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DOM2EventTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DOM2EventTarget.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DOM2_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DOM2_defs.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DispatchHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DispatchHelper.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/DispatchHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/DispatchHelper.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/IDispatchBaseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/IDispatchBaseImpl.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/IDispatchExImpl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/IDispatchExImpl2.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/IDispatchImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/IDispatchImpl.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageProcessor.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageProcessor.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageViewer.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageViewer.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageViewer.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageViewer.idl -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageViewer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageViewer.rc -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageViewer.sln -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageViewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageViewer.vcproj -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageViewerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageViewerDlg.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ImageViewerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ImageViewerDlg.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/JSEventHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/JSEventHandling.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/JSEventHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/JSEventHandling.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/MiscUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/MiscUtils.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/MiscUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/MiscUtils.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ReadMe.txt -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/btn_About.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/btn_About.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/btn_Exit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/btn_Exit.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/btn_Greyscale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/btn_Greyscale.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/btn_Invert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/btn_Invert.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/btn_Min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/btn_Min.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/btn_Open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/btn_Open.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/btn_Reload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/btn_Reload.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/btn_Save.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/btn_Save.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/logo_ScriptDriven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/logo_ScriptDriven.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/main.jpg -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/main.js -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/Skin/myViewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/Skin/myViewer.xml -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ViewerEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ViewerEvent.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/ViewerEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/ViewerEvent.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/global_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/global_defs.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/res/ImageViewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/res/ImageViewer.ico -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/res/ImageViewer.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/res/ImageViewer.manifest -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/res/ImageViewer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/res/ImageViewer.rc2 -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/resource.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/safe_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/safe_defs.h -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/stdafx.cpp -------------------------------------------------------------------------------- /ImageViewer_ScriptDriven/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_ScriptDriven/stdafx.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/CSkinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CSkinButton.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/CSkinButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CSkinButton.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/CSkinDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CSkinDialog.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/CSkinDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CSkinDialog.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/CSkinObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CSkinObject.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/CSkinObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CSkinObject.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/CUISkinXmlReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CUISkinXmlReader.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/CUISkinXmlReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CUISkinXmlReader.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/CXmlWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CXmlWrapper.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/CXmlWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/CXmlWrapper.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageProcessor.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageProcessor.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageViewer.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageViewer.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageViewer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageViewer.rc -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageViewer.sln -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageViewer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageViewer.vcproj -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageViewerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageViewerDlg.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/ImageViewerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ImageViewerDlg.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/MiscUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/MiscUtils.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/MiscUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/MiscUtils.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/ReadMe.txt -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/ImageViewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/ImageViewer.xml -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_About.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_About.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_Clean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_Clean.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_Exit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_Exit.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_Invert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_Invert.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_Logo.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_Min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_Min.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_Open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_Open.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_Reload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_Reload.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_Save.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_Save.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/btn_SystemTime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/btn_SystemTime.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/Skin/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/Skin/main.jpg -------------------------------------------------------------------------------- /ImageViewer_Skinned/res/ImageViewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/res/ImageViewer.ico -------------------------------------------------------------------------------- /ImageViewer_Skinned/res/ImageViewer.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/res/ImageViewer.manifest -------------------------------------------------------------------------------- /ImageViewer_Skinned/res/ImageViewer.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/res/ImageViewer.rc2 -------------------------------------------------------------------------------- /ImageViewer_Skinned/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/resource.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/safe_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/safe_defs.h -------------------------------------------------------------------------------- /ImageViewer_Skinned/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/stdafx.cpp -------------------------------------------------------------------------------- /ImageViewer_Skinned/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/ImageViewer_Skinned/stdafx.h -------------------------------------------------------------------------------- /JSInterpreting/CApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CApplication.cpp -------------------------------------------------------------------------------- /JSInterpreting/CApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CApplication.h -------------------------------------------------------------------------------- /JSInterpreting/CCallbackManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CCallbackManager.cpp -------------------------------------------------------------------------------- /JSInterpreting/CCallbackManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CCallbackManager.h -------------------------------------------------------------------------------- /JSInterpreting/CCar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CCar.cpp -------------------------------------------------------------------------------- /JSInterpreting/CCar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CCar.h -------------------------------------------------------------------------------- /JSInterpreting/CDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CDebugger.cpp -------------------------------------------------------------------------------- /JSInterpreting/CDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CDebugger.h -------------------------------------------------------------------------------- /JSInterpreting/CFileCopyThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CFileCopyThread.h -------------------------------------------------------------------------------- /JSInterpreting/CHQException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CHQException.h -------------------------------------------------------------------------------- /JSInterpreting/CHQThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CHQThread.cpp -------------------------------------------------------------------------------- /JSInterpreting/CHQThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CHQThread.h -------------------------------------------------------------------------------- /JSInterpreting/CJScriptHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CJScriptHost.cpp -------------------------------------------------------------------------------- /JSInterpreting/CJScriptHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CJScriptHost.h -------------------------------------------------------------------------------- /JSInterpreting/CMediaPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CMediaPlayer.cpp -------------------------------------------------------------------------------- /JSInterpreting/CMediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CMediaPlayer.h -------------------------------------------------------------------------------- /JSInterpreting/CScriptEngineWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CScriptEngineWrapper.cpp -------------------------------------------------------------------------------- /JSInterpreting/CScriptEngineWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CScriptEngineWrapper.h -------------------------------------------------------------------------------- /JSInterpreting/CTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CTimer.cpp -------------------------------------------------------------------------------- /JSInterpreting/CTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CTimer.h -------------------------------------------------------------------------------- /JSInterpreting/CTimerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CTimerManager.cpp -------------------------------------------------------------------------------- /JSInterpreting/CTimerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/CTimerManager.h -------------------------------------------------------------------------------- /JSInterpreting/DispatchHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/DispatchHelper.cpp -------------------------------------------------------------------------------- /JSInterpreting/DispatchHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/DispatchHelper.h -------------------------------------------------------------------------------- /JSInterpreting/IDispatchArrayImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/IDispatchArrayImpl.h -------------------------------------------------------------------------------- /JSInterpreting/IDispatchBaseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/IDispatchBaseImpl.h -------------------------------------------------------------------------------- /JSInterpreting/IDispatchExImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/IDispatchExImpl.h -------------------------------------------------------------------------------- /JSInterpreting/IDispatchImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/IDispatchImpl.h -------------------------------------------------------------------------------- /JSInterpreting/IDispatchImpl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/IDispatchImpl2.h -------------------------------------------------------------------------------- /JSInterpreting/JSInterpreting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/JSInterpreting.cpp -------------------------------------------------------------------------------- /JSInterpreting/JSInterpreting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/JSInterpreting.sln -------------------------------------------------------------------------------- /JSInterpreting/JSInterpreting.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/JSInterpreting.vcproj -------------------------------------------------------------------------------- /JSInterpreting/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ReadMe.txt -------------------------------------------------------------------------------- /JSInterpreting/ScriptDebugger/Dispex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ScriptDebugger/Dispex.h -------------------------------------------------------------------------------- /JSInterpreting/ScriptDebugger/HostInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ScriptDebugger/HostInfo.h -------------------------------------------------------------------------------- /JSInterpreting/ScriptDebugger/Multinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ScriptDebugger/Multinfo.h -------------------------------------------------------------------------------- /JSInterpreting/ScriptDebugger/activdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ScriptDebugger/activdbg.h -------------------------------------------------------------------------------- /JSInterpreting/ScriptDebugger/activscp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ScriptDebugger/activscp.h -------------------------------------------------------------------------------- /JSInterpreting/ScriptDebugger/ad1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ScriptDebugger/ad1.lib -------------------------------------------------------------------------------- /JSInterpreting/ScriptDebugger/ad1ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ScriptDebugger/ad1ex.h -------------------------------------------------------------------------------- /JSInterpreting/ScriptDebugger/dbgprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/ScriptDebugger/dbgprop.h -------------------------------------------------------------------------------- /JSInterpreting/TestingCase01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase01.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase02.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase03.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase03.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase04.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase04.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase05.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase05.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase06.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase06.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase07.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase08.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase09.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase10.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase11.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase12.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase13.js -------------------------------------------------------------------------------- /JSInterpreting/TestingCase14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/TestingCase14.js -------------------------------------------------------------------------------- /JSInterpreting/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/global.h -------------------------------------------------------------------------------- /JSInterpreting/js_demo.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/js_demo.idl -------------------------------------------------------------------------------- /JSInterpreting/safe_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/safe_defs.h -------------------------------------------------------------------------------- /JSInterpreting/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/stdafx.cpp -------------------------------------------------------------------------------- /JSInterpreting/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/JSInterpreting/stdafx.h -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/Readme.txt -------------------------------------------------------------------------------- /XML/WebBased/BookInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/WebBased/BookInfo.xml -------------------------------------------------------------------------------- /XML/WebBased/xmlReader.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/WebBased/xmlReader.htm -------------------------------------------------------------------------------- /XML/XMLParser/CXmlParserDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/CXmlParserDemo.cpp -------------------------------------------------------------------------------- /XML/XMLParser/CXmlParserDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/CXmlParserDemo.h -------------------------------------------------------------------------------- /XML/XMLParser/CXmlWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/CXmlWrapper.cpp -------------------------------------------------------------------------------- /XML/XMLParser/CXmlWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/CXmlWrapper.h -------------------------------------------------------------------------------- /XML/XMLParser/ImageViewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/ImageViewer.xml -------------------------------------------------------------------------------- /XML/XMLParser/MiscUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/MiscUtils.cpp -------------------------------------------------------------------------------- /XML/XMLParser/MiscUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/MiscUtils.h -------------------------------------------------------------------------------- /XML/XMLParser/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/ReadMe.txt -------------------------------------------------------------------------------- /XML/XMLParser/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/Resource.h -------------------------------------------------------------------------------- /XML/XMLParser/XMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/XMLParser.cpp -------------------------------------------------------------------------------- /XML/XMLParser/XMLParser.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /XML/XMLParser/XMLParser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/XMLParser.rc -------------------------------------------------------------------------------- /XML/XMLParser/XMLParser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/XMLParser.sln -------------------------------------------------------------------------------- /XML/XMLParser/XMLParser.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/XMLParser.vcproj -------------------------------------------------------------------------------- /XML/XMLParser/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/stdafx.cpp -------------------------------------------------------------------------------- /XML/XMLParser/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/XMLParser/stdafx.h -------------------------------------------------------------------------------- /XML/typical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denley-vendor/ScriptDriven/HEAD/XML/typical.xml --------------------------------------------------------------------------------