Skip to content

Commit

Permalink
Merge pull request #2724 from mlampert/feature/tool-bit-poc
Browse files Browse the repository at this point in the history
Path: Feature/tool bit poc
  • Loading branch information
sliptonic committed Dec 10, 2019
2 parents f4e79ed + 227a292 commit 540aead
Show file tree
Hide file tree
Showing 61 changed files with 3,894 additions and 216 deletions.
55 changes: 55 additions & 0 deletions src/Mod/Path/CMakeLists.txt
Expand Up @@ -101,6 +101,12 @@ SET(PathScripts_SRCS
PathScripts/PathStop.py
PathScripts/PathSurface.py
PathScripts/PathSurfaceGui.py
PathScripts/PathToolBit.py
PathScripts/PathToolBitCmd.py
PathScripts/PathToolBitEdit.py
PathScripts/PathToolBitGui.py
PathScripts/PathToolBitLibraryCmd.py
PathScripts/PathToolBitLibraryGui.py
PathScripts/PathToolController.py
PathScripts/PathToolControllerGui.py
PathScripts/PathToolEdit.py
Expand Down Expand Up @@ -133,6 +139,29 @@ SET(PathScripts_post_SRCS
PathScripts/post/smoothie_post.py
)

SET(Tools_Bit_SRCS
Tools/Bit/t1.fctb
Tools/Bit/t2.fctb
Tools/Bit/t3.fctb
Tools/Bit/t4.fctb
Tools/Bit/t5.fctb
Tools/Bit/t6.fctb
Tools/Bit/t7.fctb
Tools/Bit/t8.fctb
Tools/Bit/t9.fctb
)

SET(Tools_Library_SRCS
Tools/Library/endmills.fctl
)

SET(Tools_Shape_SRCS
Tools/Shape/ballend.fcstd
Tools/Shape/bullnose.fcstd
Tools/Shape/drill.fcstd
Tools/Shape/endmill.fcstd
Tools/Shape/v-bit.fcstd
)

SET(PathTests_SRCS
PathTests/__init__.py
Expand All @@ -147,9 +176,11 @@ SET(PathTests_SRCS
PathTests/TestPathLog.py
PathTests/TestPathOpTools.py
PathTests/TestPathPost.py
PathTests/TestPathPreferences.py
PathTests/TestPathSetupSheet.py
PathTests/TestPathStock.py
PathTests/TestPathTool.py
PathTests/TestPathToolBit.py
PathTests/TestPathToolController.py
PathTests/TestPathTooltable.py
PathTests/TestPathUtil.py
Expand Down Expand Up @@ -178,6 +209,9 @@ SET(Path_Images
SET(all_files
${PathScripts_SRCS}
${PathScripts_post_SRCS}
${Tools_Bit_SRCS}
${Tools_Library_SRCS}
${Tools_Shape_SRCS}
${Path_Images}
)

Expand Down Expand Up @@ -218,6 +252,27 @@ INSTALL(
Mod/Path/PathScripts/post
)

INSTALL(
FILES
${Tools_Bit_SRCS}
DESTINATION
Mod/Path/Tools/Bit
)

INSTALL(
FILES
${Tools_Library_SRCS}
DESTINATION
Mod/Path/Tools/Library
)

INSTALL(
FILES
${Tools_Shape_SRCS}
DESTINATION
Mod/Path/Tools/Shape
)

INSTALL(
FILES
${PathImages_Ops}
Expand Down
6 changes: 5 additions & 1 deletion src/Mod/Path/Gui/Resources/Path.qrc
Expand Up @@ -48,9 +48,10 @@
<file>icons/Path-Speed.svg</file>
<file>icons/Path-Stock.svg</file>
<file>icons/Path-Stop.svg</file>
<file>icons/Path-ToolBit.svg</file>
<file>icons/Path-ToolChange.svg</file>
<file>icons/Path-ToolController.svg</file>
<file>icons/Path-ToolDuplicate.svg</file>
<file>icons/Path-ToolDuplicate.svg</file>

This comment has been minimized.

Copy link
@vocx-fc

vocx-fc Dec 11, 2019

Contributor

There's a Tab inserted here. There should be only spaces.

<file>icons/Path-Toolpath.svg</file>
<file>icons/Path-ToolTable.svg</file>
<file>icons/Path-Area.svg</file>
Expand Down Expand Up @@ -107,6 +108,9 @@
<file>panels/PointEdit.ui</file>
<file>panels/SetupGlobal.ui</file>
<file>panels/SetupOp.ui</file>
<file>panels/ToolBitEditor.ui</file>
<file>panels/ToolBitLibraryEdit.ui</file>
<file>panels/ToolBitSelector.ui</file>
<file>panels/ToolEditor.ui</file>
<file>panels/ToolLibraryEditor.ui</file>
<file>panels/TaskPathSimulator.ui</file>
Expand Down

0 comments on commit 540aead

Please sign in to comment.