├── .gitignore ├── .tfignore ├── LICENSE ├── README.md ├── bin_svr ├── CxAlmAreMan.dll ├── CxAppMan.dll ├── CxBasAcs.dll ├── CxBasBlk.dll ├── CxCommTask.dll ├── CxDBProv.dll ├── CxDatMan.dll ├── CxDevMan.dll ├── CxDrvTst.exe ├── CxExcelUtil.dll ├── CxGameManager.dll ├── CxHmiObj.dll ├── CxMC.exe ├── CxMiscMan.dll ├── CxNodeMan.dll ├── CxPictMan.dll ├── CxProjViewer.exe ├── CxRecpMan.dll ├── CxSAC.exe ├── CxSACProxy.dll ├── CxSACps.dll ├── CxSCBar.dll ├── CxSchedMan.dll ├── CxSecAreMan.dll ├── CxSvrManager.exe ├── CxUserMan.dll └── Drivers │ ├── CxDevSimulator.exe │ ├── CxDrvAIBUS.dll │ ├── CxDrvCsMfc.dll │ ├── CxDrvDDE.dll │ ├── CxDrvEC2006.dll │ ├── CxDrvFinsTcp.dll │ ├── CxDrvFx.dll │ ├── CxDrvHWJT08C.dll │ ├── CxDrvHostLink.dll │ ├── CxDrvIrrigate.dll │ ├── CxDrvLGMK.dll │ ├── CxDrvModbus.dll │ ├── CxDrvNNS.dll │ ├── CxDrvOPC.dll │ ├── CxDrvPplRec.dll │ ├── CxDrvS7MPI.dll │ ├── CxDrvS7PPI.dll │ ├── CxDrvSCSQ.dll │ ├── CxDrvSimulator.dll │ ├── CxDrvTianSuMine.dll │ ├── CxDrvWaterTank.dll │ ├── HozCorLib.dll │ ├── HozWinForm.dll │ ├── libglog.dll │ ├── libnodave.dll │ └── regsvr32.trg ├── bld ├── BuildUI.bat └── delete.bat ├── drv └── OPC │ ├── opcSec_i.c │ ├── opc_ae.h │ ├── opc_ae.idl │ ├── opc_aeImpl.h │ ├── opc_ae_i.c │ ├── opcaedef.h │ ├── opcbc_i.c │ ├── opccomn.h │ ├── opccomn_i.c │ ├── opcda.h │ ├── opcda205A_cust.doc │ ├── opcdaImpl.h │ ├── opcda_cats.c │ ├── opcda_i.c │ ├── opcenum_clsid.c │ ├── opcerror.h │ ├── opchda.h │ ├── opchda.idl │ ├── opchdaImpl.h │ ├── opchda_cats.c │ └── opchda_i.c ├── lib ├── gdiplus │ ├── GdiPlus.h │ ├── GdiPlus.lib │ ├── GdiPlusBase.h │ ├── GdiPlusBitmap.h │ ├── GdiPlusBrush.h │ ├── GdiPlusCachedBitmap.h │ ├── GdiPlusColor.h │ ├── GdiPlusColorMatrix.h │ ├── GdiPlusEnums.h │ ├── GdiPlusFlat.h │ ├── GdiPlusFont.h │ ├── GdiPlusFontCollection.h │ ├── GdiPlusFontFamily.h │ ├── GdiPlusGpStubs.h │ ├── GdiPlusGraphics.h │ ├── GdiPlusHeaders.h │ ├── GdiPlusImageCodec.h │ ├── GdiPlusImaging.h │ ├── GdiPlusInit.h │ ├── GdiPlusLineCaps.h │ ├── GdiPlusMatrix.h │ ├── GdiPlusMem.h │ ├── GdiPlusMetaFile.h │ ├── GdiPlusMetaHeader.h │ ├── GdiPlusPath.h │ ├── GdiPlusPen.h │ ├── GdiPlusPixelFormats.h │ ├── GdiPlusRegion.h │ ├── GdiPlusStringFormat.h │ ├── GdiPlusTypes.h │ ├── GdiPlusimageAttributes.h │ └── gdiplus.dll ├── htmlhelp │ ├── htmlhelp.h │ └── htmlhelp.lib └── wtl │ └── include │ ├── atlapp.h │ ├── atlcrack.h │ ├── atlctrls.h │ ├── atlctrlw.h │ ├── atlctrlx.h │ ├── atlddx.h │ ├── atldlgs.h │ ├── atlfind.h │ ├── atlframe.h │ ├── atlgdi.h │ ├── atlmisc.h │ ├── atlprint.h │ ├── atlres.h │ ├── atlresce.h │ ├── atlscrl.h │ ├── atlsplit.h │ ├── atltheme.h │ ├── atluser.h │ ├── atlwince.h │ └── atlwinx.h ├── other └── bin │ ├── Add-Ins │ ├── History.bmp │ ├── Realtime.bmp │ ├── Refresh.bmp │ ├── ScrollBack.bmp │ ├── ScrollForward.bmp │ ├── Thumbs.db │ ├── ZoomIn.bmp │ └── ZoomOut.bmp │ ├── CxRunCtrl.js │ ├── Default.htm │ ├── Demo │ ├── Data │ │ ├── AlmAre.dms │ │ ├── CxDrvSimulator.ini │ │ ├── Device.dms │ │ ├── Gen.dms │ │ ├── Node.dms │ │ ├── Sched.dms │ │ ├── SecAre.dms │ │ ├── Tag.dms │ │ ├── TagLog.dms │ │ ├── TagStat.dms │ │ ├── User.dms │ │ └── global.vbs │ ├── Demo.scp │ └── Picture │ │ ├── ActiveX.grf │ │ ├── NWIND.MDB │ │ ├── Sample.txt │ │ ├── 主画面.grf │ │ ├── 化工反应.grf │ │ ├── 导航1024X768.grf │ │ ├── 报表.grf │ │ ├── 标签组.grf │ │ └── 流水线.grf │ ├── Drivers │ ├── CL2005Ocx.ocx │ ├── CL2005_API_StdCall.dll │ ├── Dll6.dll │ ├── Komfort.dll │ ├── S7onlinx.dll │ ├── W95_s7.DLL │ ├── inpout32.dll │ └── libnodave.dll │ ├── Gif89.dll │ ├── Module │ ├── 开关.mlb │ ├── 演示.mlb │ └── 趋势.mlb │ ├── OEMFiles │ └── default.grf │ ├── OPCDAAuto.dll │ ├── Symbol │ ├── 仪表.slb │ ├── 其它.slb │ ├── 反事故.slb │ ├── 反应器.slb │ ├── 开关.slb │ ├── 报警器.slb │ ├── 操纵杆.slb │ ├── 水泵.slb │ ├── 液位罐.slb │ ├── 电机.slb │ ├── 电气符号.slb │ ├── 管道.slb │ ├── 罐.slb │ └── 阀门.slb │ ├── Tutorial │ ├── Data │ │ ├── AlmAre.dms │ │ ├── Device.dms │ │ ├── Gen.dms │ │ ├── Node.dms │ │ ├── SecAre.dms │ │ ├── Tag.dms │ │ ├── TagSat.dms │ │ └── User.dms │ ├── Picture │ │ ├── Excel报表.grf │ │ ├── Sample.mdb │ │ ├── 主菜单.grf │ │ ├── 历史趋势一.grf │ │ ├── 子窗体一.grf │ │ ├── 数据库一.grf │ │ ├── 数据库二.grf │ │ ├── 未命名1.grf │ │ └── 未命名2.grf │ └── Tutorial.scp │ ├── VB6 Controls │ ├── dbgrdchs.dll │ ├── dbgrid32.ocx │ ├── flexcell │ │ ├── FlexCell.ocx │ │ ├── VB6CHS.DLL │ │ ├── iobjsafe.tlb │ │ └── msvbvm60.dll │ ├── readme.txt │ ├── system32 │ │ ├── COMCTL32.OCX │ │ ├── COMDLG32.OCX │ │ ├── FM20.DLL │ │ ├── FM20CHS.dll │ │ ├── KChartXY.ocx │ │ ├── MSADODC.OCX │ │ ├── MSBIND.DLL │ │ ├── MSCHRT20.OCX │ │ ├── MSCOMCTL.OCX │ │ ├── MSDATGRD.OCX │ │ ├── MSSTDFMT.DLL │ │ ├── MSSTKPRP.DLL │ │ ├── Msflxgrd.ocx │ │ ├── comcat.dll │ │ ├── mscomct2.ocx │ │ ├── stdftchs.dll │ │ └── vbscript.dll │ └── vb6controls.reg │ ├── Wiz.exe │ ├── gdiplus.dll │ ├── opc_aeps.dll │ ├── opccomn_ps.dll │ ├── opchda_ps.dll │ └── opcproxy.dll ├── svr ├── CxDBProv │ ├── CxDBProv.h │ └── CxDBProv_i.c ├── CxDatAcs │ ├── CxDatAcs.h │ ├── CxDatAcs_i.c │ └── CxDatDef.h ├── CxDatSes │ ├── CxDatSes.h │ └── CxDatSes_i.c └── CxSAC │ ├── CxSAC.h │ └── CxSAC_i.c ├── ui ├── CxAlmSumCtrl │ ├── Alarm.cpp │ ├── Alarm.h │ ├── AlmSum.cpp │ ├── AlmSum.h │ ├── AlmSumCP.h │ ├── AlmSumCtrl.cpp │ ├── AlmSumCtrl.h │ ├── AlmSumDispatchImpl.cpp │ ├── AlmSumDispatchImpl.h │ ├── ColumPage.cpp │ ├── ColumPage.h │ ├── CustCtrl.cpp │ ├── CustCtrl.h │ ├── CxAlmSumCtrl.cpp │ ├── CxAlmSumCtrl.def │ ├── CxAlmSumCtrl.dsp │ ├── CxAlmSumCtrl.dsw │ ├── CxAlmSumCtrl.htm │ ├── CxAlmSumCtrl.idl │ ├── CxAlmSumCtrl.rc │ ├── CxAlmSumCtrl.rgs │ ├── CxAlmSumCtrlps.def │ ├── CxAlmSumCtrlps.mk │ ├── CxColumnAlmSumPage.rgs │ ├── CxFilterAlmSumPage.rgs │ ├── CxFormatAlmSumPage.rgs │ ├── CxGenAlmSumPage.rgs │ ├── CxOperatorAlmSumPage.rgs │ ├── CxSortAlmSumPage.rgs │ ├── DrawAlmSum.cpp │ ├── DrawAlmSum.h │ ├── DrawAlmSum.rgs │ ├── DrawCtrl.cpp │ ├── DrawCtrl.h │ ├── DrawGrid.cpp │ ├── DrawGrid.h │ ├── DrawHeader.cpp │ ├── DrawHeader.h │ ├── DrawScrollBar.cpp │ ├── DrawScrollBar.h │ ├── FilterPage.cpp │ ├── FilterPage.h │ ├── FormatPage.cpp │ ├── FormatPage.h │ ├── GenPage.cpp │ ├── GenPage.h │ ├── NetNode.cpp │ ├── NetNode.h │ ├── OperatorPage.cpp │ ├── OperatorPage.h │ ├── SortPage.cpp │ ├── SortPage.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── atlcoll.h │ ├── bitmap1.bmp │ ├── bmp00001.bmp │ ├── cxalmsum.bmp │ └── resource.h ├── CxAppearExp │ ├── AppearanceExpert.cpp │ ├── AppearanceExpert.h │ ├── ColorCell.cpp │ ├── ColorCell.h │ ├── CxAppearExp.cpp │ ├── CxAppearExp.def │ ├── CxAppearExp.dsp │ ├── CxAppearExp.dsw │ ├── CxAppearExp.idl │ ├── CxAppearExp.rc │ ├── CxAppearExpps.def │ ├── CxAppearExpps.mk │ ├── CxAppearanceExpert.rgs │ ├── DialogSizeHelper.h │ ├── DropPalette.cpp │ ├── DropPalette.h │ ├── DropPaletteWnd.cpp │ ├── DropPaletteWnd.h │ ├── ExpertPropertyPage.h │ ├── FillPreviewWnd.cpp │ ├── FillPreviewWnd.h │ ├── FillStyleWnd.cpp │ ├── FillStyleWnd.h │ ├── LinePreviewWnd.cpp │ ├── LinePreviewWnd.h │ ├── LineStyleWnd.cpp │ ├── LineStyleWnd.h │ ├── SampleObject.cpp │ ├── SampleObject.h │ ├── Slider.cpp │ ├── Slider.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── StyleWnd.cpp │ ├── StyleWnd.h │ ├── atlcoll.h │ ├── res │ │ ├── select_c.bmp │ │ └── selectcolor.bmp │ └── resource.h ├── CxChartCtrl │ ├── ApexGis.cpp │ ├── ApexGis.h │ ├── Axis.cpp │ ├── Axis.h │ ├── Chart.cpp │ ├── Chart.h │ ├── ChartObject.cpp │ ├── ChartObject.h │ ├── CustCtrl.cpp │ ├── CustCtrl.h │ ├── CxChartCtrl.cpp │ ├── CxChartCtrl.def │ ├── CxChartCtrl.dsp │ ├── CxChartCtrl.dsw │ ├── CxChartCtrl.htm │ ├── CxChartCtrl.idl │ ├── CxChartCtrl.rc │ ├── CxChartCtrl.rgs │ ├── CxChartCtrlps.def │ ├── CxChartCtrlps.mk │ ├── CxGenTrendPage.rgs │ ├── CxTrendCtrl.rgs │ ├── CxTrendCtrlPage.rgs │ ├── DataNotation.cpp │ ├── DataNotation.h │ ├── DrawTrend.cpp │ ├── DrawTrend.h │ ├── DrawTrend.rgs │ ├── GenPage.cpp │ ├── GenPage.h │ ├── Grid.cpp │ ├── Grid.h │ ├── GridPage.cpp │ ├── GridPage.h │ ├── Label.cpp │ ├── Label.h │ ├── Legend.cpp │ ├── Legend.h │ ├── LegendPage.cpp │ ├── LegendPage.h │ ├── MOVE4WAY.CUR │ ├── OleDateTime.cpp │ ├── OleDateTime.h │ ├── PenPage.cpp │ ├── PenPage.h │ ├── PolyLineInRect.h │ ├── RectTracker.cpp │ ├── RectTracker.h │ ├── Serial.cpp │ ├── Serial.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TRCK4WAY.CUR │ ├── TRCKNESW.CUR │ ├── TRCKNS.CUR │ ├── TRCKNWSE.CUR │ ├── TRCKWE.CUR │ ├── TabPage.h │ ├── TagList.h │ ├── TimeAxis.cpp │ ├── TimeAxis.h │ ├── TimeAxisPage.cpp │ ├── TimeAxisPage.h │ ├── ToolPane.cpp │ ├── ToolPane.h │ ├── TrendCtrl.cpp │ ├── TrendCtrl.h │ ├── TrendDispatchImpl.cpp │ ├── TrendDispatchImpl.h │ ├── TrendPage.cpp │ ├── TrendPage.h │ ├── ValueAxisPage.cpp │ ├── ValueAxisPage.h │ ├── bitmap1.bmp │ ├── cxchartc.bmp │ ├── resource.h │ ├── tool1.bmp │ └── toolbar1.bmp ├── CxComObj │ ├── ColorPicker.cpp │ ├── ColorPicker.h │ ├── ColorPicker2.cpp │ ├── ColorPicker2.h │ ├── CxColorPicker.rgs │ ├── CxColorPicker2.rgs │ ├── CxComObj.cpp │ ├── CxComObj.def │ ├── CxComObj.dsp │ ├── CxComObj.dsw │ ├── CxComObj.idl │ ├── CxComObj.rc │ ├── CxComObjps.def │ ├── CxComObjps.mk │ ├── CxFontCombo.rgs │ ├── FontCombo.cpp │ ├── FontCombo.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── fonttype.bmp │ └── resource.h ├── CxDev │ ├── Action.cpp │ ├── Action.h │ ├── ActionObj.cpp │ ├── ActionObj.h │ ├── AmbientProperty.cpp │ ├── AmbientProperty.h │ ├── AppSetting.cpp │ ├── AppSetting.h │ ├── BarListCtrl.cpp │ ├── BarListCtrl.h │ ├── BoxCtrl.cpp │ ├── BoxCtrl.h │ ├── ChineseVarUtils.h │ ├── ClrButton.cpp │ ├── ClrButton.h │ ├── CodeModuleDoc.cpp │ ├── CodeModuleDoc.h │ ├── CtrlItem.cpp │ ├── CtrlItem.h │ ├── CtrlObj.cpp │ ├── CtrlObj.h │ ├── CxDev.cpp │ ├── CxDev.dep │ ├── CxDev.dsp │ ├── CxDev.dsw │ ├── CxDev.h │ ├── CxDev.odl │ ├── CxDev.rc │ ├── CxDev.reg │ ├── CxDevIF.h │ ├── DevDoc.cpp │ ├── DevDoc.h │ ├── DevInc.h │ ├── DevObj.cpp │ ├── DevObj.h │ ├── DevObjDoc.cpp │ ├── DevObjDoc.h │ ├── DevTool.cpp │ ├── DevTool.h │ ├── DirWatcher.cpp │ ├── DirWatcher.h │ ├── DocManager2.cpp │ ├── DocManager2.h │ ├── DrawObj.cpp │ ├── DrawObj.h │ ├── Dtguid.h │ ├── EnumExtendProp.cpp │ ├── EnumExtendProp.h │ ├── EnumString.cpp │ ├── EnumString.h │ ├── ExpertBar.cpp │ ├── ExpertBar.h │ ├── ExplorerBar.cpp │ ├── ExplorerBar.h │ ├── ExplorerTree.cpp │ ├── ExplorerTree.h │ ├── ExtendedControl.cpp │ ├── ExtendedControl.h │ ├── FileNewDlg.cpp │ ├── FileNewDlg.h │ ├── FolderNameDlg.cpp │ ├── FolderNameDlg.h │ ├── FormDoc.cpp │ ├── FormDoc.h │ ├── FormObj.cpp │ ├── FormObj.h │ ├── GridSettingDlg.cpp │ ├── GridSettingDlg.h │ ├── GroupObj.cpp │ ├── GroupObj.h │ ├── HYPERLINK.CPP │ ├── HYPERLINK.H │ ├── Ini.h │ ├── InplaceEdit.cpp │ ├── InplaceEdit.h │ ├── InsertControlDlg.cpp │ ├── InsertControlDlg.h │ ├── LayerSettingDlg.cpp │ ├── LayerSettingDlg.h │ ├── LayoutFrm.cpp │ ├── LayoutFrm.h │ ├── LayoutView.cpp │ ├── LayoutView.h │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── MiddleWnd.cpp │ ├── MiddleWnd.h │ ├── ModuleDoc.cpp │ ├── ModuleDoc.h │ ├── ModuleWnd.cpp │ ├── ModuleWnd.h │ ├── OEMSetup.cpp │ ├── OEMSetup.h │ ├── OPCDataSource.cpp │ ├── OPCDataSource.h │ ├── OPCServerDlg.cpp │ ├── OPCServerDlg.h │ ├── PageGen.cpp │ ├── PageGen.h │ ├── PageMainForm.cpp │ ├── PageMainForm.h │ ├── PageObject.cpp │ ├── PageObject.h │ ├── PageSubForm.cpp │ ├── PageSubForm.h │ ├── PopupList.cpp │ ├── PopupList.h │ ├── PropertyBar.cpp │ ├── PropertyBar.h │ ├── ReadMe.txt │ ├── RectF.cpp │ ├── RectF.h │ ├── ReportDoc.cpp │ ├── ReportDoc.h │ ├── ReportFieldDlg.cpp │ ├── ReportFieldDlg.h │ ├── ReportLayoutDlg.cpp │ ├── ReportLayoutDlg.h │ ├── ReportObj.cpp │ ├── ReportObj.h │ ├── ReportSection.cpp │ ├── ReportSection.h │ ├── ReportView.cpp │ ├── ReportView.h │ ├── ReportWizardDlg.cpp │ ├── ReportWizardDlg.h │ ├── RichEditView20.cpp │ ├── SavePromptDlg.cpp │ ├── SavePromptDlg.h │ ├── ScriptAnalyzer.cpp │ ├── ScriptAnalyzer.h │ ├── ScriptEngine.cpp │ ├── ScriptEngine.h │ ├── ScriptFrm.cpp │ ├── ScriptFrm.h │ ├── ScriptView.cpp │ ├── ScriptView.h │ ├── Splash.cpp │ ├── Splash.h │ ├── Splsh16.bmp │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── SymbolDesignDlg.cpp │ ├── SymbolDesignDlg.h │ ├── SymbolLibDoc.cpp │ ├── SymbolLibDoc.h │ ├── SymbolLibWnd.cpp │ ├── SymbolLibWnd.h │ ├── SymbolObj.cpp │ ├── SymbolObj.h │ ├── SymbolPreviewWnd.cpp │ ├── SymbolPreviewWnd.h │ ├── SymbolPropList.cpp │ ├── SymbolPropList.h │ ├── TabOrderDlg.cpp │ ├── TabOrderDlg.h │ ├── ToolboxBar.cpp │ ├── ToolboxBar.h │ ├── TypeChanger.cpp │ ├── TypeChanger.h │ ├── TypeInfoBrowse.cpp │ ├── TypeInfoBrowse.h │ ├── UndoStack.cpp │ ├── UndoStack.h │ ├── VARUTILS.H │ ├── Varutils.cpp │ ├── ZoomDlg.cpp │ ├── ZoomDlg.h │ ├── res │ │ ├── CxDev.ico │ │ ├── CxDev.rc2 │ │ ├── DevDoc.ico │ │ ├── PALETTE.BMP │ │ ├── Toolbar.bmp │ │ ├── bitmap1.bmp │ │ ├── bitmap_.bmp │ │ ├── bitmap_p.bmp │ │ ├── bmp00001.bmp │ │ ├── bmp00002.bmp │ │ ├── bmp00003.bmp │ │ ├── bmp00004.bmp │ │ ├── bmp00005.bmp │ │ ├── bmp00006.bmp │ │ ├── bmp00007.bmp │ │ ├── bmp00008.bmp │ │ ├── bmp00009.bmp │ │ ├── bmp27534.bmp │ │ ├── colorbtn.rc │ │ ├── columnar.bmp │ │ ├── cur00001.cur │ │ ├── cur27536.cur │ │ ├── cur27537.cur │ │ ├── cursor.bmp │ │ ├── cursor1.cur │ │ ├── font.bmp │ │ ├── formatba.bmp │ │ ├── fullscre.bmp │ │ ├── handle_g.bmp │ │ ├── handle_r.bmp │ │ ├── ico00001.ico │ │ ├── ico00002.ico │ │ ├── ico00003.ico │ │ ├── ico00004.ico │ │ ├── ico00005.ico │ │ ├── ico00006.ico │ │ ├── ico00007.ico │ │ ├── ico00008.ico │ │ ├── ico00009.ico │ │ ├── ico00010.ico │ │ ├── ico00011.ico │ │ ├── icon1.ico │ │ ├── icr_hand.cur │ │ ├── idb_.bmp │ │ ├── idr_layo.ico │ │ ├── idr_main.ico │ │ ├── mainfram.bmp │ │ ├── picture.ico │ │ ├── portrait.bmp │ │ ├── portrait.ico │ │ ├── report1.ico │ │ ├── suform.ico │ │ ├── tabular1.bmp │ │ ├── toolbar2.bmp │ │ └── toolbox1.bmp │ ├── resource.h │ ├── resource.hm │ ├── symbolpropdlg.cpp │ └── symbolpropdlg.h ├── CxDrawShapes │ ├── ButtonGenPage.cpp │ ├── ButtonGenPage.h │ ├── ChineseVarUtils.h │ ├── CustCtrl.cpp │ ├── CustCtrl.h │ ├── CxButtonGenPage.rgs │ ├── CxDataLinkGenPage.rgs │ ├── CxDrawShapes.cpp │ ├── CxDrawShapes.def │ ├── CxDrawShapes.dsp │ ├── CxDrawShapes.dsw │ ├── CxDrawShapes.idl │ ├── CxDrawShapes.rc │ ├── CxDrawShapesps.def │ ├── CxDrawShapesps.mk │ ├── CxImageGenPage.rgs │ ├── CxMenuGenPage.rgs │ ├── CxPipeGenPage.rgs │ ├── CxShapeGenPage.rgs │ ├── CxTextGenPage.rgs │ ├── CxTextTextPage.rgs │ ├── CxTimerGenPage.rgs │ ├── CxVariableGenPage.rgs │ ├── DataLinkGenPage.cpp │ ├── DataLinkGenPage.h │ ├── DrawArc.cpp │ ├── DrawArc.h │ ├── DrawArc.rgs │ ├── DrawButton.cpp │ ├── DrawButton.h │ ├── DrawButton.rgs │ ├── DrawChord.cpp │ ├── DrawChord.h │ ├── DrawChord.rgs │ ├── DrawDataLink.cpp │ ├── DrawDataLink.h │ ├── DrawDataLink.rgs │ ├── DrawEllipse.cpp │ ├── DrawEllipse.h │ ├── DrawEllipse.rgs │ ├── DrawImage.cpp │ ├── DrawImage.h │ ├── DrawImage.rgs │ ├── DrawLine.cpp │ ├── DrawLine.h │ ├── DrawLine.rgs │ ├── DrawMenu.cpp │ ├── DrawMenu.h │ ├── DrawMenu.rgs │ ├── DrawPie.cpp │ ├── DrawPie.h │ ├── DrawPie.rgs │ ├── DrawPipe.cpp │ ├── DrawPipe.h │ ├── DrawPipe.rgs │ ├── DrawPolyLine.cpp │ ├── DrawPolyLine.h │ ├── DrawPolyLine.rgs │ ├── DrawPolygon.cpp │ ├── DrawPolygon.h │ ├── DrawPolygon.rgs │ ├── DrawRectangle.cpp │ ├── DrawRectangle.h │ ├── DrawRectangle.rgs │ ├── DrawRoundRectangle.cpp │ ├── DrawRoundRectangle.h │ ├── DrawRoundRectangle.rgs │ ├── DrawTimer.cpp │ ├── DrawTimer.h │ ├── DrawTimer.rgs │ ├── DrawTxt.cpp │ ├── DrawTxt.h │ ├── DrawTxt.rgs │ ├── DrawVariable.cpp │ ├── DrawVariable.h │ ├── DrawVariable.rgs │ ├── FloatPoint.cpp │ ├── FloatPoint.h │ ├── FloatPoint.rgs │ ├── FontComboBox.cpp │ ├── FontComboBox.h │ ├── ImageGenPage.cpp │ ├── ImageGenPage.h │ ├── MenuGenPage.cpp │ ├── MenuGenPage.h │ ├── PipeGenPage.cpp │ ├── PipeGenPage.h │ ├── ShapeGenPage.cpp │ ├── ShapeGenPage.h │ ├── SimpleArray2.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TRUETYPE.BMP │ ├── TextGenPage.cpp │ ├── TextGenPage.h │ ├── TextTextPage.cpp │ ├── TextTextPage.h │ ├── TimerGenPage.cpp │ ├── TimerGenPage.h │ ├── VariableGenPage.cpp │ ├── VariableGenPage.h │ ├── bitmap1.bmp │ ├── bmp00001.bmp │ ├── dlldata.c │ ├── dwon1.ico │ ├── ico00003.ico │ ├── next.ico │ ├── resource.h │ └── up1.ico ├── CxDrawTools │ ├── CxDrawTools.cpp │ ├── CxDrawTools.def │ ├── CxDrawTools.dsp │ ├── CxDrawTools.dsw │ ├── CxDrawTools.idl │ ├── CxDrawTools.rc │ ├── CxDrawToolsps.def │ ├── CxDrawToolsps.mk │ ├── DataLinkTool.cpp │ ├── DataLinkTool.h │ ├── DataLinkTool.rgs │ ├── Dtguid.h │ ├── PieTool.cpp │ ├── PieTool.h │ ├── PieTool.rgs │ ├── PolyTool.cpp │ ├── PolyTool.h │ ├── PolyTool.rgs │ ├── RectTool.cpp │ ├── RectTool.h │ ├── RectTool.rgs │ ├── Select.Cur │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TextTool.cpp │ ├── TextTool.h │ ├── TextTool.rgs │ └── resource.h ├── CxDynExp │ ├── AdvancedDlg.cpp │ ├── AdvancedDlg.h │ ├── ChineseVarUtils.h │ ├── ColorDlg.cpp │ ├── ColorDlg.h │ ├── CxDynExp.cpp │ ├── CxDynExp.def │ ├── CxDynExp.dsp │ ├── CxDynExp.dsw │ ├── CxDynExp.idl │ ├── CxDynExp.rc │ ├── CxDynExpps.def │ ├── CxDynExpps.mk │ ├── CxDynamicExpert.rgs │ ├── DialogSizeHelper.h │ ├── DynamicExpert.cpp │ ├── DynamicExpert.h │ ├── ExpertPropertyPage.h │ ├── FillDlg.cpp │ ├── FillDlg.h │ ├── ItemEditDialog.cpp │ ├── ItemEditDialog.h │ ├── MovementDlg.cpp │ ├── MovementDlg.h │ ├── ScaleDlg.cpp │ ├── ScaleDlg.h │ ├── SimpleArray2.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TabPage.h │ ├── TypeInfoBrowse.cpp │ ├── TypeInfoBrowse.h │ ├── VisibleDlg.cpp │ ├── VisibleDlg.h │ └── resource.h ├── CxDynObjs │ ├── ARW09RT.ICO │ ├── ChineseVarUtils.h │ ├── CxComVariant.h │ ├── CxDynObjs.cpp │ ├── CxDynObjs.def │ ├── CxDynObjs.dsp │ ├── CxDynObjs.dsw │ ├── CxDynObjs.idl │ ├── CxDynObjs.rc │ ├── CxDynObjsps.def │ ├── CxDynObjsps.mk │ ├── CxLookupItem.cpp │ ├── CxLookupItem.h │ ├── DirectDynamic.cpp │ ├── DirectDynamic.h │ ├── DirectDynamic.rgs │ ├── DirectPage.cpp │ ├── DirectPage.h │ ├── DirectPage.rgs │ ├── DynamicFrm.cpp │ ├── DynamicFrm.h │ ├── DynamicFrm.rgs │ ├── FormatDynamic.cpp │ ├── FormatDynamic.h │ ├── FormatDynamic.rgs │ ├── FormatPage.cpp │ ├── FormatPage.h │ ├── FormatPage.rgs │ ├── ItemEditDialog.cpp │ ├── ItemEditDialog.h │ ├── LinearDynamic.cpp │ ├── LinearDynamic.h │ ├── LinearDynamic.rgs │ ├── LinearPage.cpp │ ├── LinearPage.h │ ├── LinearPage.rgs │ ├── LookupDynamic.cpp │ ├── LookupDynamic.h │ ├── LookupDynamic.rgs │ ├── LookupPage.cpp │ ├── LookupPage.h │ ├── LookupPage.rgs │ ├── PopupList.h │ ├── PropInfo.h │ ├── SimpleArray2.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TagPaser.h │ ├── resource.h │ └── toolbar1.bmp ├── CxEvnExp │ ├── ActionParser.cpp │ ├── ActionParser.h │ ├── CxEventExpert.rgs │ ├── CxEvnExp.cpp │ ├── CxEvnExp.def │ ├── CxEvnExp.dsp │ ├── CxEvnExp.dsw │ ├── CxEvnExp.idl │ ├── CxEvnExp.rc │ ├── CxEvnExpps.def │ ├── CxEvnExpps.mk │ ├── DataEntryDlg.cpp │ ├── DataEntryDlg.h │ ├── DialogSizeHelper.h │ ├── DownloadRecipeDlg.cpp │ ├── DownloadRecipeDlg.h │ ├── EventExpert.cpp │ ├── EventExpert.h │ ├── ExpertPropertyPage.h │ ├── NumericEntryDlg.cpp │ ├── NumericEntryDlg.h │ ├── PushbuttonEntryDlg.cpp │ ├── PushbuttonEntryDlg.h │ ├── ShowPictureDlg.cpp │ ├── ShowPictureDlg.h │ ├── SimpleArray2.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TabPage.h │ └── resource.h ├── CxExtObj │ ├── AlphaNumEntryDlg.cpp │ ├── AlphaNumEntryDlg.h │ ├── BlankPage.cpp │ ├── BlankPage.h │ ├── ChineseVarUtils.h │ ├── CxBlankPage.rgs │ ├── CxDataConnection.rgs │ ├── CxDataConnectionPage.rgs │ ├── CxDataEntry.rgs │ ├── CxDataField.rgs │ ├── CxDataRecordset.rgs │ ├── CxDataRecordsetPage.rgs │ ├── CxEventObj.rgs │ ├── CxExtObj.cpp │ ├── CxExtObj.def │ ├── CxExtObj.dsp │ ├── CxExtObj.dsw │ ├── CxExtObj.idl │ ├── CxExtObj.rc │ ├── CxExtObjps.def │ ├── CxExtObjps.mk │ ├── CxReturnInteger.rgs │ ├── CxSQLBuilder.rgs │ ├── DataConnection.cpp │ ├── DataConnection.h │ ├── DataConnectionPage.cpp │ ├── DataConnectionPage.h │ ├── DataEntry.cpp │ ├── DataEntry.h │ ├── DataField.cpp │ ├── DataField.h │ ├── DataRecordset.cpp │ ├── DataRecordset.h │ ├── DataRecordsetPage.cpp │ ├── DataRecordsetPage.h │ ├── DataSourceDlg.cpp │ ├── DataSourceDlg.h │ ├── DialogSizeHelper.h │ ├── EventObj.cpp │ ├── EventObj.h │ ├── OEMSetup.cpp │ ├── OEMSetup.h │ ├── PopupList.h │ ├── PropertyPageImpl2.h │ ├── PushbuttonDataEntry.h │ ├── PushbuttonEntryDlg.cpp │ ├── PushbuttonEntryDlg.h │ ├── ReturnInteger.cpp │ ├── ReturnInteger.h │ ├── SQLBuildDlg.cpp │ ├── SQLBuildDlg.h │ ├── SQLBuilder.cpp │ ├── SQLBuilder.h │ ├── SliderEntryDlg.cpp │ ├── SliderEntryDlg.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ └── resource.h ├── CxHmiObj │ ├── CxDispid.h │ ├── CxHmiMisc.idl │ ├── CxHmiObj.cpp │ ├── CxHmiObj.def │ ├── CxHmiObj.dsp │ ├── CxHmiObj.dsw │ ├── CxHmiObj.idl │ ├── CxHmiObj.rc │ ├── CxHmiObjps.def │ ├── CxHmiObjps.mk │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── cursor1.cur │ └── resource.h ├── CxOle │ ├── CxCatProp.h │ ├── CxDispid.h │ ├── CxDrawObj.h │ ├── CxDrawTool.h │ ├── CxDynObj.h │ ├── CxHmiMisc.idl │ ├── CxHmiObj.idl │ ├── CxOle.dsp │ ├── CxOle.dsw │ ├── ExpressSerializer.h │ └── PromptTimeElapse.h ├── CxPropCtrl │ ├── CxPropCtrl.cpp │ ├── CxPropCtrl.def │ ├── CxPropCtrl.dsp │ ├── CxPropCtrl.dsw │ ├── CxPropCtrl.idl │ ├── CxPropCtrl.rc │ ├── CxPropCtrlps.def │ ├── CxPropCtrlps.mk │ ├── PopupList.h │ ├── PropCtrl.cpp │ ├── PropCtrl.h │ ├── PropGuids.h │ ├── Property.cpp │ ├── Property.h │ ├── PropertyCtrl.htm │ ├── PropertyCtrl.rgs │ ├── PropertyCtrlCP.h │ ├── PropertyPageDlg.cpp │ ├── PropertyPageDlg.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── atlcoll.h │ ├── property.bmp │ ├── resource.h │ └── toolbar1.bmp ├── CxPropSheet │ ├── CopyDllToTest.bat │ ├── CxPropSheet.cpp │ ├── CxPropSheet.def │ ├── CxPropSheet.dsp │ ├── CxPropSheet.dsw │ ├── CxPropSheet.h │ ├── CxPropSheet.rc │ ├── CxPropSheet1.cpp │ ├── CxPropSheet1.h │ ├── CxPropSheetExport.h │ ├── CxSheetTest │ │ ├── CxSheetTest.cpp │ │ ├── CxSheetTest.dsp │ │ ├── CxSheetTest.dsw │ │ ├── CxSheetTest.h │ │ ├── CxSheetTest.rc │ │ ├── CxSheetTestDlg.cpp │ │ ├── CxSheetTestDlg.h │ │ ├── DllCopy.bat │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── res │ │ │ ├── CxSheetTest.ico │ │ │ └── CxSheetTest.rc2 │ │ └── resource.h │ ├── OlePropPage.cpp │ ├── OlePropPage.h │ ├── PropPage.cpp │ ├── PropPage.h │ ├── PropSheet.cpp │ ├── PropSheet.h │ ├── ReadMe.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TestPages │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TestPage.cpp │ │ ├── TestPage.h │ │ ├── TestPage1.cpp │ │ ├── TestPage1.h │ │ ├── TestPage1.rgs │ │ ├── TestPages.cpp │ │ ├── TestPages.def │ │ ├── TestPages.dsp │ │ ├── TestPages.dsw │ │ ├── TestPages.h │ │ ├── TestPages.idl │ │ ├── TestPages.rc │ │ ├── TestPagesps.def │ │ ├── TestPagesps.mk │ │ └── resource.h │ ├── bitmap1.bmp │ ├── comhelp.h │ ├── res │ │ └── CxPropSheet.rc2 │ └── resource.h ├── CxPropVal │ ├── CxPropVal.cpp │ ├── CxPropVal.def │ ├── CxPropVal.dsp │ ├── CxPropVal.dsw │ ├── CxPropVal.idl │ ├── CxPropVal.rc │ ├── CxPropValCP.h │ ├── CxPropValps.def │ ├── CxPropValps.mk │ ├── CxPropertyValue.htm │ ├── CxPropertyValue.rgs │ ├── PopupList.h │ ├── PropVal.cpp │ ├── PropVal.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── bitmap1.bmp │ ├── cxproper.bmp │ ├── res │ │ ├── arrow.bmp │ │ └── cxproper.bmp │ └── resource.h ├── CxRun │ ├── CxRun.cpp │ ├── CxRun.dsp │ ├── CxRun.dsw │ ├── CxRun.h │ ├── CxRun.odl │ ├── CxRun.rc │ ├── CxRun.reg │ ├── DcomErrorDlg.cpp │ ├── DcomErrorDlg.h │ ├── DocManager2.cpp │ ├── DocManager2.h │ ├── InputPasswordDlg.cpp │ ├── InputPasswordDlg.h │ ├── LocalServer.cpp │ ├── LocalServer.h │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── NotifyWnd.h │ ├── OEMSetup.cpp │ ├── OEMSetup.h │ ├── OleMessageFilter2.cpp │ ├── OleMessageFilter2.h │ ├── PageGen.cpp │ ├── PageGen.h │ ├── ReadMe.txt │ ├── RunDoc.cpp │ ├── RunDoc.h │ ├── RunView.cpp │ ├── RunView.h │ ├── ServerNotifyWnd.cpp │ ├── ServerNotifyWnd.h │ ├── ServerPromptModifiedDlg.cpp │ ├── ServerPromptModifiedDlg.h │ ├── Service.cpp │ ├── Service.h │ ├── Splash.cpp │ ├── Splash.h │ ├── Splsh16.bmp │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── res │ │ ├── Axmediabrowser 1.ico │ │ ├── CxRun.ico │ │ ├── CxRun.rc2 │ │ ├── RunDoc.ico │ │ └── warning.ico │ └── resource.h ├── CxRunCtrl │ ├── ActivDoc.cpp │ ├── ActivDoc.h │ ├── AmbientProperty.cpp │ ├── AmbientProperty.h │ ├── BitmapDoc.cpp │ ├── BitmapDoc.h │ ├── BitmapView.cpp │ ├── BitmapView.h │ ├── CacheFile.cpp │ ├── CacheFile.h │ ├── CacheFileManager.cpp │ ├── CacheFileManager.h │ ├── CeXDib.cpp │ ├── CeXDib.h │ ├── ChangePasswordDlg.cpp │ ├── ChangePasswordDlg.h │ ├── CheckListCtrl.cpp │ ├── CheckListCtrl.h │ ├── ChineseVarUtils.h │ ├── CtrlItem.cpp │ ├── CtrlItem.h │ ├── CtrlObj.cpp │ ├── CtrlObj.h │ ├── CxRunCtrl.cpp │ ├── CxRunCtrl.def │ ├── CxRunCtrl.dsp │ ├── CxRunCtrl.dsw │ ├── CxRunCtrl.h │ ├── CxRunCtrl.odl │ ├── CxRunCtrl.rc │ ├── DevDoc.cpp │ ├── DevDoc.h │ ├── DevObjDoc.cpp │ ├── DevObjDoc.h │ ├── DrawObj.cpp │ ├── DrawObj.h │ ├── EnumHelper.cpp │ ├── EnumHelper.h │ ├── EnumVariant.cpp │ ├── EnumVariant.h │ ├── ExtendedControl.cpp │ ├── ExtendedControl.h │ ├── FormDoc.cpp │ ├── FormDoc.h │ ├── FormObj.cpp │ ├── FormObj.h │ ├── FormScrEng.cpp │ ├── FormScrEng.h │ ├── GroupObj.cpp │ ├── GroupObj.h │ ├── HELPERS.H │ ├── KeyBoardDlg.cpp │ ├── KeyBoardDlg.h │ ├── LoginDlg.cpp │ ├── LoginDlg.h │ ├── ObjectCollection.cpp │ ├── ObjectCollection.h │ ├── PPTooltip.cpp │ ├── PPTooltip.h │ ├── PopupFrame.cpp │ ├── PopupFrame.h │ ├── PreviewViewEx.cpp │ ├── PreviewViewEx.h │ ├── PrintFrame.cpp │ ├── PrintFrame.h │ ├── PrintView.cpp │ ├── PrintView.h │ ├── ReadMe.txt │ ├── RectF.cpp │ ├── RectF.h │ ├── ReportDoc.cpp │ ├── ReportDoc.h │ ├── ReportObj.cpp │ ├── ReportObj.h │ ├── ReportSection.cpp │ ├── ReportSection.h │ ├── ReportView.cpp │ ├── ReportView.h │ ├── ReturnValue.cpp │ ├── ReturnValue.h │ ├── RunCtrl.bmp │ ├── RunCtrl.cpp │ ├── RunCtrl.h │ ├── RunCtrlPpg.cpp │ ├── RunCtrlPpg.h │ ├── RunFrame.cpp │ ├── RunFrame.h │ ├── RunInc.h │ ├── RunObj.cpp │ ├── RunObj.h │ ├── RunView.cpp │ ├── RunView.h │ ├── ScriptEngine.cpp │ ├── ScriptEngine.h │ ├── ScriptErrorDlg.cpp │ ├── ScriptErrorDlg.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── SymbolObj.cpp │ ├── SymbolObj.h │ ├── UserItemDlg.cpp │ ├── UserItemDlg.h │ ├── UserManagerDlg.cpp │ ├── UserManagerDlg.h │ ├── VARUTILS.H │ ├── Varutils.cpp │ ├── WindowPrintView.cpp │ ├── WindowPrintView.h │ ├── res │ │ ├── Axmediabrowser 1.ico │ │ ├── RunDoc.ico │ │ ├── bitmap1.bmp │ │ ├── hand1.cur │ │ ├── hand2.cur │ │ ├── icon1.ico │ │ ├── idr_cxru.ico │ │ └── stateico.bmp │ └── resource.h ├── CxSCBar │ ├── CxSCBar.cpp │ ├── CxSCBar.def │ ├── CxSCBar.dsp │ ├── CxSCBar.dsw │ ├── CxSCBar.rc │ ├── ReadMe.txt │ ├── Resource.h │ ├── SCBEXT.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TabBar.cpp │ ├── TabBar.h │ ├── res │ │ └── CxSCBar.rc2 │ ├── sizecbar.cpp │ └── sizecbar.h ├── CxScripCrt │ ├── ChineseVarUtils.h │ ├── ComboBoxBold.cpp │ ├── ComboBoxBold.h │ ├── CxExpressionCreator.rgs │ ├── CxScripCreator.rgs │ ├── CxScripCrt.cpp │ ├── CxScripCrt.def │ ├── CxScripCrt.dsp │ ├── CxScripCrt.dsw │ ├── CxScripCrt.idl │ ├── CxScripCrt.rc │ ├── CxScripCrtps.def │ ├── CxScripCrtps.mk │ ├── CxScriptEditor.rgs │ ├── CxScriptEidtor.htm │ ├── ExprCrt.cpp │ ├── ExprCrt.h │ ├── FindReplaceDlg.cpp │ ├── FindReplaceDlg.h │ ├── GeneralPage.cpp │ ├── GeneralPage.h │ ├── GoLineDlg.cpp │ ├── GoLineDlg.h │ ├── KeyBoardDlg.cpp │ ├── KeyBoardDlg.h │ ├── KeyBoardWnd.cpp │ ├── KeyBoardWnd.h │ ├── MainFrame.cpp │ ├── MainFrame.h │ ├── OEMSetup.cpp │ ├── OEMSetup.h │ ├── OpcServer.cpp │ ├── OpcServer.h │ ├── OpcServerPage.cpp │ ├── OpcServerPage.h │ ├── PropertyPageDlg.cpp │ ├── PropertyPageDlg.h │ ├── RangeToFormat.cpp │ ├── RangeToFormat.h │ ├── ScintillaEditCtrl.h │ ├── ScripCrt.cpp │ ├── ScripCrt.h │ ├── ScriptAnalyzer.cpp │ ├── ScriptAnalyzer.h │ ├── ScriptCreatorCP.h │ ├── ScriptEditor.cpp │ ├── ScriptEditor.h │ ├── ScriptEditorView.cpp │ ├── ScriptEditorView.h │ ├── Scripter.cpp │ ├── Scripter.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── SymbolView.cpp │ ├── SymbolView.h │ ├── TreePage.cpp │ ├── TreePage.h │ ├── WaitMessageLoop.h │ ├── atlcoll.h │ ├── bitmap1.bmp │ ├── bmp00001.bmp │ ├── cxscript.bmp │ ├── icon1.ico │ ├── method.ico │ ├── method1.ico │ ├── prop.ico │ ├── resource.h │ └── toolbar1.bmp ├── CxTagPick │ ├── BitmapButton2.h │ ├── CxTagGroupPicker.rgs │ ├── CxTagPick.cpp │ ├── CxTagPick.def │ ├── CxTagPick.dsp │ ├── CxTagPick.dsw │ ├── CxTagPick.idl │ ├── CxTagPick.rc │ ├── CxTagPickCtrl.htm │ ├── CxTagPickCtrl.rgs │ ├── CxTagPicker.rgs │ ├── CxTagPickps.def │ ├── CxTagPickps.mk │ ├── Node.cpp │ ├── Node.h │ ├── OEMSetup.cpp │ ├── OEMSetup.h │ ├── RegProfile.cpp │ ├── RegProfile.h │ ├── RegPropertyBag.cpp │ ├── RegPropertyBag.h │ ├── SecurityAreaPickDlg.cpp │ ├── SecurityAreaPickDlg.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TagGroupPickDlg.cpp │ ├── TagGroupPickDlg.h │ ├── TagPick.cpp │ ├── TagPick.h │ ├── TagPickCtrl.cpp │ ├── TagPickCtrl.h │ ├── TagPickCtrlCP.h │ ├── TagPickDlg.cpp │ ├── TagPickDlg.h │ ├── bitmap1.bmp │ ├── bmp00001.bmp │ ├── bmp00002.bmp │ ├── cxdatman.bmp │ ├── cxtagpic.bmp │ └── resource.h ├── WinLockDll │ ├── InjDll.c │ ├── Inject.c │ ├── Inject.h │ ├── WinLockDLL.c │ ├── WinLockDLL.dsp │ ├── WinLockDLL.dsw │ ├── WinLockDLL.rc │ ├── WinLockDll.def │ ├── WinLockDll.h │ └── resource.h └── scintilla │ ├── License.txt │ ├── README │ ├── delbin.bat │ ├── delcvs.bat │ ├── doc │ ├── Design.html │ ├── Lexer.txt │ ├── SciBreak.jpg │ ├── SciCoding.html │ ├── SciRest.jpg │ ├── SciWord.jpg │ ├── ScintillaDoc.html │ ├── ScintillaDownload.html │ ├── ScintillaHistory.html │ ├── ScintillaRelated.html │ ├── ScintillaToDo.html │ ├── ScintillaUsage.html │ ├── Steps.html │ └── index.html │ ├── gtk │ ├── PlatGTK.cxx │ ├── ScintillaGTK.cxx │ ├── deps.mak │ ├── makefile │ └── scintilla.mak │ ├── include │ ├── Accessor.h │ ├── Face.py │ ├── HFacer.py │ ├── KeyWords.h │ ├── Platform.h │ ├── PropSet.h │ ├── SString.h │ ├── SciLexer.h │ ├── Scintilla.h │ ├── Scintilla.iface │ ├── ScintillaWidget.h │ └── WindowAccessor.h │ ├── src │ ├── AutoComplete.cxx │ ├── AutoComplete.h │ ├── CallTip.cxx │ ├── CallTip.h │ ├── CellBuffer.cxx │ ├── CellBuffer.h │ ├── ContractionState.cxx │ ├── ContractionState.h │ ├── Document.cxx │ ├── Document.h │ ├── DocumentAccessor.cxx │ ├── DocumentAccessor.h │ ├── Editor.cxx │ ├── Editor.h │ ├── ExternalLexer.cxx │ ├── ExternalLexer.h │ ├── Indicator.cxx │ ├── Indicator.h │ ├── KeyMap.cxx │ ├── KeyMap.h │ ├── KeyWords.cxx │ ├── LexAVE.cxx │ ├── LexAda.cxx │ ├── LexAsm.cxx │ ├── LexBaan.cxx │ ├── LexBullant.cxx │ ├── LexCPP.cxx │ ├── LexCSS.cxx │ ├── LexConf.cxx │ ├── LexCrontab.cxx │ ├── LexEScript.cxx │ ├── LexEiffel.cxx │ ├── LexFortran.cxx │ ├── LexGen.py │ ├── LexHTML.cxx │ ├── LexLisp.cxx │ ├── LexLout.cxx │ ├── LexLua.cxx │ ├── LexMatlab.cxx │ ├── LexOthers.cxx │ ├── LexPOV.cxx │ ├── LexPascal.cxx │ ├── LexPerl.cxx │ ├── LexPython.cxx │ ├── LexRuby.cxx │ ├── LexSQL.cxx │ ├── LexVB.cxx │ ├── LineMarker.cxx │ ├── LineMarker.h │ ├── PropSet.cxx │ ├── RESearch.cxx │ ├── RESearch.h │ ├── SVector.h │ ├── SciTE.properties │ ├── ScintillaBase.cxx │ ├── ScintillaBase.h │ ├── Style.cxx │ ├── Style.h │ ├── StyleContext.cxx │ ├── StyleContext.h │ ├── UniConversion.cxx │ ├── UniConversion.h │ ├── ViewStyle.cxx │ ├── ViewStyle.h │ ├── WindowAccessor.cxx │ ├── XPM.cxx │ └── XPM.h │ ├── tgzsrc │ ├── vcbuild │ ├── SciLexer.dsp │ └── SciLexer.dsw │ ├── version.txt │ ├── win32 │ ├── Margin.cur │ ├── PlatWin.cxx │ ├── PlatformRes.h │ ├── SciTE.properties │ ├── ScintRes.rc │ ├── Scintilla.def │ ├── ScintillaWin.cxx │ ├── deps.mak │ ├── makefile │ ├── scintilla.mak │ └── scintilla_vc6.mak │ └── zipsrc.bat └── wiki └── image ├── 2006630223834226.gif ├── 2006630224232803.gif ├── 2006831173250353.jpg ├── 2006831173353271.jpg ├── 2006831174011267.jpg ├── 2006831175034155.jpg ├── 2006831181016815.jpg ├── 2006831181144867.jpg ├── 200683118125858.jpg ├── 2006831181711449.jpg ├── 2006831181716191.jpg ├── 2006831181716304.jpg ├── 2006831181716780.jpg ├── 2006831181716846.jpg ├── 2006831181716932.jpg ├── 2006831181716987.jpg ├── 2006831185012657.jpg ├── 20068311861421.jpg ├── 200683118617477.jpg ├── 20068311879124.jpg ├── 200683118918548.jpg ├── 2006831195211679.jpg ├── 2006831195336380.jpg ├── 2006831195336396.jpg ├── 2006831195336399.jpg ├── 2006831195336884.jpg ├── 2006831195336961.jpg ├── 20069104134599.jpg ├── 20069104134758.jpg ├── 20069104135168.jpg ├── 20069104135248.jpg ├── 20069104135447.jpg ├── 20069104316971.jpg ├── 20069104325256.jpg ├── 20069104449190.jpg ├── 20069104449228.jpg ├── 20069104449268.jpg ├── 20069104449432.jpg ├── 20069104449467.jpg ├── 20069104449508.jpg ├── 20069104449800.jpg ├── 20069104628168.jpg ├── 2006910470271.jpg ├── 20069105349520.jpg ├── 2006910565848.jpg ├── 20069111351750.jpg ├── 2006911148971.jpg ├── 20069111617906.jpg ├── 20069111931582.jpg ├── 2006911239598.jpg ├── 20069112820975.jpg ├── 20069112839356.jpg ├── 20069113310568.jpg ├── 20069113322623.jpg ├── 20069114713852.jpg ├── 20069114816762.jpg ├── 20069115027862.jpg ├── 20069115937503.gif ├── 20069115950913.jpg ├── 200691178332.jpg ├── 2006912015615.jpg ├── 2006912215233.gif ├── 2006921625919.jpg └── 2006921643137.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/.gitignore -------------------------------------------------------------------------------- /.tfignore: -------------------------------------------------------------------------------- 1 | \.git -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/README.md -------------------------------------------------------------------------------- /bin_svr/CxAlmAreMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxAlmAreMan.dll -------------------------------------------------------------------------------- /bin_svr/CxAppMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxAppMan.dll -------------------------------------------------------------------------------- /bin_svr/CxBasAcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxBasAcs.dll -------------------------------------------------------------------------------- /bin_svr/CxBasBlk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxBasBlk.dll -------------------------------------------------------------------------------- /bin_svr/CxCommTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxCommTask.dll -------------------------------------------------------------------------------- /bin_svr/CxDBProv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxDBProv.dll -------------------------------------------------------------------------------- /bin_svr/CxDatMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxDatMan.dll -------------------------------------------------------------------------------- /bin_svr/CxDevMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxDevMan.dll -------------------------------------------------------------------------------- /bin_svr/CxDrvTst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxDrvTst.exe -------------------------------------------------------------------------------- /bin_svr/CxExcelUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxExcelUtil.dll -------------------------------------------------------------------------------- /bin_svr/CxGameManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxGameManager.dll -------------------------------------------------------------------------------- /bin_svr/CxHmiObj.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxHmiObj.dll -------------------------------------------------------------------------------- /bin_svr/CxMC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxMC.exe -------------------------------------------------------------------------------- /bin_svr/CxMiscMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxMiscMan.dll -------------------------------------------------------------------------------- /bin_svr/CxNodeMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxNodeMan.dll -------------------------------------------------------------------------------- /bin_svr/CxPictMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxPictMan.dll -------------------------------------------------------------------------------- /bin_svr/CxProjViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxProjViewer.exe -------------------------------------------------------------------------------- /bin_svr/CxRecpMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxRecpMan.dll -------------------------------------------------------------------------------- /bin_svr/CxSAC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxSAC.exe -------------------------------------------------------------------------------- /bin_svr/CxSACProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxSACProxy.dll -------------------------------------------------------------------------------- /bin_svr/CxSACps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxSACps.dll -------------------------------------------------------------------------------- /bin_svr/CxSCBar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxSCBar.dll -------------------------------------------------------------------------------- /bin_svr/CxSchedMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxSchedMan.dll -------------------------------------------------------------------------------- /bin_svr/CxSecAreMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxSecAreMan.dll -------------------------------------------------------------------------------- /bin_svr/CxSvrManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxSvrManager.exe -------------------------------------------------------------------------------- /bin_svr/CxUserMan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/CxUserMan.dll -------------------------------------------------------------------------------- /bin_svr/Drivers/CxDrvDDE.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/Drivers/CxDrvDDE.dll -------------------------------------------------------------------------------- /bin_svr/Drivers/CxDrvFx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/Drivers/CxDrvFx.dll -------------------------------------------------------------------------------- /bin_svr/Drivers/CxDrvNNS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/Drivers/CxDrvNNS.dll -------------------------------------------------------------------------------- /bin_svr/Drivers/CxDrvOPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/Drivers/CxDrvOPC.dll -------------------------------------------------------------------------------- /bin_svr/Drivers/libglog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bin_svr/Drivers/libglog.dll -------------------------------------------------------------------------------- /bin_svr/Drivers/regsvr32.trg: -------------------------------------------------------------------------------- 1 | regsvr32 exec. time 2 | -------------------------------------------------------------------------------- /bld/BuildUI.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bld/BuildUI.bat -------------------------------------------------------------------------------- /bld/delete.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/bld/delete.bat -------------------------------------------------------------------------------- /drv/OPC/opcSec_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcSec_i.c -------------------------------------------------------------------------------- /drv/OPC/opc_ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opc_ae.h -------------------------------------------------------------------------------- /drv/OPC/opc_ae.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opc_ae.idl -------------------------------------------------------------------------------- /drv/OPC/opc_aeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opc_aeImpl.h -------------------------------------------------------------------------------- /drv/OPC/opc_ae_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opc_ae_i.c -------------------------------------------------------------------------------- /drv/OPC/opcaedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcaedef.h -------------------------------------------------------------------------------- /drv/OPC/opcbc_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcbc_i.c -------------------------------------------------------------------------------- /drv/OPC/opccomn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opccomn.h -------------------------------------------------------------------------------- /drv/OPC/opccomn_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opccomn_i.c -------------------------------------------------------------------------------- /drv/OPC/opcda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcda.h -------------------------------------------------------------------------------- /drv/OPC/opcda205A_cust.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcda205A_cust.doc -------------------------------------------------------------------------------- /drv/OPC/opcdaImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcdaImpl.h -------------------------------------------------------------------------------- /drv/OPC/opcda_cats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcda_cats.c -------------------------------------------------------------------------------- /drv/OPC/opcda_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcda_i.c -------------------------------------------------------------------------------- /drv/OPC/opcenum_clsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcenum_clsid.c -------------------------------------------------------------------------------- /drv/OPC/opcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opcerror.h -------------------------------------------------------------------------------- /drv/OPC/opchda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opchda.h -------------------------------------------------------------------------------- /drv/OPC/opchda.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opchda.idl -------------------------------------------------------------------------------- /drv/OPC/opchdaImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opchdaImpl.h -------------------------------------------------------------------------------- /drv/OPC/opchda_cats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opchda_cats.c -------------------------------------------------------------------------------- /drv/OPC/opchda_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/drv/OPC/opchda_i.c -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlus.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlus.lib -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusBase.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusBitmap.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusBrush.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusColor.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusEnums.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusFlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusFlat.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusFont.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusGpStubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusGpStubs.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusHeaders.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusImaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusImaging.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusInit.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusMatrix.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusMem.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusPath.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusPen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusPen.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusRegion.h -------------------------------------------------------------------------------- /lib/gdiplus/GdiPlusTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/GdiPlusTypes.h -------------------------------------------------------------------------------- /lib/gdiplus/gdiplus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/gdiplus/gdiplus.dll -------------------------------------------------------------------------------- /lib/htmlhelp/htmlhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/htmlhelp/htmlhelp.h -------------------------------------------------------------------------------- /lib/htmlhelp/htmlhelp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/htmlhelp/htmlhelp.lib -------------------------------------------------------------------------------- /lib/wtl/include/atlapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlapp.h -------------------------------------------------------------------------------- /lib/wtl/include/atlcrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlcrack.h -------------------------------------------------------------------------------- /lib/wtl/include/atlctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlctrls.h -------------------------------------------------------------------------------- /lib/wtl/include/atlctrlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlctrlw.h -------------------------------------------------------------------------------- /lib/wtl/include/atlctrlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlctrlx.h -------------------------------------------------------------------------------- /lib/wtl/include/atlddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlddx.h -------------------------------------------------------------------------------- /lib/wtl/include/atldlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atldlgs.h -------------------------------------------------------------------------------- /lib/wtl/include/atlfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlfind.h -------------------------------------------------------------------------------- /lib/wtl/include/atlframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlframe.h -------------------------------------------------------------------------------- /lib/wtl/include/atlgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlgdi.h -------------------------------------------------------------------------------- /lib/wtl/include/atlmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlmisc.h -------------------------------------------------------------------------------- /lib/wtl/include/atlprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlprint.h -------------------------------------------------------------------------------- /lib/wtl/include/atlres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlres.h -------------------------------------------------------------------------------- /lib/wtl/include/atlresce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlresce.h -------------------------------------------------------------------------------- /lib/wtl/include/atlscrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlscrl.h -------------------------------------------------------------------------------- /lib/wtl/include/atlsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlsplit.h -------------------------------------------------------------------------------- /lib/wtl/include/atltheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atltheme.h -------------------------------------------------------------------------------- /lib/wtl/include/atluser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atluser.h -------------------------------------------------------------------------------- /lib/wtl/include/atlwince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlwince.h -------------------------------------------------------------------------------- /lib/wtl/include/atlwinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/lib/wtl/include/atlwinx.h -------------------------------------------------------------------------------- /other/bin/Add-Ins/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Add-Ins/Thumbs.db -------------------------------------------------------------------------------- /other/bin/Add-Ins/ZoomIn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Add-Ins/ZoomIn.bmp -------------------------------------------------------------------------------- /other/bin/CxRunCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/CxRunCtrl.js -------------------------------------------------------------------------------- /other/bin/Default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Default.htm -------------------------------------------------------------------------------- /other/bin/Demo/Data/Gen.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Demo/Data/Gen.dms -------------------------------------------------------------------------------- /other/bin/Demo/Data/Node.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Demo/Data/Node.dms -------------------------------------------------------------------------------- /other/bin/Demo/Data/SecAre.dms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/bin/Demo/Data/Tag.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Demo/Data/Tag.dms -------------------------------------------------------------------------------- /other/bin/Demo/Data/User.dms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Demo/Data/User.dms -------------------------------------------------------------------------------- /other/bin/Demo/Demo.scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Demo/Demo.scp -------------------------------------------------------------------------------- /other/bin/Drivers/Dll6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Drivers/Dll6.dll -------------------------------------------------------------------------------- /other/bin/Drivers/W95_s7.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Drivers/W95_s7.DLL -------------------------------------------------------------------------------- /other/bin/Gif89.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Gif89.dll -------------------------------------------------------------------------------- /other/bin/Module/开关.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Module/开关.mlb -------------------------------------------------------------------------------- /other/bin/Module/演示.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Module/演示.mlb -------------------------------------------------------------------------------- /other/bin/Module/趋势.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Module/趋势.mlb -------------------------------------------------------------------------------- /other/bin/OPCDAAuto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/OPCDAAuto.dll -------------------------------------------------------------------------------- /other/bin/Symbol/仪表.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/仪表.slb -------------------------------------------------------------------------------- /other/bin/Symbol/其它.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/其它.slb -------------------------------------------------------------------------------- /other/bin/Symbol/反事故.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/反事故.slb -------------------------------------------------------------------------------- /other/bin/Symbol/反应器.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/反应器.slb -------------------------------------------------------------------------------- /other/bin/Symbol/开关.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/开关.slb -------------------------------------------------------------------------------- /other/bin/Symbol/报警器.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/报警器.slb -------------------------------------------------------------------------------- /other/bin/Symbol/操纵杆.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/操纵杆.slb -------------------------------------------------------------------------------- /other/bin/Symbol/水泵.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/水泵.slb -------------------------------------------------------------------------------- /other/bin/Symbol/液位罐.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/液位罐.slb -------------------------------------------------------------------------------- /other/bin/Symbol/电机.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/电机.slb -------------------------------------------------------------------------------- /other/bin/Symbol/电气符号.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/电气符号.slb -------------------------------------------------------------------------------- /other/bin/Symbol/管道.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/管道.slb -------------------------------------------------------------------------------- /other/bin/Symbol/罐.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/罐.slb -------------------------------------------------------------------------------- /other/bin/Symbol/阀门.slb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Symbol/阀门.slb -------------------------------------------------------------------------------- /other/bin/Tutorial/Data/AlmAre.dms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/bin/Tutorial/Data/Device.dms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/bin/Tutorial/Data/SecAre.dms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/bin/Wiz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/Wiz.exe -------------------------------------------------------------------------------- /other/bin/gdiplus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/gdiplus.dll -------------------------------------------------------------------------------- /other/bin/opc_aeps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/opc_aeps.dll -------------------------------------------------------------------------------- /other/bin/opccomn_ps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/opccomn_ps.dll -------------------------------------------------------------------------------- /other/bin/opchda_ps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/opchda_ps.dll -------------------------------------------------------------------------------- /other/bin/opcproxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/other/bin/opcproxy.dll -------------------------------------------------------------------------------- /svr/CxDBProv/CxDBProv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxDBProv/CxDBProv.h -------------------------------------------------------------------------------- /svr/CxDBProv/CxDBProv_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxDBProv/CxDBProv_i.c -------------------------------------------------------------------------------- /svr/CxDatAcs/CxDatAcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxDatAcs/CxDatAcs.h -------------------------------------------------------------------------------- /svr/CxDatAcs/CxDatAcs_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxDatAcs/CxDatAcs_i.c -------------------------------------------------------------------------------- /svr/CxDatAcs/CxDatDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxDatAcs/CxDatDef.h -------------------------------------------------------------------------------- /svr/CxDatSes/CxDatSes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxDatSes/CxDatSes.h -------------------------------------------------------------------------------- /svr/CxDatSes/CxDatSes_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxDatSes/CxDatSes_i.c -------------------------------------------------------------------------------- /svr/CxSAC/CxSAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxSAC/CxSAC.h -------------------------------------------------------------------------------- /svr/CxSAC/CxSAC_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/svr/CxSAC/CxSAC_i.c -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/Alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/Alarm.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/Alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/Alarm.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/AlmSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/AlmSum.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/AlmSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/AlmSum.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/AlmSumCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/AlmSumCP.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/AlmSumCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/AlmSumCtrl.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/ColumPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/ColumPage.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/CustCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/CustCtrl.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/CustCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/CustCtrl.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/DrawAlmSum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/DrawAlmSum.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/DrawCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/DrawCtrl.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/DrawCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/DrawCtrl.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/DrawGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/DrawGrid.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/DrawGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/DrawGrid.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/DrawHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/DrawHeader.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/FilterPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/FilterPage.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/FormatPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/FormatPage.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/GenPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/GenPage.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/GenPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/GenPage.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/NetNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/NetNode.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/NetNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/NetNode.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/SortPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/SortPage.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/SortPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/SortPage.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/StdAfx.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/atlcoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/atlcoll.h -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/bitmap1.bmp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/bmp00001.bmp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/cxalmsum.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/cxalmsum.bmp -------------------------------------------------------------------------------- /ui/CxAlmSumCtrl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAlmSumCtrl/resource.h -------------------------------------------------------------------------------- /ui/CxAppearExp/ColorCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/ColorCell.cpp -------------------------------------------------------------------------------- /ui/CxAppearExp/ColorCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/ColorCell.h -------------------------------------------------------------------------------- /ui/CxAppearExp/DropPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/DropPalette.h -------------------------------------------------------------------------------- /ui/CxAppearExp/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/Slider.cpp -------------------------------------------------------------------------------- /ui/CxAppearExp/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/Slider.h -------------------------------------------------------------------------------- /ui/CxAppearExp/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxAppearExp/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/StdAfx.h -------------------------------------------------------------------------------- /ui/CxAppearExp/StyleWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/StyleWnd.cpp -------------------------------------------------------------------------------- /ui/CxAppearExp/StyleWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/StyleWnd.h -------------------------------------------------------------------------------- /ui/CxAppearExp/atlcoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/atlcoll.h -------------------------------------------------------------------------------- /ui/CxAppearExp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxAppearExp/resource.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/ApexGis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/ApexGis.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/ApexGis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/ApexGis.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/Axis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Axis.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/Axis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Axis.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/Chart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Chart.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/Chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Chart.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/ChartObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/ChartObject.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/CustCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/CustCtrl.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/CustCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/CustCtrl.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/DrawTrend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/DrawTrend.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/DrawTrend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/DrawTrend.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/DrawTrend.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/DrawTrend.rgs -------------------------------------------------------------------------------- /ui/CxChartCtrl/GenPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/GenPage.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/GenPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/GenPage.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Grid.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Grid.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/GridPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/GridPage.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/GridPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/GridPage.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Label.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Label.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/Legend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Legend.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/Legend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Legend.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/LegendPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/LegendPage.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/MOVE4WAY.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/MOVE4WAY.CUR -------------------------------------------------------------------------------- /ui/CxChartCtrl/OleDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/OleDateTime.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/PenPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/PenPage.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/PenPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/PenPage.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/RectTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/RectTracker.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Serial.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/Serial.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/StdAfx.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/TRCK4WAY.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TRCK4WAY.CUR -------------------------------------------------------------------------------- /ui/CxChartCtrl/TRCKNESW.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TRCKNESW.CUR -------------------------------------------------------------------------------- /ui/CxChartCtrl/TRCKNS.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TRCKNS.CUR -------------------------------------------------------------------------------- /ui/CxChartCtrl/TRCKNWSE.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TRCKNWSE.CUR -------------------------------------------------------------------------------- /ui/CxChartCtrl/TRCKWE.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TRCKWE.CUR -------------------------------------------------------------------------------- /ui/CxChartCtrl/TabPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TabPage.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/TagList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TagList.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/TimeAxis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TimeAxis.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/TimeAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TimeAxis.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/ToolPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/ToolPane.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/ToolPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/ToolPane.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/TrendCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TrendCtrl.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/TrendCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TrendCtrl.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/TrendPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TrendPage.cpp -------------------------------------------------------------------------------- /ui/CxChartCtrl/TrendPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/TrendPage.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/bitmap1.bmp -------------------------------------------------------------------------------- /ui/CxChartCtrl/cxchartc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/cxchartc.bmp -------------------------------------------------------------------------------- /ui/CxChartCtrl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/resource.h -------------------------------------------------------------------------------- /ui/CxChartCtrl/tool1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/tool1.bmp -------------------------------------------------------------------------------- /ui/CxChartCtrl/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxChartCtrl/toolbar1.bmp -------------------------------------------------------------------------------- /ui/CxComObj/ColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/ColorPicker.cpp -------------------------------------------------------------------------------- /ui/CxComObj/ColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/ColorPicker.h -------------------------------------------------------------------------------- /ui/CxComObj/ColorPicker2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/ColorPicker2.cpp -------------------------------------------------------------------------------- /ui/CxComObj/ColorPicker2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/ColorPicker2.h -------------------------------------------------------------------------------- /ui/CxComObj/CxComObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxComObj.cpp -------------------------------------------------------------------------------- /ui/CxComObj/CxComObj.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxComObj.def -------------------------------------------------------------------------------- /ui/CxComObj/CxComObj.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxComObj.dsp -------------------------------------------------------------------------------- /ui/CxComObj/CxComObj.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxComObj.dsw -------------------------------------------------------------------------------- /ui/CxComObj/CxComObj.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxComObj.idl -------------------------------------------------------------------------------- /ui/CxComObj/CxComObj.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxComObj.rc -------------------------------------------------------------------------------- /ui/CxComObj/CxComObjps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxComObjps.def -------------------------------------------------------------------------------- /ui/CxComObj/CxComObjps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxComObjps.mk -------------------------------------------------------------------------------- /ui/CxComObj/CxFontCombo.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/CxFontCombo.rgs -------------------------------------------------------------------------------- /ui/CxComObj/FontCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/FontCombo.cpp -------------------------------------------------------------------------------- /ui/CxComObj/FontCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/FontCombo.h -------------------------------------------------------------------------------- /ui/CxComObj/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxComObj/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/StdAfx.h -------------------------------------------------------------------------------- /ui/CxComObj/fonttype.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/fonttype.bmp -------------------------------------------------------------------------------- /ui/CxComObj/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxComObj/resource.h -------------------------------------------------------------------------------- /ui/CxDev/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/Action.cpp -------------------------------------------------------------------------------- /ui/CxDev/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/Action.h -------------------------------------------------------------------------------- /ui/CxDev/ActionObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ActionObj.cpp -------------------------------------------------------------------------------- /ui/CxDev/ActionObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ActionObj.h -------------------------------------------------------------------------------- /ui/CxDev/AmbientProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/AmbientProperty.cpp -------------------------------------------------------------------------------- /ui/CxDev/AmbientProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/AmbientProperty.h -------------------------------------------------------------------------------- /ui/CxDev/AppSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/AppSetting.cpp -------------------------------------------------------------------------------- /ui/CxDev/AppSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/AppSetting.h -------------------------------------------------------------------------------- /ui/CxDev/BarListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/BarListCtrl.cpp -------------------------------------------------------------------------------- /ui/CxDev/BarListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/BarListCtrl.h -------------------------------------------------------------------------------- /ui/CxDev/BoxCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/BoxCtrl.cpp -------------------------------------------------------------------------------- /ui/CxDev/BoxCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/BoxCtrl.h -------------------------------------------------------------------------------- /ui/CxDev/ChineseVarUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ChineseVarUtils.h -------------------------------------------------------------------------------- /ui/CxDev/ClrButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ClrButton.cpp -------------------------------------------------------------------------------- /ui/CxDev/ClrButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ClrButton.h -------------------------------------------------------------------------------- /ui/CxDev/CodeModuleDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CodeModuleDoc.cpp -------------------------------------------------------------------------------- /ui/CxDev/CodeModuleDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CodeModuleDoc.h -------------------------------------------------------------------------------- /ui/CxDev/CtrlItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CtrlItem.cpp -------------------------------------------------------------------------------- /ui/CxDev/CtrlItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CtrlItem.h -------------------------------------------------------------------------------- /ui/CxDev/CtrlObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CtrlObj.cpp -------------------------------------------------------------------------------- /ui/CxDev/CtrlObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CtrlObj.h -------------------------------------------------------------------------------- /ui/CxDev/CxDev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDev.cpp -------------------------------------------------------------------------------- /ui/CxDev/CxDev.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDev.dep -------------------------------------------------------------------------------- /ui/CxDev/CxDev.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDev.dsp -------------------------------------------------------------------------------- /ui/CxDev/CxDev.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDev.dsw -------------------------------------------------------------------------------- /ui/CxDev/CxDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDev.h -------------------------------------------------------------------------------- /ui/CxDev/CxDev.odl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDev.odl -------------------------------------------------------------------------------- /ui/CxDev/CxDev.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDev.rc -------------------------------------------------------------------------------- /ui/CxDev/CxDev.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDev.reg -------------------------------------------------------------------------------- /ui/CxDev/CxDevIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/CxDevIF.h -------------------------------------------------------------------------------- /ui/CxDev/DevDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevDoc.cpp -------------------------------------------------------------------------------- /ui/CxDev/DevDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevDoc.h -------------------------------------------------------------------------------- /ui/CxDev/DevInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevInc.h -------------------------------------------------------------------------------- /ui/CxDev/DevObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevObj.cpp -------------------------------------------------------------------------------- /ui/CxDev/DevObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevObj.h -------------------------------------------------------------------------------- /ui/CxDev/DevObjDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevObjDoc.cpp -------------------------------------------------------------------------------- /ui/CxDev/DevObjDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevObjDoc.h -------------------------------------------------------------------------------- /ui/CxDev/DevTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevTool.cpp -------------------------------------------------------------------------------- /ui/CxDev/DevTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DevTool.h -------------------------------------------------------------------------------- /ui/CxDev/DirWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DirWatcher.cpp -------------------------------------------------------------------------------- /ui/CxDev/DirWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DirWatcher.h -------------------------------------------------------------------------------- /ui/CxDev/DocManager2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DocManager2.cpp -------------------------------------------------------------------------------- /ui/CxDev/DocManager2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DocManager2.h -------------------------------------------------------------------------------- /ui/CxDev/DrawObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DrawObj.cpp -------------------------------------------------------------------------------- /ui/CxDev/DrawObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/DrawObj.h -------------------------------------------------------------------------------- /ui/CxDev/Dtguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/Dtguid.h -------------------------------------------------------------------------------- /ui/CxDev/EnumExtendProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/EnumExtendProp.cpp -------------------------------------------------------------------------------- /ui/CxDev/EnumExtendProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/EnumExtendProp.h -------------------------------------------------------------------------------- /ui/CxDev/EnumString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/EnumString.cpp -------------------------------------------------------------------------------- /ui/CxDev/EnumString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/EnumString.h -------------------------------------------------------------------------------- /ui/CxDev/ExpertBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ExpertBar.cpp -------------------------------------------------------------------------------- /ui/CxDev/ExpertBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ExpertBar.h -------------------------------------------------------------------------------- /ui/CxDev/ExplorerBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ExplorerBar.cpp -------------------------------------------------------------------------------- /ui/CxDev/ExplorerBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ExplorerBar.h -------------------------------------------------------------------------------- /ui/CxDev/ExplorerTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ExplorerTree.cpp -------------------------------------------------------------------------------- /ui/CxDev/ExplorerTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ExplorerTree.h -------------------------------------------------------------------------------- /ui/CxDev/ExtendedControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ExtendedControl.cpp -------------------------------------------------------------------------------- /ui/CxDev/ExtendedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ExtendedControl.h -------------------------------------------------------------------------------- /ui/CxDev/FileNewDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/FileNewDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/FileNewDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/FileNewDlg.h -------------------------------------------------------------------------------- /ui/CxDev/FolderNameDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/FolderNameDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/FolderNameDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/FolderNameDlg.h -------------------------------------------------------------------------------- /ui/CxDev/FormDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/FormDoc.cpp -------------------------------------------------------------------------------- /ui/CxDev/FormDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/FormDoc.h -------------------------------------------------------------------------------- /ui/CxDev/FormObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/FormObj.cpp -------------------------------------------------------------------------------- /ui/CxDev/FormObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/FormObj.h -------------------------------------------------------------------------------- /ui/CxDev/GridSettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/GridSettingDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/GridSettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/GridSettingDlg.h -------------------------------------------------------------------------------- /ui/CxDev/GroupObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/GroupObj.cpp -------------------------------------------------------------------------------- /ui/CxDev/GroupObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/GroupObj.h -------------------------------------------------------------------------------- /ui/CxDev/HYPERLINK.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/HYPERLINK.CPP -------------------------------------------------------------------------------- /ui/CxDev/HYPERLINK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/HYPERLINK.H -------------------------------------------------------------------------------- /ui/CxDev/Ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/Ini.h -------------------------------------------------------------------------------- /ui/CxDev/InplaceEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/InplaceEdit.cpp -------------------------------------------------------------------------------- /ui/CxDev/InplaceEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/InplaceEdit.h -------------------------------------------------------------------------------- /ui/CxDev/InsertControlDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/InsertControlDlg.h -------------------------------------------------------------------------------- /ui/CxDev/LayerSettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/LayerSettingDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/LayerSettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/LayerSettingDlg.h -------------------------------------------------------------------------------- /ui/CxDev/LayoutFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/LayoutFrm.cpp -------------------------------------------------------------------------------- /ui/CxDev/LayoutFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/LayoutFrm.h -------------------------------------------------------------------------------- /ui/CxDev/LayoutView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/LayoutView.cpp -------------------------------------------------------------------------------- /ui/CxDev/LayoutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/LayoutView.h -------------------------------------------------------------------------------- /ui/CxDev/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/MainFrm.cpp -------------------------------------------------------------------------------- /ui/CxDev/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/MainFrm.h -------------------------------------------------------------------------------- /ui/CxDev/MiddleWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/MiddleWnd.cpp -------------------------------------------------------------------------------- /ui/CxDev/MiddleWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/MiddleWnd.h -------------------------------------------------------------------------------- /ui/CxDev/ModuleDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ModuleDoc.cpp -------------------------------------------------------------------------------- /ui/CxDev/ModuleDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ModuleDoc.h -------------------------------------------------------------------------------- /ui/CxDev/ModuleWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ModuleWnd.cpp -------------------------------------------------------------------------------- /ui/CxDev/ModuleWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ModuleWnd.h -------------------------------------------------------------------------------- /ui/CxDev/OEMSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/OEMSetup.cpp -------------------------------------------------------------------------------- /ui/CxDev/OEMSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/OEMSetup.h -------------------------------------------------------------------------------- /ui/CxDev/OPCDataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/OPCDataSource.cpp -------------------------------------------------------------------------------- /ui/CxDev/OPCDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/OPCDataSource.h -------------------------------------------------------------------------------- /ui/CxDev/OPCServerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/OPCServerDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/OPCServerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/OPCServerDlg.h -------------------------------------------------------------------------------- /ui/CxDev/PageGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PageGen.cpp -------------------------------------------------------------------------------- /ui/CxDev/PageGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PageGen.h -------------------------------------------------------------------------------- /ui/CxDev/PageMainForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PageMainForm.cpp -------------------------------------------------------------------------------- /ui/CxDev/PageMainForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PageMainForm.h -------------------------------------------------------------------------------- /ui/CxDev/PageObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PageObject.cpp -------------------------------------------------------------------------------- /ui/CxDev/PageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PageObject.h -------------------------------------------------------------------------------- /ui/CxDev/PageSubForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PageSubForm.cpp -------------------------------------------------------------------------------- /ui/CxDev/PageSubForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PageSubForm.h -------------------------------------------------------------------------------- /ui/CxDev/PopupList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PopupList.cpp -------------------------------------------------------------------------------- /ui/CxDev/PopupList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PopupList.h -------------------------------------------------------------------------------- /ui/CxDev/PropertyBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PropertyBar.cpp -------------------------------------------------------------------------------- /ui/CxDev/PropertyBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/PropertyBar.h -------------------------------------------------------------------------------- /ui/CxDev/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReadMe.txt -------------------------------------------------------------------------------- /ui/CxDev/RectF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/RectF.cpp -------------------------------------------------------------------------------- /ui/CxDev/RectF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/RectF.h -------------------------------------------------------------------------------- /ui/CxDev/ReportDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportDoc.cpp -------------------------------------------------------------------------------- /ui/CxDev/ReportDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportDoc.h -------------------------------------------------------------------------------- /ui/CxDev/ReportFieldDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportFieldDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/ReportFieldDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportFieldDlg.h -------------------------------------------------------------------------------- /ui/CxDev/ReportLayoutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportLayoutDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/ReportLayoutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportLayoutDlg.h -------------------------------------------------------------------------------- /ui/CxDev/ReportObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportObj.cpp -------------------------------------------------------------------------------- /ui/CxDev/ReportObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportObj.h -------------------------------------------------------------------------------- /ui/CxDev/ReportSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportSection.cpp -------------------------------------------------------------------------------- /ui/CxDev/ReportSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportSection.h -------------------------------------------------------------------------------- /ui/CxDev/ReportView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportView.cpp -------------------------------------------------------------------------------- /ui/CxDev/ReportView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportView.h -------------------------------------------------------------------------------- /ui/CxDev/ReportWizardDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportWizardDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/ReportWizardDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ReportWizardDlg.h -------------------------------------------------------------------------------- /ui/CxDev/RichEditView20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/RichEditView20.cpp -------------------------------------------------------------------------------- /ui/CxDev/SavePromptDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SavePromptDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/SavePromptDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SavePromptDlg.h -------------------------------------------------------------------------------- /ui/CxDev/ScriptAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ScriptAnalyzer.cpp -------------------------------------------------------------------------------- /ui/CxDev/ScriptAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ScriptAnalyzer.h -------------------------------------------------------------------------------- /ui/CxDev/ScriptEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ScriptEngine.cpp -------------------------------------------------------------------------------- /ui/CxDev/ScriptEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ScriptEngine.h -------------------------------------------------------------------------------- /ui/CxDev/ScriptFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ScriptFrm.cpp -------------------------------------------------------------------------------- /ui/CxDev/ScriptFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ScriptFrm.h -------------------------------------------------------------------------------- /ui/CxDev/ScriptView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ScriptView.cpp -------------------------------------------------------------------------------- /ui/CxDev/ScriptView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ScriptView.h -------------------------------------------------------------------------------- /ui/CxDev/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/Splash.cpp -------------------------------------------------------------------------------- /ui/CxDev/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/Splash.h -------------------------------------------------------------------------------- /ui/CxDev/Splsh16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/Splsh16.bmp -------------------------------------------------------------------------------- /ui/CxDev/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxDev/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/StdAfx.h -------------------------------------------------------------------------------- /ui/CxDev/SymbolDesignDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolDesignDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/SymbolDesignDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolDesignDlg.h -------------------------------------------------------------------------------- /ui/CxDev/SymbolLibDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolLibDoc.cpp -------------------------------------------------------------------------------- /ui/CxDev/SymbolLibDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolLibDoc.h -------------------------------------------------------------------------------- /ui/CxDev/SymbolLibWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolLibWnd.cpp -------------------------------------------------------------------------------- /ui/CxDev/SymbolLibWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolLibWnd.h -------------------------------------------------------------------------------- /ui/CxDev/SymbolObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolObj.cpp -------------------------------------------------------------------------------- /ui/CxDev/SymbolObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolObj.h -------------------------------------------------------------------------------- /ui/CxDev/SymbolPreviewWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolPreviewWnd.h -------------------------------------------------------------------------------- /ui/CxDev/SymbolPropList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolPropList.cpp -------------------------------------------------------------------------------- /ui/CxDev/SymbolPropList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/SymbolPropList.h -------------------------------------------------------------------------------- /ui/CxDev/TabOrderDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/TabOrderDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/TabOrderDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/TabOrderDlg.h -------------------------------------------------------------------------------- /ui/CxDev/ToolboxBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ToolboxBar.cpp -------------------------------------------------------------------------------- /ui/CxDev/ToolboxBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ToolboxBar.h -------------------------------------------------------------------------------- /ui/CxDev/TypeChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/TypeChanger.cpp -------------------------------------------------------------------------------- /ui/CxDev/TypeChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/TypeChanger.h -------------------------------------------------------------------------------- /ui/CxDev/TypeInfoBrowse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/TypeInfoBrowse.cpp -------------------------------------------------------------------------------- /ui/CxDev/TypeInfoBrowse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/TypeInfoBrowse.h -------------------------------------------------------------------------------- /ui/CxDev/UndoStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/UndoStack.cpp -------------------------------------------------------------------------------- /ui/CxDev/UndoStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/UndoStack.h -------------------------------------------------------------------------------- /ui/CxDev/VARUTILS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/VARUTILS.H -------------------------------------------------------------------------------- /ui/CxDev/Varutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/Varutils.cpp -------------------------------------------------------------------------------- /ui/CxDev/ZoomDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ZoomDlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/ZoomDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/ZoomDlg.h -------------------------------------------------------------------------------- /ui/CxDev/res/CxDev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/CxDev.ico -------------------------------------------------------------------------------- /ui/CxDev/res/CxDev.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/CxDev.rc2 -------------------------------------------------------------------------------- /ui/CxDev/res/DevDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/DevDoc.ico -------------------------------------------------------------------------------- /ui/CxDev/res/PALETTE.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/PALETTE.BMP -------------------------------------------------------------------------------- /ui/CxDev/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/Toolbar.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bitmap1.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bitmap_.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bitmap_.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bitmap_p.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bitmap_p.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00001.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00002.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00003.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00004.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00004.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00005.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00005.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00006.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00006.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00007.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00007.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00008.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00008.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp00009.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp00009.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/bmp27534.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/bmp27534.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/colorbtn.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/colorbtn.rc -------------------------------------------------------------------------------- /ui/CxDev/res/columnar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/columnar.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/cur00001.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/cur00001.cur -------------------------------------------------------------------------------- /ui/CxDev/res/cur27536.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/cur27536.cur -------------------------------------------------------------------------------- /ui/CxDev/res/cur27537.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/cur27537.cur -------------------------------------------------------------------------------- /ui/CxDev/res/cursor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/cursor.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/cursor1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/cursor1.cur -------------------------------------------------------------------------------- /ui/CxDev/res/font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/font.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/formatba.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/formatba.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/fullscre.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/fullscre.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/handle_g.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/handle_g.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/handle_r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/handle_r.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/ico00001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00001.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00002.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00002.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00003.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00004.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00004.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00005.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00005.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00006.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00006.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00007.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00007.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00008.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00008.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00009.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00009.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00010.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00010.ico -------------------------------------------------------------------------------- /ui/CxDev/res/ico00011.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/ico00011.ico -------------------------------------------------------------------------------- /ui/CxDev/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/icon1.ico -------------------------------------------------------------------------------- /ui/CxDev/res/icr_hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/icr_hand.cur -------------------------------------------------------------------------------- /ui/CxDev/res/idb_.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/idb_.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/idr_layo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/idr_layo.ico -------------------------------------------------------------------------------- /ui/CxDev/res/idr_main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/idr_main.ico -------------------------------------------------------------------------------- /ui/CxDev/res/mainfram.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/mainfram.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/picture.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/picture.ico -------------------------------------------------------------------------------- /ui/CxDev/res/portrait.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/portrait.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/portrait.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/portrait.ico -------------------------------------------------------------------------------- /ui/CxDev/res/report1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/report1.ico -------------------------------------------------------------------------------- /ui/CxDev/res/suform.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/suform.ico -------------------------------------------------------------------------------- /ui/CxDev/res/tabular1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/tabular1.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/toolbar2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/toolbar2.bmp -------------------------------------------------------------------------------- /ui/CxDev/res/toolbox1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/res/toolbox1.bmp -------------------------------------------------------------------------------- /ui/CxDev/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/resource.h -------------------------------------------------------------------------------- /ui/CxDev/resource.hm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/resource.hm -------------------------------------------------------------------------------- /ui/CxDev/symbolpropdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/symbolpropdlg.cpp -------------------------------------------------------------------------------- /ui/CxDev/symbolpropdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDev/symbolpropdlg.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/CustCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/CustCtrl.cpp -------------------------------------------------------------------------------- /ui/CxDrawShapes/CustCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/CustCtrl.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawArc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawArc.cpp -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawArc.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawArc.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawArc.rgs -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawButton.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawChord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawChord.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawImage.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawLine.cpp -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawLine.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawLine.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawLine.rgs -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawMenu.cpp -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawMenu.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawMenu.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawMenu.rgs -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawPie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawPie.cpp -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawPie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawPie.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawPie.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawPie.rgs -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawPipe.cpp -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawPipe.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawPipe.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawPipe.rgs -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawTimer.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawTxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawTxt.cpp -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawTxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawTxt.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/DrawTxt.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/DrawTxt.rgs -------------------------------------------------------------------------------- /ui/CxDrawShapes/FloatPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/FloatPoint.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxDrawShapes/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/StdAfx.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/TRUETYPE.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/TRUETYPE.BMP -------------------------------------------------------------------------------- /ui/CxDrawShapes/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/bitmap1.bmp -------------------------------------------------------------------------------- /ui/CxDrawShapes/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/bmp00001.bmp -------------------------------------------------------------------------------- /ui/CxDrawShapes/dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/dlldata.c -------------------------------------------------------------------------------- /ui/CxDrawShapes/dwon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/dwon1.ico -------------------------------------------------------------------------------- /ui/CxDrawShapes/ico00003.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/ico00003.ico -------------------------------------------------------------------------------- /ui/CxDrawShapes/next.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/next.ico -------------------------------------------------------------------------------- /ui/CxDrawShapes/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/resource.h -------------------------------------------------------------------------------- /ui/CxDrawShapes/up1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawShapes/up1.ico -------------------------------------------------------------------------------- /ui/CxDrawTools/Dtguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/Dtguid.h -------------------------------------------------------------------------------- /ui/CxDrawTools/PieTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/PieTool.cpp -------------------------------------------------------------------------------- /ui/CxDrawTools/PieTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/PieTool.h -------------------------------------------------------------------------------- /ui/CxDrawTools/PieTool.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/PieTool.rgs -------------------------------------------------------------------------------- /ui/CxDrawTools/PolyTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/PolyTool.cpp -------------------------------------------------------------------------------- /ui/CxDrawTools/PolyTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/PolyTool.h -------------------------------------------------------------------------------- /ui/CxDrawTools/PolyTool.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/PolyTool.rgs -------------------------------------------------------------------------------- /ui/CxDrawTools/RectTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/RectTool.cpp -------------------------------------------------------------------------------- /ui/CxDrawTools/RectTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/RectTool.h -------------------------------------------------------------------------------- /ui/CxDrawTools/RectTool.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/RectTool.rgs -------------------------------------------------------------------------------- /ui/CxDrawTools/Select.Cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/Select.Cur -------------------------------------------------------------------------------- /ui/CxDrawTools/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxDrawTools/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/StdAfx.h -------------------------------------------------------------------------------- /ui/CxDrawTools/TextTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/TextTool.cpp -------------------------------------------------------------------------------- /ui/CxDrawTools/TextTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/TextTool.h -------------------------------------------------------------------------------- /ui/CxDrawTools/TextTool.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/TextTool.rgs -------------------------------------------------------------------------------- /ui/CxDrawTools/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDrawTools/resource.h -------------------------------------------------------------------------------- /ui/CxDynExp/AdvancedDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/AdvancedDlg.cpp -------------------------------------------------------------------------------- /ui/CxDynExp/AdvancedDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/AdvancedDlg.h -------------------------------------------------------------------------------- /ui/CxDynExp/ColorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/ColorDlg.cpp -------------------------------------------------------------------------------- /ui/CxDynExp/ColorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/ColorDlg.h -------------------------------------------------------------------------------- /ui/CxDynExp/CxDynExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/CxDynExp.cpp -------------------------------------------------------------------------------- /ui/CxDynExp/CxDynExp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/CxDynExp.def -------------------------------------------------------------------------------- /ui/CxDynExp/CxDynExp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/CxDynExp.dsp -------------------------------------------------------------------------------- /ui/CxDynExp/CxDynExp.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/CxDynExp.dsw -------------------------------------------------------------------------------- /ui/CxDynExp/CxDynExp.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/CxDynExp.idl -------------------------------------------------------------------------------- /ui/CxDynExp/CxDynExp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/CxDynExp.rc -------------------------------------------------------------------------------- /ui/CxDynExp/CxDynExpps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/CxDynExpps.def -------------------------------------------------------------------------------- /ui/CxDynExp/CxDynExpps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/CxDynExpps.mk -------------------------------------------------------------------------------- /ui/CxDynExp/DynamicExpert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/DynamicExpert.h -------------------------------------------------------------------------------- /ui/CxDynExp/FillDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/FillDlg.cpp -------------------------------------------------------------------------------- /ui/CxDynExp/FillDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/FillDlg.h -------------------------------------------------------------------------------- /ui/CxDynExp/ItemEditDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/ItemEditDialog.h -------------------------------------------------------------------------------- /ui/CxDynExp/MovementDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/MovementDlg.cpp -------------------------------------------------------------------------------- /ui/CxDynExp/MovementDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/MovementDlg.h -------------------------------------------------------------------------------- /ui/CxDynExp/ScaleDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/ScaleDlg.cpp -------------------------------------------------------------------------------- /ui/CxDynExp/ScaleDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/ScaleDlg.h -------------------------------------------------------------------------------- /ui/CxDynExp/SimpleArray2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/SimpleArray2.h -------------------------------------------------------------------------------- /ui/CxDynExp/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxDynExp/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/StdAfx.h -------------------------------------------------------------------------------- /ui/CxDynExp/TabPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/TabPage.h -------------------------------------------------------------------------------- /ui/CxDynExp/TypeInfoBrowse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/TypeInfoBrowse.h -------------------------------------------------------------------------------- /ui/CxDynExp/VisibleDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/VisibleDlg.cpp -------------------------------------------------------------------------------- /ui/CxDynExp/VisibleDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/VisibleDlg.h -------------------------------------------------------------------------------- /ui/CxDynExp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynExp/resource.h -------------------------------------------------------------------------------- /ui/CxDynObjs/ARW09RT.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/ARW09RT.ICO -------------------------------------------------------------------------------- /ui/CxDynObjs/CxComVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxComVariant.h -------------------------------------------------------------------------------- /ui/CxDynObjs/CxDynObjs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxDynObjs.cpp -------------------------------------------------------------------------------- /ui/CxDynObjs/CxDynObjs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxDynObjs.def -------------------------------------------------------------------------------- /ui/CxDynObjs/CxDynObjs.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxDynObjs.dsp -------------------------------------------------------------------------------- /ui/CxDynObjs/CxDynObjs.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxDynObjs.dsw -------------------------------------------------------------------------------- /ui/CxDynObjs/CxDynObjs.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxDynObjs.idl -------------------------------------------------------------------------------- /ui/CxDynObjs/CxDynObjs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxDynObjs.rc -------------------------------------------------------------------------------- /ui/CxDynObjs/CxDynObjsps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxDynObjsps.def -------------------------------------------------------------------------------- /ui/CxDynObjs/CxDynObjsps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxDynObjsps.mk -------------------------------------------------------------------------------- /ui/CxDynObjs/CxLookupItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/CxLookupItem.h -------------------------------------------------------------------------------- /ui/CxDynObjs/DirectDynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/DirectDynamic.h -------------------------------------------------------------------------------- /ui/CxDynObjs/DirectPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/DirectPage.cpp -------------------------------------------------------------------------------- /ui/CxDynObjs/DirectPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/DirectPage.h -------------------------------------------------------------------------------- /ui/CxDynObjs/DirectPage.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/DirectPage.rgs -------------------------------------------------------------------------------- /ui/CxDynObjs/DynamicFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/DynamicFrm.cpp -------------------------------------------------------------------------------- /ui/CxDynObjs/DynamicFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/DynamicFrm.h -------------------------------------------------------------------------------- /ui/CxDynObjs/DynamicFrm.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/DynamicFrm.rgs -------------------------------------------------------------------------------- /ui/CxDynObjs/FormatDynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/FormatDynamic.h -------------------------------------------------------------------------------- /ui/CxDynObjs/FormatPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/FormatPage.cpp -------------------------------------------------------------------------------- /ui/CxDynObjs/FormatPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/FormatPage.h -------------------------------------------------------------------------------- /ui/CxDynObjs/LinearPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/LinearPage.h -------------------------------------------------------------------------------- /ui/CxDynObjs/LookupPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/LookupPage.h -------------------------------------------------------------------------------- /ui/CxDynObjs/PopupList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/PopupList.h -------------------------------------------------------------------------------- /ui/CxDynObjs/PropInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/PropInfo.h -------------------------------------------------------------------------------- /ui/CxDynObjs/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxDynObjs/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/StdAfx.h -------------------------------------------------------------------------------- /ui/CxDynObjs/TagPaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/TagPaser.h -------------------------------------------------------------------------------- /ui/CxDynObjs/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/resource.h -------------------------------------------------------------------------------- /ui/CxDynObjs/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxDynObjs/toolbar1.bmp -------------------------------------------------------------------------------- /ui/CxEvnExp/ActionParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/ActionParser.h -------------------------------------------------------------------------------- /ui/CxEvnExp/CxEvnExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/CxEvnExp.cpp -------------------------------------------------------------------------------- /ui/CxEvnExp/CxEvnExp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/CxEvnExp.def -------------------------------------------------------------------------------- /ui/CxEvnExp/CxEvnExp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/CxEvnExp.dsp -------------------------------------------------------------------------------- /ui/CxEvnExp/CxEvnExp.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/CxEvnExp.dsw -------------------------------------------------------------------------------- /ui/CxEvnExp/CxEvnExp.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/CxEvnExp.idl -------------------------------------------------------------------------------- /ui/CxEvnExp/CxEvnExp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/CxEvnExp.rc -------------------------------------------------------------------------------- /ui/CxEvnExp/CxEvnExpps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/CxEvnExpps.def -------------------------------------------------------------------------------- /ui/CxEvnExp/CxEvnExpps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/CxEvnExpps.mk -------------------------------------------------------------------------------- /ui/CxEvnExp/DataEntryDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/DataEntryDlg.h -------------------------------------------------------------------------------- /ui/CxEvnExp/EventExpert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/EventExpert.h -------------------------------------------------------------------------------- /ui/CxEvnExp/SimpleArray2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/SimpleArray2.h -------------------------------------------------------------------------------- /ui/CxEvnExp/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxEvnExp/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/StdAfx.h -------------------------------------------------------------------------------- /ui/CxEvnExp/TabPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/TabPage.h -------------------------------------------------------------------------------- /ui/CxEvnExp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxEvnExp/resource.h -------------------------------------------------------------------------------- /ui/CxExtObj/BlankPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/BlankPage.cpp -------------------------------------------------------------------------------- /ui/CxExtObj/BlankPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/BlankPage.h -------------------------------------------------------------------------------- /ui/CxExtObj/CxEventObj.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxEventObj.rgs -------------------------------------------------------------------------------- /ui/CxExtObj/CxExtObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxExtObj.cpp -------------------------------------------------------------------------------- /ui/CxExtObj/CxExtObj.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxExtObj.def -------------------------------------------------------------------------------- /ui/CxExtObj/CxExtObj.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxExtObj.dsp -------------------------------------------------------------------------------- /ui/CxExtObj/CxExtObj.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxExtObj.dsw -------------------------------------------------------------------------------- /ui/CxExtObj/CxExtObj.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxExtObj.idl -------------------------------------------------------------------------------- /ui/CxExtObj/CxExtObj.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxExtObj.rc -------------------------------------------------------------------------------- /ui/CxExtObj/CxExtObjps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxExtObjps.def -------------------------------------------------------------------------------- /ui/CxExtObj/CxExtObjps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/CxExtObjps.mk -------------------------------------------------------------------------------- /ui/CxExtObj/DataEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/DataEntry.cpp -------------------------------------------------------------------------------- /ui/CxExtObj/DataEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/DataEntry.h -------------------------------------------------------------------------------- /ui/CxExtObj/DataField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/DataField.cpp -------------------------------------------------------------------------------- /ui/CxExtObj/DataField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/DataField.h -------------------------------------------------------------------------------- /ui/CxExtObj/EventObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/EventObj.cpp -------------------------------------------------------------------------------- /ui/CxExtObj/EventObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/EventObj.h -------------------------------------------------------------------------------- /ui/CxExtObj/OEMSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/OEMSetup.cpp -------------------------------------------------------------------------------- /ui/CxExtObj/OEMSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/OEMSetup.h -------------------------------------------------------------------------------- /ui/CxExtObj/PopupList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/PopupList.h -------------------------------------------------------------------------------- /ui/CxExtObj/SQLBuildDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/SQLBuildDlg.h -------------------------------------------------------------------------------- /ui/CxExtObj/SQLBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/SQLBuilder.cpp -------------------------------------------------------------------------------- /ui/CxExtObj/SQLBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/SQLBuilder.h -------------------------------------------------------------------------------- /ui/CxExtObj/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxExtObj/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/StdAfx.h -------------------------------------------------------------------------------- /ui/CxExtObj/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxExtObj/resource.h -------------------------------------------------------------------------------- /ui/CxHmiObj/CxDispid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxDispid.h -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiMisc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiMisc.idl -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiObj.cpp -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiObj.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiObj.def -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiObj.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiObj.dsp -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiObj.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiObj.dsw -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiObj.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiObj.idl -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiObj.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiObj.rc -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiObjps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiObjps.def -------------------------------------------------------------------------------- /ui/CxHmiObj/CxHmiObjps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/CxHmiObjps.mk -------------------------------------------------------------------------------- /ui/CxHmiObj/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxHmiObj/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/StdAfx.h -------------------------------------------------------------------------------- /ui/CxHmiObj/cursor1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/cursor1.cur -------------------------------------------------------------------------------- /ui/CxHmiObj/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxHmiObj/resource.h -------------------------------------------------------------------------------- /ui/CxOle/CxCatProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxCatProp.h -------------------------------------------------------------------------------- /ui/CxOle/CxDispid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxDispid.h -------------------------------------------------------------------------------- /ui/CxOle/CxDrawObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxDrawObj.h -------------------------------------------------------------------------------- /ui/CxOle/CxDrawTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxDrawTool.h -------------------------------------------------------------------------------- /ui/CxOle/CxDynObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxDynObj.h -------------------------------------------------------------------------------- /ui/CxOle/CxHmiMisc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxHmiMisc.idl -------------------------------------------------------------------------------- /ui/CxOle/CxHmiObj.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxHmiObj.idl -------------------------------------------------------------------------------- /ui/CxOle/CxOle.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxOle.dsp -------------------------------------------------------------------------------- /ui/CxOle/CxOle.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxOle/CxOle.dsw -------------------------------------------------------------------------------- /ui/CxPropCtrl/PopupList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/PopupList.h -------------------------------------------------------------------------------- /ui/CxPropCtrl/PropCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/PropCtrl.cpp -------------------------------------------------------------------------------- /ui/CxPropCtrl/PropCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/PropCtrl.h -------------------------------------------------------------------------------- /ui/CxPropCtrl/PropGuids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/PropGuids.h -------------------------------------------------------------------------------- /ui/CxPropCtrl/Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/Property.cpp -------------------------------------------------------------------------------- /ui/CxPropCtrl/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/Property.h -------------------------------------------------------------------------------- /ui/CxPropCtrl/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxPropCtrl/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/StdAfx.h -------------------------------------------------------------------------------- /ui/CxPropCtrl/atlcoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/atlcoll.h -------------------------------------------------------------------------------- /ui/CxPropCtrl/property.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/property.bmp -------------------------------------------------------------------------------- /ui/CxPropCtrl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/resource.h -------------------------------------------------------------------------------- /ui/CxPropCtrl/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropCtrl/toolbar1.bmp -------------------------------------------------------------------------------- /ui/CxPropSheet/PropPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropSheet/PropPage.h -------------------------------------------------------------------------------- /ui/CxPropSheet/PropSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropSheet/PropSheet.h -------------------------------------------------------------------------------- /ui/CxPropSheet/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropSheet/ReadMe.txt -------------------------------------------------------------------------------- /ui/CxPropSheet/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropSheet/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxPropSheet/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropSheet/StdAfx.h -------------------------------------------------------------------------------- /ui/CxPropSheet/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropSheet/bitmap1.bmp -------------------------------------------------------------------------------- /ui/CxPropSheet/comhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropSheet/comhelp.h -------------------------------------------------------------------------------- /ui/CxPropSheet/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropSheet/resource.h -------------------------------------------------------------------------------- /ui/CxPropVal/CxPropVal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/CxPropVal.cpp -------------------------------------------------------------------------------- /ui/CxPropVal/CxPropVal.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/CxPropVal.def -------------------------------------------------------------------------------- /ui/CxPropVal/CxPropVal.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/CxPropVal.dsp -------------------------------------------------------------------------------- /ui/CxPropVal/CxPropVal.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/CxPropVal.dsw -------------------------------------------------------------------------------- /ui/CxPropVal/CxPropVal.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/CxPropVal.idl -------------------------------------------------------------------------------- /ui/CxPropVal/CxPropVal.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/CxPropVal.rc -------------------------------------------------------------------------------- /ui/CxPropVal/CxPropValCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/CxPropValCP.h -------------------------------------------------------------------------------- /ui/CxPropVal/PopupList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/PopupList.h -------------------------------------------------------------------------------- /ui/CxPropVal/PropVal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/PropVal.cpp -------------------------------------------------------------------------------- /ui/CxPropVal/PropVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/PropVal.h -------------------------------------------------------------------------------- /ui/CxPropVal/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxPropVal/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/StdAfx.h -------------------------------------------------------------------------------- /ui/CxPropVal/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/bitmap1.bmp -------------------------------------------------------------------------------- /ui/CxPropVal/cxproper.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/cxproper.bmp -------------------------------------------------------------------------------- /ui/CxPropVal/res/arrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/res/arrow.bmp -------------------------------------------------------------------------------- /ui/CxPropVal/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxPropVal/resource.h -------------------------------------------------------------------------------- /ui/CxRun/CxRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/CxRun.cpp -------------------------------------------------------------------------------- /ui/CxRun/CxRun.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/CxRun.dsp -------------------------------------------------------------------------------- /ui/CxRun/CxRun.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/CxRun.dsw -------------------------------------------------------------------------------- /ui/CxRun/CxRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/CxRun.h -------------------------------------------------------------------------------- /ui/CxRun/CxRun.odl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/CxRun.odl -------------------------------------------------------------------------------- /ui/CxRun/CxRun.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/CxRun.rc -------------------------------------------------------------------------------- /ui/CxRun/CxRun.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/CxRun.reg -------------------------------------------------------------------------------- /ui/CxRun/DcomErrorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/DcomErrorDlg.cpp -------------------------------------------------------------------------------- /ui/CxRun/DcomErrorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/DcomErrorDlg.h -------------------------------------------------------------------------------- /ui/CxRun/DocManager2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/DocManager2.cpp -------------------------------------------------------------------------------- /ui/CxRun/DocManager2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/DocManager2.h -------------------------------------------------------------------------------- /ui/CxRun/LocalServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/LocalServer.cpp -------------------------------------------------------------------------------- /ui/CxRun/LocalServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/LocalServer.h -------------------------------------------------------------------------------- /ui/CxRun/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/MainFrm.cpp -------------------------------------------------------------------------------- /ui/CxRun/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/MainFrm.h -------------------------------------------------------------------------------- /ui/CxRun/NotifyWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/NotifyWnd.h -------------------------------------------------------------------------------- /ui/CxRun/OEMSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/OEMSetup.cpp -------------------------------------------------------------------------------- /ui/CxRun/OEMSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/OEMSetup.h -------------------------------------------------------------------------------- /ui/CxRun/PageGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/PageGen.cpp -------------------------------------------------------------------------------- /ui/CxRun/PageGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/PageGen.h -------------------------------------------------------------------------------- /ui/CxRun/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/ReadMe.txt -------------------------------------------------------------------------------- /ui/CxRun/RunDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/RunDoc.cpp -------------------------------------------------------------------------------- /ui/CxRun/RunDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/RunDoc.h -------------------------------------------------------------------------------- /ui/CxRun/RunView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/RunView.cpp -------------------------------------------------------------------------------- /ui/CxRun/RunView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/RunView.h -------------------------------------------------------------------------------- /ui/CxRun/ServerNotifyWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/ServerNotifyWnd.h -------------------------------------------------------------------------------- /ui/CxRun/Service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/Service.cpp -------------------------------------------------------------------------------- /ui/CxRun/Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/Service.h -------------------------------------------------------------------------------- /ui/CxRun/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/Splash.cpp -------------------------------------------------------------------------------- /ui/CxRun/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/Splash.h -------------------------------------------------------------------------------- /ui/CxRun/Splsh16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/Splsh16.bmp -------------------------------------------------------------------------------- /ui/CxRun/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxRun/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/StdAfx.h -------------------------------------------------------------------------------- /ui/CxRun/res/CxRun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/res/CxRun.ico -------------------------------------------------------------------------------- /ui/CxRun/res/CxRun.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/res/CxRun.rc2 -------------------------------------------------------------------------------- /ui/CxRun/res/RunDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/res/RunDoc.ico -------------------------------------------------------------------------------- /ui/CxRun/res/warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/res/warning.ico -------------------------------------------------------------------------------- /ui/CxRun/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRun/resource.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/ActivDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ActivDoc.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/ActivDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ActivDoc.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/BitmapDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/BitmapDoc.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/BitmapDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/BitmapDoc.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/BitmapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/BitmapView.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/CacheFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CacheFile.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/CacheFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CacheFile.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/CeXDib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CeXDib.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/CeXDib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CeXDib.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/CtrlItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CtrlItem.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/CtrlItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CtrlItem.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/CtrlObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CtrlObj.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/CtrlObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CtrlObj.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/CxRunCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CxRunCtrl.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/CxRunCtrl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CxRunCtrl.def -------------------------------------------------------------------------------- /ui/CxRunCtrl/CxRunCtrl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CxRunCtrl.dsp -------------------------------------------------------------------------------- /ui/CxRunCtrl/CxRunCtrl.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CxRunCtrl.dsw -------------------------------------------------------------------------------- /ui/CxRunCtrl/CxRunCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CxRunCtrl.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/CxRunCtrl.odl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CxRunCtrl.odl -------------------------------------------------------------------------------- /ui/CxRunCtrl/CxRunCtrl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/CxRunCtrl.rc -------------------------------------------------------------------------------- /ui/CxRunCtrl/DevDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/DevDoc.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/DevDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/DevDoc.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/DevObjDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/DevObjDoc.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/DevObjDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/DevObjDoc.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/DrawObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/DrawObj.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/DrawObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/DrawObj.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/EnumHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/EnumHelper.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/EnumVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/EnumVariant.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/FormDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/FormDoc.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/FormDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/FormDoc.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/FormObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/FormObj.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/FormObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/FormObj.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/FormScrEng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/FormScrEng.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/GroupObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/GroupObj.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/GroupObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/GroupObj.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/HELPERS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/HELPERS.H -------------------------------------------------------------------------------- /ui/CxRunCtrl/KeyBoardDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/KeyBoardDlg.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/LoginDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/LoginDlg.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/LoginDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/LoginDlg.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/PPTooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/PPTooltip.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/PPTooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/PPTooltip.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/PopupFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/PopupFrame.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/PrintFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/PrintFrame.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/PrintView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/PrintView.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/PrintView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/PrintView.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ReadMe.txt -------------------------------------------------------------------------------- /ui/CxRunCtrl/RectF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RectF.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/RectF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RectF.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/ReportDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ReportDoc.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/ReportDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ReportDoc.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/ReportObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ReportObj.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/ReportObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ReportObj.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/ReportView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ReportView.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/ReturnValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/ReturnValue.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunCtrl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunCtrl.bmp -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunCtrl.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunCtrl.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunCtrlPpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunCtrlPpg.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunFrame.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunFrame.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunInc.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunObj.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunObj.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunView.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/RunView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/RunView.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/StdAfx.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/SymbolObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/SymbolObj.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/SymbolObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/SymbolObj.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/UserItemDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/UserItemDlg.h -------------------------------------------------------------------------------- /ui/CxRunCtrl/VARUTILS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/VARUTILS.H -------------------------------------------------------------------------------- /ui/CxRunCtrl/Varutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/Varutils.cpp -------------------------------------------------------------------------------- /ui/CxRunCtrl/res/hand1.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/res/hand1.cur -------------------------------------------------------------------------------- /ui/CxRunCtrl/res/hand2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/res/hand2.cur -------------------------------------------------------------------------------- /ui/CxRunCtrl/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/res/icon1.ico -------------------------------------------------------------------------------- /ui/CxRunCtrl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxRunCtrl/resource.h -------------------------------------------------------------------------------- /ui/CxSCBar/CxSCBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/CxSCBar.cpp -------------------------------------------------------------------------------- /ui/CxSCBar/CxSCBar.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/CxSCBar.def -------------------------------------------------------------------------------- /ui/CxSCBar/CxSCBar.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/CxSCBar.dsp -------------------------------------------------------------------------------- /ui/CxSCBar/CxSCBar.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/CxSCBar.dsw -------------------------------------------------------------------------------- /ui/CxSCBar/CxSCBar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/CxSCBar.rc -------------------------------------------------------------------------------- /ui/CxSCBar/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/ReadMe.txt -------------------------------------------------------------------------------- /ui/CxSCBar/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/Resource.h -------------------------------------------------------------------------------- /ui/CxSCBar/SCBEXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/SCBEXT.h -------------------------------------------------------------------------------- /ui/CxSCBar/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxSCBar/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/StdAfx.h -------------------------------------------------------------------------------- /ui/CxSCBar/TabBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/TabBar.cpp -------------------------------------------------------------------------------- /ui/CxSCBar/TabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/TabBar.h -------------------------------------------------------------------------------- /ui/CxSCBar/res/CxSCBar.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/res/CxSCBar.rc2 -------------------------------------------------------------------------------- /ui/CxSCBar/sizecbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/sizecbar.cpp -------------------------------------------------------------------------------- /ui/CxSCBar/sizecbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxSCBar/sizecbar.h -------------------------------------------------------------------------------- /ui/CxScripCrt/ExprCrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/ExprCrt.cpp -------------------------------------------------------------------------------- /ui/CxScripCrt/ExprCrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/ExprCrt.h -------------------------------------------------------------------------------- /ui/CxScripCrt/GoLineDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/GoLineDlg.h -------------------------------------------------------------------------------- /ui/CxScripCrt/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/MainFrame.h -------------------------------------------------------------------------------- /ui/CxScripCrt/OEMSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/OEMSetup.cpp -------------------------------------------------------------------------------- /ui/CxScripCrt/OEMSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/OEMSetup.h -------------------------------------------------------------------------------- /ui/CxScripCrt/OpcServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/OpcServer.h -------------------------------------------------------------------------------- /ui/CxScripCrt/ScripCrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/ScripCrt.cpp -------------------------------------------------------------------------------- /ui/CxScripCrt/ScripCrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/ScripCrt.h -------------------------------------------------------------------------------- /ui/CxScripCrt/Scripter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/Scripter.cpp -------------------------------------------------------------------------------- /ui/CxScripCrt/Scripter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/Scripter.h -------------------------------------------------------------------------------- /ui/CxScripCrt/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxScripCrt/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/StdAfx.h -------------------------------------------------------------------------------- /ui/CxScripCrt/SymbolView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/SymbolView.h -------------------------------------------------------------------------------- /ui/CxScripCrt/TreePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/TreePage.cpp -------------------------------------------------------------------------------- /ui/CxScripCrt/TreePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/TreePage.h -------------------------------------------------------------------------------- /ui/CxScripCrt/atlcoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/atlcoll.h -------------------------------------------------------------------------------- /ui/CxScripCrt/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/bitmap1.bmp -------------------------------------------------------------------------------- /ui/CxScripCrt/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/bmp00001.bmp -------------------------------------------------------------------------------- /ui/CxScripCrt/cxscript.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/cxscript.bmp -------------------------------------------------------------------------------- /ui/CxScripCrt/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/icon1.ico -------------------------------------------------------------------------------- /ui/CxScripCrt/method.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/method.ico -------------------------------------------------------------------------------- /ui/CxScripCrt/method1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/method1.ico -------------------------------------------------------------------------------- /ui/CxScripCrt/prop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/prop.ico -------------------------------------------------------------------------------- /ui/CxScripCrt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/resource.h -------------------------------------------------------------------------------- /ui/CxScripCrt/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxScripCrt/toolbar1.bmp -------------------------------------------------------------------------------- /ui/CxTagPick/CxTagPick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/CxTagPick.cpp -------------------------------------------------------------------------------- /ui/CxTagPick/CxTagPick.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/CxTagPick.def -------------------------------------------------------------------------------- /ui/CxTagPick/CxTagPick.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/CxTagPick.dsp -------------------------------------------------------------------------------- /ui/CxTagPick/CxTagPick.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/CxTagPick.dsw -------------------------------------------------------------------------------- /ui/CxTagPick/CxTagPick.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/CxTagPick.idl -------------------------------------------------------------------------------- /ui/CxTagPick/CxTagPick.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/CxTagPick.rc -------------------------------------------------------------------------------- /ui/CxTagPick/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/Node.cpp -------------------------------------------------------------------------------- /ui/CxTagPick/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/Node.h -------------------------------------------------------------------------------- /ui/CxTagPick/OEMSetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/OEMSetup.cpp -------------------------------------------------------------------------------- /ui/CxTagPick/OEMSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/OEMSetup.h -------------------------------------------------------------------------------- /ui/CxTagPick/RegProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/RegProfile.h -------------------------------------------------------------------------------- /ui/CxTagPick/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/StdAfx.cpp -------------------------------------------------------------------------------- /ui/CxTagPick/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/StdAfx.h -------------------------------------------------------------------------------- /ui/CxTagPick/TagPick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/TagPick.cpp -------------------------------------------------------------------------------- /ui/CxTagPick/TagPick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/TagPick.h -------------------------------------------------------------------------------- /ui/CxTagPick/TagPickCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/TagPickCtrl.h -------------------------------------------------------------------------------- /ui/CxTagPick/TagPickDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/TagPickDlg.h -------------------------------------------------------------------------------- /ui/CxTagPick/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/bitmap1.bmp -------------------------------------------------------------------------------- /ui/CxTagPick/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/bmp00001.bmp -------------------------------------------------------------------------------- /ui/CxTagPick/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/bmp00002.bmp -------------------------------------------------------------------------------- /ui/CxTagPick/cxdatman.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/cxdatman.bmp -------------------------------------------------------------------------------- /ui/CxTagPick/cxtagpic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/cxtagpic.bmp -------------------------------------------------------------------------------- /ui/CxTagPick/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/CxTagPick/resource.h -------------------------------------------------------------------------------- /ui/WinLockDll/InjDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/WinLockDll/InjDll.c -------------------------------------------------------------------------------- /ui/WinLockDll/Inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/WinLockDll/Inject.c -------------------------------------------------------------------------------- /ui/WinLockDll/Inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/WinLockDll/Inject.h -------------------------------------------------------------------------------- /ui/WinLockDll/WinLockDLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/WinLockDll/WinLockDLL.c -------------------------------------------------------------------------------- /ui/WinLockDll/WinLockDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/WinLockDll/WinLockDll.h -------------------------------------------------------------------------------- /ui/WinLockDll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/WinLockDll/resource.h -------------------------------------------------------------------------------- /ui/scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/License.txt -------------------------------------------------------------------------------- /ui/scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/README -------------------------------------------------------------------------------- /ui/scintilla/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/delbin.bat -------------------------------------------------------------------------------- /ui/scintilla/delcvs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/delcvs.bat -------------------------------------------------------------------------------- /ui/scintilla/doc/Lexer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/doc/Lexer.txt -------------------------------------------------------------------------------- /ui/scintilla/gtk/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/gtk/deps.mak -------------------------------------------------------------------------------- /ui/scintilla/gtk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/gtk/makefile -------------------------------------------------------------------------------- /ui/scintilla/src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/CallTip.h -------------------------------------------------------------------------------- /ui/scintilla/src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/Editor.h -------------------------------------------------------------------------------- /ui/scintilla/src/KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/KeyMap.h -------------------------------------------------------------------------------- /ui/scintilla/src/LexGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/LexGen.py -------------------------------------------------------------------------------- /ui/scintilla/src/LexVB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/LexVB.cxx -------------------------------------------------------------------------------- /ui/scintilla/src/SVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/SVector.h -------------------------------------------------------------------------------- /ui/scintilla/src/Style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/Style.cxx -------------------------------------------------------------------------------- /ui/scintilla/src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/Style.h -------------------------------------------------------------------------------- /ui/scintilla/src/XPM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/XPM.cxx -------------------------------------------------------------------------------- /ui/scintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/src/XPM.h -------------------------------------------------------------------------------- /ui/scintilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/tgzsrc -------------------------------------------------------------------------------- /ui/scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 153 -------------------------------------------------------------------------------- /ui/scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /ui/scintilla/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qinyong99/SuperCxHMI/HEAD/ui/scintilla/zipsrc.bat --------------------------------------------------------------------------------