├── .gitattributes ├── .gitignore ├── README.md └── ShCAD ├── ShCAD.sln └── ShCAD ├── ActionHandler ├── DecoratorAction │ ├── ShDecoratorAction.cpp │ ├── ShDecoratorAction.h │ ├── ShDecoratorDefaultAction.cpp │ ├── ShDecoratorDefaultAction.h │ ├── ShDisposableSnapAction.cpp │ ├── ShDisposableSnapAction.h │ ├── ShOrthogonalAction.cpp │ ├── ShOrthogonalAction.h │ └── UnusualDecoratorAction │ │ ├── ShDisposableExtensionSnapAction.cpp │ │ ├── ShDisposableExtensionSnapAction.h │ │ ├── ShDisposablePerSnapLineAction.cpp │ │ └── ShDisposablePerSnapLineAction.h ├── DrawAction │ ├── DrawDimAction │ │ ├── ShDrawDimAction.cpp │ │ ├── ShDrawDimAction.h │ │ ├── ShDrawDimAlignedAction.cpp │ │ ├── ShDrawDimAlignedAction.h │ │ ├── ShDrawDimAngularAction.cpp │ │ ├── ShDrawDimAngularAction.h │ │ ├── ShDrawDimArcLengthAction.cpp │ │ ├── ShDrawDimArcLengthAction.h │ │ ├── ShDrawDimDiameterAction.cpp │ │ ├── ShDrawDimDiameterAction.h │ │ ├── ShDrawDimLinearAction.cpp │ │ ├── ShDrawDimLinearAction.h │ │ ├── ShDrawDimRadiusAction.cpp │ │ └── ShDrawDimRadiusAction.h │ ├── ShDrawAction.cpp │ ├── ShDrawAction.h │ ├── ShDrawArcAction.cpp │ ├── ShDrawArcAction.h │ ├── ShDrawCircleAction.cpp │ ├── ShDrawCircleAction.h │ ├── ShDrawLineAction.cpp │ ├── ShDrawLineAction.h │ ├── ShDrawPointAction.cpp │ ├── ShDrawPointAction.h │ ├── ShDrawXLineAction.cpp │ └── ShDrawXLineAction.h ├── ModifyAction │ ├── ShModifyAction.cpp │ ├── ShModifyAction.h │ ├── ShModifyCopyAction.cpp │ ├── ShModifyCopyAction.h │ ├── ShModifyEraseAction.cpp │ ├── ShModifyEraseAction.h │ ├── ShModifyExtendAction.cpp │ ├── ShModifyExtendAction.h │ ├── ShModifyMirrorAction.cpp │ ├── ShModifyMirrorAction.h │ ├── ShModifyMoveAction.cpp │ ├── ShModifyMoveAction.h │ ├── ShModifyOffsetAction.cpp │ ├── ShModifyOffsetAction.h │ ├── ShModifyRotateAction.cpp │ ├── ShModifyRotateAction.h │ ├── ShModifyStretchAction.cpp │ ├── ShModifyStretchAction.h │ ├── ShModifyTrimAction.cpp │ └── ShModifyTrimAction.h ├── Private │ ├── ShActionData.cpp │ ├── ShActionData.h │ ├── ShActionHandlerFactory.cpp │ ├── ShActionHandlerFactory.h │ ├── ShActionTriggerFailureReason.h │ ├── ShActionTypeConverter.cpp │ ├── ShActionTypeConverter.h │ ├── ShChangeActionStrategy.cpp │ ├── ShChangeActionStrategy.h │ ├── ShDecorateActionStrategy.cpp │ ├── ShDecorateActionStrategy.h │ ├── ShDecoratorActionFactory.cpp │ └── ShDecoratorActionFactory.h ├── ShActionHandler.cpp ├── ShActionHandler.h ├── ShActionHandlerProxy.cpp ├── ShActionHandlerProxy.h ├── ShDefaultAction.cpp ├── ShDefaultAction.h ├── ShSelectPlotAreaAction.cpp ├── ShSelectPlotAreaAction.h └── TemporaryAction │ ├── ShDragSelectAction.cpp │ ├── ShDragSelectAction.h │ ├── ShPanAction.cpp │ ├── ShPanAction.h │ ├── ShTemporaryAction.cpp │ ├── ShTemporaryAction.h │ ├── ShTemporaryMoveAxisAction.cpp │ ├── ShTemporaryMoveAxisAction.h │ ├── ShTemporaryStretchAction.cpp │ └── ShTemporaryStretchAction.h ├── Base ├── ShCursorShape.cpp ├── ShCursorShape.h ├── ShDimensionStyle.cpp ├── ShDimensionStyle.h ├── ShDimensionStyleTable.cpp ├── ShDimensionStyleTable.h ├── ShDraftSetting.cpp ├── ShDraftSetting.h ├── ShGlobal.cpp ├── ShGlobal.h ├── ShLastBasePoint.cpp ├── ShLastBasePoint.h ├── ShLayer.cpp ├── ShLayer.h ├── ShLayerTable.cpp ├── ShLayerTable.h ├── ShMath.cpp ├── ShMath.h ├── ShPointStyle.cpp ├── ShPointStyle.h ├── ShSingleton.h └── ShVariable.h ├── Chain of Responsibility ├── ShCADRequestFactory.cpp ├── ShCADRequestFactory.h ├── ShCADRequestStrategy.cpp ├── ShCADRequestStrategy.h ├── ShChain.cpp ├── ShChain.h ├── ShRequest.cpp └── ShRequest.h ├── Command ├── ShAvailableCommands.cpp ├── ShAvailableCommands.h ├── ShCommand.cpp ├── ShCommand.h ├── ShCommandFlyWeight.cpp ├── ShCommandFlyWeight.h ├── ShCommandType.h └── ShCustomCommand.h ├── Data ├── ShAvailableDraft.cpp ├── ShAvailableDraft.h ├── ShColor.cpp ├── ShColor.h ├── ShColorList.cpp ├── ShColorList.h ├── ShCommandLog.cpp ├── ShCommandLog.h ├── ShDraftData.cpp ├── ShDraftData.h ├── ShDrawBuffer.cpp ├── ShDrawBuffer.h ├── ShLineStyle.cpp ├── ShLineStyle.h ├── ShLineStyleList.cpp ├── ShLineStyleList.h ├── ShObjectSnapData.cpp ├── ShObjectSnapData.h ├── ShPoint3d.cpp ├── ShPoint3d.h ├── ShPropertyData.cpp ├── ShPropertyData.h ├── ShScrollPosition.cpp └── ShScrollPosition.h ├── Entity ├── Composite │ ├── Dim │ │ ├── ShDim.cpp │ │ ├── ShDim.h │ │ ├── ShDimAligned.cpp │ │ ├── ShDimAligned.h │ │ ├── ShDimAngular.cpp │ │ ├── ShDimAngular.h │ │ ├── ShDimArcLength.cpp │ │ ├── ShDimArcLength.h │ │ ├── ShDimDiameter.cpp │ │ ├── ShDimDiameter.h │ │ ├── ShDimLinear.cpp │ │ ├── ShDimLinear.h │ │ ├── ShDimRadius.cpp │ │ └── ShDimRadius.h │ ├── ShComposite.cpp │ ├── ShComposite.h │ ├── ShEntityTable.cpp │ ├── ShEntityTable.h │ ├── ShPreview.cpp │ ├── ShPreview.h │ ├── ShSelectedEntities.cpp │ └── ShSelectedEntities.h ├── Leaf │ ├── ShArc.cpp │ ├── ShArc.h │ ├── ShCircle.cpp │ ├── ShCircle.h │ ├── ShConstructionLine.cpp │ ├── ShConstructionLine.h │ ├── ShDot.cpp │ ├── ShDot.h │ ├── ShLeaf.cpp │ ├── ShLeaf.h │ ├── ShLine.cpp │ ├── ShLine.h │ ├── ShPoint.cpp │ ├── ShPoint.h │ ├── ShRubberBand.cpp │ └── ShRubberBand.h ├── Private │ ├── Algorithm │ │ ├── ShClosestIntersectionPointFinder.cpp │ │ ├── ShClosestIntersectionPointFinder.h │ │ ├── ShDrawer.cpp │ │ ├── ShDrawer.h │ │ ├── ShExtender.cpp │ │ ├── ShExtender.h │ │ ├── ShFinder.cpp │ │ ├── ShFinder.h │ │ ├── ShFootOfPerpendicularVisitor.cpp │ │ ├── ShFootOfPerpendicularVisitor.h │ │ ├── ShLineBothPerpendicularVisitor.cpp │ │ ├── ShLineBothPerpendicularVisitor.h │ │ ├── ShMirror.cpp │ │ ├── ShMirror.h │ │ ├── ShMover.cpp │ │ ├── ShMover.h │ │ ├── ShOffsetVisitor.cpp │ │ ├── ShOffsetVisitor.h │ │ ├── ShPloter.cpp │ │ ├── ShPloter.h │ │ ├── ShRotater.cpp │ │ ├── ShRotater.h │ │ ├── ShSnapPointFinder.cpp │ │ ├── ShSnapPointFinder.h │ │ ├── ShStretchVisitor.cpp │ │ ├── ShStretchVisitor.h │ │ ├── ShTrimer.cpp │ │ ├── ShTrimer.h │ │ ├── ShVertexFinder.cpp │ │ ├── ShVertexFinder.h │ │ ├── ShVisitor.cpp │ │ └── ShVisitor.h │ ├── ShEntityData.cpp │ ├── ShEntityData.h │ ├── ShSearchEntityStrategy.cpp │ └── ShSearchEntityStrategy.h ├── ShEntity.cpp └── ShEntity.h ├── Event ├── ShCADWidgetEventFilter.cpp ├── ShCADWidgetEventFilter.h ├── ShCommandDockEventFilter.cpp ├── ShCommandDockEventFilter.h ├── ShHomeTabEventFilter.cpp ├── ShHomeTabEventFilter.h ├── ShNotifyEvent.cpp ├── ShNotifyEvent.h ├── ShObserver.h ├── ShStatusBarEventFilter.cpp ├── ShStatusBarEventFilter.h └── ToolBarEventFilter │ ├── ShDimensionToolBarEventFilter.cpp │ ├── ShDimensionToolBarEventFilter.h │ ├── ShLayerToolBarEventFilter.cpp │ ├── ShLayerToolBarEventFilter.h │ ├── ShPropertyToolBarEventFilter.cpp │ ├── ShPropertyToolBarEventFilter.h │ ├── ShQuickAccessToolBarEventFilter.cpp │ └── ShQuickAccessToolBarEventFilter.h ├── GeneratedFiles └── qrc_ShCAD.cpp ├── Icon.ico ├── Image ├── CurrentLayer.png ├── Dimension │ ├── DimAligned.png │ ├── DimAngular.png │ ├── DimArcLength.png │ ├── DimDiameter.png │ ├── DimLinear.png │ ├── DimRadius.png │ └── DimStyleSetting.png ├── Draw │ ├── Arc │ │ ├── 3Point.png │ │ ├── Center-Start-Angle.png │ │ ├── Center-Start-End.png │ │ ├── Center-Start-Length.png │ │ ├── Start-Center-Angle.png │ │ ├── Start-Center-End.png │ │ ├── Start-Center-Length.png │ │ ├── Start-End-Angle.png │ │ ├── Start-End-Direction.png │ │ └── Start-End-Radius.png │ ├── Circle │ │ ├── 2Point.png │ │ ├── 3Point.png │ │ ├── Center-Diameter.png │ │ └── Center-Radius.png │ ├── ConstructionLine.png │ ├── Line.png │ ├── Point.png │ └── PolyLine │ │ ├── PolyLine.png │ │ ├── Polygon.png │ │ └── Rectangle.png ├── File │ ├── New.png │ ├── Preview.png │ └── Print.png ├── LayerTurnOff.png ├── LayerTurnOn.png ├── Modify │ ├── Copy.png │ ├── Erase.png │ ├── Extend.png │ ├── Mirror.png │ ├── Move.png │ ├── Offset.png │ ├── Rotate.png │ ├── Scale.png │ ├── Stretch.png │ └── Trim.png ├── Orthogonal.png ├── Redo.png ├── SelectColor.png ├── ShCADIcon.png ├── Snap │ ├── Apparent intersection point.png │ ├── Center point.png │ ├── End point.png │ ├── Extension point.png │ ├── Intersection point.png │ ├── Mid point.png │ ├── Nearest.png │ ├── Node.png │ ├── Perpendicular.png │ ├── Quadrant point.png │ ├── SnapModeOnOff.png │ ├── Tangent point.png │ └── Temporary track point.png ├── Splash.png └── Undo.png ├── Interface ├── Dialog │ ├── ShLayerDialog.cpp │ ├── ShLayerDialog.h │ ├── ShPlotDialog.cpp │ ├── ShPlotDialog.h │ ├── ShPlotPreviewDialog.cpp │ ├── ShPlotPreviewDialog.h │ ├── ShStartupDialog.cpp │ └── ShStartupDialog.h ├── Dock │ ├── ShAbstractDock.cpp │ ├── ShAbstractDock.h │ ├── ShCommandDock.cpp │ └── ShCommandDock.h ├── Item │ ├── ShButton.cpp │ ├── ShButton.h │ ├── ShColorComboBox.cpp │ ├── ShColorComboBox.h │ ├── ShDimensionStyleComboBox.cpp │ ├── ShDimensionStyleComboBox.h │ ├── ShIcon.cpp │ ├── ShIcon.h │ ├── ShLayerComboBox.cpp │ ├── ShLayerComboBox.h │ ├── ShLineStyleComboBox.cpp │ └── ShLineStyleComboBox.h ├── Menu │ ├── ShMenu.cpp │ ├── ShMenu.h │ ├── ShMenuBar.cpp │ └── ShMenuBar.h ├── Private │ ├── ShAxis.cpp │ ├── ShAxis.h │ ├── ShCADWidgetDrawStrategy.cpp │ ├── ShCADWidgetDrawStrategy.h │ ├── ShCADWidgetDrawStrategyFactory.cpp │ ├── ShCADWidgetDrawStrategyFactory.h │ ├── ShCADWidgetImp.cpp │ ├── ShCADWidgetImp.h │ ├── ShRibbonButtonStragety.cpp │ └── ShRibbonButtonStrategy.h ├── Ribbon │ ├── Button │ │ ├── ShRibbonButton.cpp │ │ └── ShRibbonButton.h │ ├── ShHomeTab.cpp │ ├── ShHomeTab.h │ ├── ShRibbon.cpp │ ├── ShRibbon.h │ ├── ShRibbonMenu.cpp │ └── ShRibbonMenu.h ├── ShCAD.cpp ├── ShCAD.h ├── ShCADWidget.cpp ├── ShCADWidget.h ├── StatusBar │ ├── ShStatusBar.cpp │ └── ShStatusBar.h └── ToolBar │ ├── ShAbstractToolBar.cpp │ ├── ShAbstractToolBar.h │ ├── ShDimensionToolBar.cpp │ ├── ShDimensionToolBar.h │ ├── ShDrawToolBar.cpp │ ├── ShDrawToolBar.h │ ├── ShLayerToolBar.cpp │ ├── ShLayerToolBar.h │ ├── ShModifyToolBar.cpp │ ├── ShModifyToolBar.h │ ├── ShObjectSnapToolBar.cpp │ ├── ShObjectSnapToolBar.h │ ├── ShPropertyToolBar.cpp │ ├── ShPropertyToolBar.h │ ├── ShQuickAccessToolBar.cpp │ ├── ShQuickAccessToolBar.h │ ├── ShToolBarContainer.cpp │ └── ShToolBarContainer.h ├── KeyHandler ├── ShCustomKey.h ├── ShKey.cpp ├── ShKey.h ├── ShKeyFlyWeight.cpp ├── ShKeyFlyWeight.h ├── ShKeyHandler.cpp ├── ShKeyHandler.h └── ShKeyType.h ├── Language ├── English │ ├── command.ini │ └── interface.ini └── Korean │ ├── command.ini │ └── interface.ini ├── Manager ├── ShCADWidgetManager.cpp ├── ShCADWidgetManager.h ├── ShChangeManager.cpp ├── ShChangeManager.h ├── ShCommandLogManager.cpp ├── ShCommandLogManager.h ├── ShLanguageManager.cpp ├── ShLanguageManager.h ├── ShPlotManager.cpp └── ShPlotManager.h ├── ObjectSnap ├── ShObjectSnapCommandFactory.cpp └── ShObjectSnapCommandFactory.h ├── ShCAD.qrc ├── ShCAD.rc ├── ShCAD.vcxproj ├── ShCAD.vcxproj.filters ├── UnRedo ├── ShCADWidgetTransaction.cpp ├── ShCADWidgetTransaction.h ├── ShDimensionStyleTransaction.cpp ├── ShDimensionStyleTransaction.h ├── ShEntityTransaction.cpp ├── ShEntityTransaction.h ├── ShLayerTransaction.cpp ├── ShLayerTransaction.h ├── ShPanTransaction.cpp ├── ShPanTransaction.h ├── ShTransaction.cpp ├── ShTransaction.h ├── ShTransactionStack.cpp └── ShTransactionStack.h ├── Utility ├── ShColorConverter.cpp ├── ShColorConverter.h ├── ShLineStyleConverter.cpp └── ShLineStyleConverter.h ├── main.cpp ├── memory_leak_report.txt └── resource.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/README.md -------------------------------------------------------------------------------- /ShCAD/ShCAD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD.sln -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDecoratorAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDecoratorAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDecoratorAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDecoratorAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDecoratorDefaultAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDecoratorDefaultAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDecoratorDefaultAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDecoratorDefaultAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDisposableSnapAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDisposableSnapAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDisposableSnapAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/ShDisposableSnapAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/ShOrthogonalAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/ShOrthogonalAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/ShOrthogonalAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/ShOrthogonalAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/UnusualDecoratorAction/ShDisposableExtensionSnapAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/UnusualDecoratorAction/ShDisposableExtensionSnapAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/UnusualDecoratorAction/ShDisposableExtensionSnapAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/UnusualDecoratorAction/ShDisposableExtensionSnapAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/UnusualDecoratorAction/ShDisposablePerSnapLineAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/UnusualDecoratorAction/ShDisposablePerSnapLineAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DecoratorAction/UnusualDecoratorAction/ShDisposablePerSnapLineAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DecoratorAction/UnusualDecoratorAction/ShDisposablePerSnapLineAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAlignedAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAlignedAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAlignedAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAlignedAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAngularAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAngularAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAngularAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimAngularAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimArcLengthAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimArcLengthAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimArcLengthAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimArcLengthAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimDiameterAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimDiameterAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimDiameterAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimDiameterAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimLinearAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimLinearAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimLinearAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimLinearAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimRadiusAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimRadiusAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimRadiusAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/DrawDimAction/ShDrawDimRadiusAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawArcAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawArcAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawArcAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawArcAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawCircleAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawCircleAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawCircleAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawCircleAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawLineAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawLineAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawLineAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawLineAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawPointAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawPointAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawPointAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawPointAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawXLineAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawXLineAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawXLineAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/DrawAction/ShDrawXLineAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyCopyAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyCopyAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyCopyAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyCopyAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyEraseAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyEraseAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyEraseAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyEraseAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyExtendAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyExtendAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyExtendAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyExtendAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyMirrorAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyMirrorAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyMirrorAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyMirrorAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyMoveAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyMoveAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyMoveAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyMoveAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyOffsetAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyOffsetAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyOffsetAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyOffsetAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyRotateAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyRotateAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyRotateAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyRotateAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyStretchAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyStretchAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyStretchAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyStretchAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyTrimAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyTrimAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyTrimAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ModifyAction/ShModifyTrimAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShActionData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShActionData.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShActionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShActionData.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShActionHandlerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShActionHandlerFactory.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShActionHandlerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShActionHandlerFactory.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShActionTriggerFailureReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShActionTriggerFailureReason.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShActionTypeConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShActionTypeConverter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShActionTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShActionTypeConverter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShChangeActionStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShChangeActionStrategy.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShChangeActionStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShChangeActionStrategy.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShDecorateActionStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShDecorateActionStrategy.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShDecorateActionStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShDecorateActionStrategy.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShDecoratorActionFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShDecoratorActionFactory.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/Private/ShDecoratorActionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/Private/ShDecoratorActionFactory.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ShActionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ShActionHandler.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ShActionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ShActionHandler.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ShActionHandlerProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ShActionHandlerProxy.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ShActionHandlerProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ShActionHandlerProxy.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ShDefaultAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ShDefaultAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ShDefaultAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ShDefaultAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ShSelectPlotAreaAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ShSelectPlotAreaAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/ShSelectPlotAreaAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/ShSelectPlotAreaAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShDragSelectAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShDragSelectAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShDragSelectAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShDragSelectAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShPanAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShPanAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShPanAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShPanAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryMoveAxisAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryMoveAxisAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryMoveAxisAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryMoveAxisAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryStretchAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryStretchAction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryStretchAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ActionHandler/TemporaryAction/ShTemporaryStretchAction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShCursorShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShCursorShape.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShCursorShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShCursorShape.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShDimensionStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShDimensionStyle.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShDimensionStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShDimensionStyle.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShDimensionStyleTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShDimensionStyleTable.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShDimensionStyleTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShDimensionStyleTable.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShDraftSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShDraftSetting.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShDraftSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShDraftSetting.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShGlobal.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShGlobal.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShLastBasePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShLastBasePoint.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShLastBasePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShLastBasePoint.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShLayer.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShLayer.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShLayerTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShLayerTable.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShLayerTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShLayerTable.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShMath.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShMath.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShPointStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShPointStyle.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShPointStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShPointStyle.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShSingleton.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Base/ShVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Base/ShVariable.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Chain of Responsibility/ShCADRequestFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Chain of Responsibility/ShCADRequestFactory.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Chain of Responsibility/ShCADRequestFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Chain of Responsibility/ShCADRequestFactory.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Chain of Responsibility/ShCADRequestStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Chain of Responsibility/ShCADRequestStrategy.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Chain of Responsibility/ShCADRequestStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Chain of Responsibility/ShCADRequestStrategy.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Chain of Responsibility/ShChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Chain of Responsibility/ShChain.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Chain of Responsibility/ShChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Chain of Responsibility/ShChain.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Chain of Responsibility/ShRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Chain of Responsibility/ShRequest.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Chain of Responsibility/ShRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Chain of Responsibility/ShRequest.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Command/ShAvailableCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Command/ShAvailableCommands.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Command/ShAvailableCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Command/ShAvailableCommands.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Command/ShCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Command/ShCommand.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Command/ShCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Command/ShCommand.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Command/ShCommandFlyWeight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Command/ShCommandFlyWeight.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Command/ShCommandFlyWeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Command/ShCommandFlyWeight.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Command/ShCommandType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Command/ShCommandType.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Command/ShCustomCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Command/ShCustomCommand.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShAvailableDraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShAvailableDraft.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShAvailableDraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShAvailableDraft.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShColor.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShColor.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShColorList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShColorList.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShColorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShColorList.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShCommandLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShCommandLog.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShCommandLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShCommandLog.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShDraftData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShDraftData.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShDraftData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShDraftData.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShDrawBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShDrawBuffer.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShDrawBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShDrawBuffer.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShLineStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShLineStyle.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShLineStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShLineStyle.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShLineStyleList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShLineStyleList.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShLineStyleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShLineStyleList.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShObjectSnapData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShObjectSnapData.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShObjectSnapData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShObjectSnapData.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShPoint3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShPoint3d.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShPoint3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShPoint3d.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShPropertyData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShPropertyData.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShPropertyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShPropertyData.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShScrollPosition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShScrollPosition.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Data/ShScrollPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Data/ShScrollPosition.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDim.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDim.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimAligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimAligned.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimAligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimAligned.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimAngular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimAngular.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimAngular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimAngular.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimArcLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimArcLength.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimArcLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimArcLength.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimDiameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimDiameter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimDiameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimDiameter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimLinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimLinear.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimLinear.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimRadius.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimRadius.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/Dim/ShDimRadius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/Dim/ShDimRadius.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/ShComposite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/ShComposite.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/ShComposite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/ShComposite.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/ShEntityTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/ShEntityTable.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/ShEntityTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/ShEntityTable.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/ShPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/ShPreview.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/ShPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/ShPreview.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/ShSelectedEntities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/ShSelectedEntities.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Composite/ShSelectedEntities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Composite/ShSelectedEntities.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShArc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShArc.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShArc.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShCircle.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShCircle.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShConstructionLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShConstructionLine.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShConstructionLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShConstructionLine.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShDot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShDot.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShDot.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShLeaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShLeaf.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShLeaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShLeaf.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShLine.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShLine.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShPoint.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShPoint.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShRubberBand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShRubberBand.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Leaf/ShRubberBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Leaf/ShRubberBand.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShClosestIntersectionPointFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShClosestIntersectionPointFinder.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShClosestIntersectionPointFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShClosestIntersectionPointFinder.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShDrawer.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShDrawer.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShExtender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShExtender.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShExtender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShExtender.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShFinder.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShFinder.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShFootOfPerpendicularVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShFootOfPerpendicularVisitor.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShFootOfPerpendicularVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShFootOfPerpendicularVisitor.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShLineBothPerpendicularVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShLineBothPerpendicularVisitor.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShLineBothPerpendicularVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShLineBothPerpendicularVisitor.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShMirror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShMirror.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShMirror.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShMover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShMover.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShMover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShMover.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShOffsetVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShOffsetVisitor.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShOffsetVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShOffsetVisitor.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShPloter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShPloter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShPloter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShPloter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShRotater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShRotater.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShRotater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShRotater.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShSnapPointFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShSnapPointFinder.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShSnapPointFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShSnapPointFinder.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShStretchVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShStretchVisitor.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShStretchVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShStretchVisitor.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShTrimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShTrimer.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShTrimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShTrimer.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShVertexFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShVertexFinder.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShVertexFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShVertexFinder.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShVisitor.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/Algorithm/ShVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/Algorithm/ShVisitor.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/ShEntityData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/ShEntityData.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/ShEntityData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/ShEntityData.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/ShSearchEntityStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/ShSearchEntityStrategy.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/Private/ShSearchEntityStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/Private/ShSearchEntityStrategy.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/ShEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/ShEntity.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Entity/ShEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Entity/ShEntity.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShCADWidgetEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShCADWidgetEventFilter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShCADWidgetEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShCADWidgetEventFilter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShCommandDockEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShCommandDockEventFilter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShCommandDockEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShCommandDockEventFilter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShHomeTabEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShHomeTabEventFilter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShHomeTabEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShHomeTabEventFilter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShNotifyEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShNotifyEvent.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShNotifyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShNotifyEvent.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShObserver.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShStatusBarEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShStatusBarEventFilter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ShStatusBarEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ShStatusBarEventFilter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ToolBarEventFilter/ShDimensionToolBarEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ToolBarEventFilter/ShDimensionToolBarEventFilter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ToolBarEventFilter/ShDimensionToolBarEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ToolBarEventFilter/ShDimensionToolBarEventFilter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ToolBarEventFilter/ShLayerToolBarEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ToolBarEventFilter/ShLayerToolBarEventFilter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ToolBarEventFilter/ShLayerToolBarEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ToolBarEventFilter/ShLayerToolBarEventFilter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ToolBarEventFilter/ShPropertyToolBarEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ToolBarEventFilter/ShPropertyToolBarEventFilter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ToolBarEventFilter/ShPropertyToolBarEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ToolBarEventFilter/ShPropertyToolBarEventFilter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ToolBarEventFilter/ShQuickAccessToolBarEventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ToolBarEventFilter/ShQuickAccessToolBarEventFilter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Event/ToolBarEventFilter/ShQuickAccessToolBarEventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Event/ToolBarEventFilter/ShQuickAccessToolBarEventFilter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/GeneratedFiles/qrc_ShCAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/GeneratedFiles/qrc_ShCAD.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Icon.ico -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/CurrentLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/CurrentLayer.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Dimension/DimAligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Dimension/DimAligned.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Dimension/DimAngular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Dimension/DimAngular.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Dimension/DimArcLength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Dimension/DimArcLength.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Dimension/DimDiameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Dimension/DimDiameter.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Dimension/DimLinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Dimension/DimLinear.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Dimension/DimRadius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Dimension/DimRadius.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Dimension/DimStyleSetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Dimension/DimStyleSetting.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/3Point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/3Point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Center-Start-Angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Center-Start-Angle.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Center-Start-End.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Center-Start-End.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Center-Start-Length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Center-Start-Length.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Start-Center-Angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Start-Center-Angle.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Start-Center-End.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Start-Center-End.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Start-Center-Length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Start-Center-Length.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Start-End-Angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Start-End-Angle.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Start-End-Direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Start-End-Direction.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Arc/Start-End-Radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Arc/Start-End-Radius.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Circle/2Point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Circle/2Point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Circle/3Point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Circle/3Point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Circle/Center-Diameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Circle/Center-Diameter.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Circle/Center-Radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Circle/Center-Radius.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/ConstructionLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/ConstructionLine.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Line.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/Point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/Point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/PolyLine/PolyLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/PolyLine/PolyLine.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/PolyLine/Polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/PolyLine/Polygon.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Draw/PolyLine/Rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Draw/PolyLine/Rectangle.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/File/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/File/New.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/File/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/File/Preview.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/File/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/File/Print.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/LayerTurnOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/LayerTurnOff.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/LayerTurnOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/LayerTurnOn.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Copy.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Erase.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Extend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Extend.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Mirror.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Move.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Offset.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Rotate.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Scale.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Stretch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Stretch.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Modify/Trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Modify/Trim.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Orthogonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Orthogonal.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Redo.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/SelectColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/SelectColor.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/ShCADIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/ShCADIcon.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Apparent intersection point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Apparent intersection point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Center point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Center point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/End point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/End point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Extension point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Extension point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Intersection point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Intersection point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Mid point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Mid point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Nearest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Nearest.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Node.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Perpendicular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Perpendicular.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Quadrant point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Quadrant point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/SnapModeOnOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/SnapModeOnOff.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Tangent point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Tangent point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Snap/Temporary track point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Snap/Temporary track point.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Splash.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Image/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Image/Undo.png -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dialog/ShLayerDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dialog/ShLayerDialog.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dialog/ShLayerDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dialog/ShLayerDialog.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dialog/ShPlotDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dialog/ShPlotDialog.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dialog/ShPlotDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dialog/ShPlotDialog.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dialog/ShPlotPreviewDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dialog/ShPlotPreviewDialog.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dialog/ShPlotPreviewDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dialog/ShPlotPreviewDialog.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dialog/ShStartupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dialog/ShStartupDialog.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dialog/ShStartupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dialog/ShStartupDialog.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dock/ShAbstractDock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dock/ShAbstractDock.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dock/ShAbstractDock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dock/ShAbstractDock.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dock/ShCommandDock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dock/ShCommandDock.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Dock/ShCommandDock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Dock/ShCommandDock.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShButton.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShButton.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShColorComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShColorComboBox.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShColorComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShColorComboBox.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShDimensionStyleComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShDimensionStyleComboBox.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShDimensionStyleComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShDimensionStyleComboBox.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShIcon.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShIcon.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShLayerComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShLayerComboBox.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShLayerComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShLayerComboBox.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShLineStyleComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShLineStyleComboBox.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Item/ShLineStyleComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Item/ShLineStyleComboBox.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Menu/ShMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Menu/ShMenu.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Menu/ShMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Menu/ShMenu.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Menu/ShMenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Menu/ShMenuBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Menu/ShMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Menu/ShMenuBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShAxis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShAxis.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShAxis.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShCADWidgetDrawStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShCADWidgetDrawStrategy.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShCADWidgetDrawStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShCADWidgetDrawStrategy.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShCADWidgetDrawStrategyFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShCADWidgetDrawStrategyFactory.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShCADWidgetDrawStrategyFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShCADWidgetDrawStrategyFactory.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShCADWidgetImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShCADWidgetImp.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShCADWidgetImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShCADWidgetImp.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShRibbonButtonStragety.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShRibbonButtonStragety.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Private/ShRibbonButtonStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Private/ShRibbonButtonStrategy.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Ribbon/Button/ShRibbonButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Ribbon/Button/ShRibbonButton.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Ribbon/Button/ShRibbonButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Ribbon/Button/ShRibbonButton.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Ribbon/ShHomeTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Ribbon/ShHomeTab.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Ribbon/ShHomeTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Ribbon/ShHomeTab.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Ribbon/ShRibbon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Ribbon/ShRibbon.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Ribbon/ShRibbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Ribbon/ShRibbon.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Ribbon/ShRibbonMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Ribbon/ShRibbonMenu.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/Ribbon/ShRibbonMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/Ribbon/ShRibbonMenu.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ShCAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ShCAD.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ShCAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ShCAD.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ShCADWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ShCADWidget.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ShCADWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ShCADWidget.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/StatusBar/ShStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/StatusBar/ShStatusBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/StatusBar/ShStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/StatusBar/ShStatusBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShAbstractToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShAbstractToolBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShAbstractToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShAbstractToolBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShDimensionToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShDimensionToolBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShDimensionToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShDimensionToolBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShDrawToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShDrawToolBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShDrawToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShDrawToolBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShLayerToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShLayerToolBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShLayerToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShLayerToolBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShModifyToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShModifyToolBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShModifyToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShModifyToolBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShObjectSnapToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShObjectSnapToolBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShObjectSnapToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShObjectSnapToolBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShPropertyToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShPropertyToolBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShPropertyToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShPropertyToolBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShQuickAccessToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShQuickAccessToolBar.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShQuickAccessToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShQuickAccessToolBar.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShToolBarContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShToolBarContainer.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Interface/ToolBar/ShToolBarContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Interface/ToolBar/ShToolBarContainer.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/KeyHandler/ShCustomKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/KeyHandler/ShCustomKey.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/KeyHandler/ShKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/KeyHandler/ShKey.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/KeyHandler/ShKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/KeyHandler/ShKey.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/KeyHandler/ShKeyFlyWeight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/KeyHandler/ShKeyFlyWeight.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/KeyHandler/ShKeyFlyWeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/KeyHandler/ShKeyFlyWeight.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/KeyHandler/ShKeyHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/KeyHandler/ShKeyHandler.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/KeyHandler/ShKeyHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/KeyHandler/ShKeyHandler.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/KeyHandler/ShKeyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/KeyHandler/ShKeyType.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Language/English/command.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Language/English/command.ini -------------------------------------------------------------------------------- /ShCAD/ShCAD/Language/English/interface.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Language/English/interface.ini -------------------------------------------------------------------------------- /ShCAD/ShCAD/Language/Korean/command.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Language/Korean/command.ini -------------------------------------------------------------------------------- /ShCAD/ShCAD/Language/Korean/interface.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Language/Korean/interface.ini -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShCADWidgetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShCADWidgetManager.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShCADWidgetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShCADWidgetManager.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShChangeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShChangeManager.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShChangeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShChangeManager.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShCommandLogManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShCommandLogManager.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShCommandLogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShCommandLogManager.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShLanguageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShLanguageManager.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShLanguageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShLanguageManager.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShPlotManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShPlotManager.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Manager/ShPlotManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Manager/ShPlotManager.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ObjectSnap/ShObjectSnapCommandFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ObjectSnap/ShObjectSnapCommandFactory.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/ObjectSnap/ShObjectSnapCommandFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ObjectSnap/ShObjectSnapCommandFactory.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/ShCAD.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ShCAD.qrc -------------------------------------------------------------------------------- /ShCAD/ShCAD/ShCAD.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ShCAD.rc -------------------------------------------------------------------------------- /ShCAD/ShCAD/ShCAD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ShCAD.vcxproj -------------------------------------------------------------------------------- /ShCAD/ShCAD/ShCAD.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/ShCAD.vcxproj.filters -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShCADWidgetTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShCADWidgetTransaction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShCADWidgetTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShCADWidgetTransaction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShDimensionStyleTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShDimensionStyleTransaction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShDimensionStyleTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShDimensionStyleTransaction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShEntityTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShEntityTransaction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShEntityTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShEntityTransaction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShLayerTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShLayerTransaction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShLayerTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShLayerTransaction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShPanTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShPanTransaction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShPanTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShPanTransaction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShTransaction.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShTransaction.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShTransactionStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShTransactionStack.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/UnRedo/ShTransactionStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/UnRedo/ShTransactionStack.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Utility/ShColorConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Utility/ShColorConverter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Utility/ShColorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Utility/ShColorConverter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/Utility/ShLineStyleConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Utility/ShLineStyleConverter.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/Utility/ShLineStyleConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/Utility/ShLineStyleConverter.h -------------------------------------------------------------------------------- /ShCAD/ShCAD/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/main.cpp -------------------------------------------------------------------------------- /ShCAD/ShCAD/memory_leak_report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/memory_leak_report.txt -------------------------------------------------------------------------------- /ShCAD/ShCAD/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hash1018/ShCAD/HEAD/ShCAD/ShCAD/resource.h --------------------------------------------------------------------------------