Changed files

This commit is contained in:
edi271
2023-02-12 14:59:18 +01:00
committed by WandererFan
parent ca910312bf
commit cfc5d0bb53
4 changed files with 9 additions and 0 deletions

View File

@@ -21,14 +21,17 @@ set(TechDraw_ToolsScripts
TechDrawTools/CommandMoveView.py
TechDrawTools/CommandShareView.py
TechDrawTools/CommandAxoLengthDimension.py
TechDrawTools/CommandHoleShaftFit.py
TechDrawTools/TaskMoveView.py
TechDrawTools/TaskShareView.py
TechDrawTools/TaskHoleShaftFit.py
TechDrawTools/TDToolsUtil.py
TechDrawTools/TDToolsMovers.py
)
set(TechDraw_ToolsGui
Gui/TaskMoveView.ui
Gui/TaskHoleShaftFit.ui
Gui/DlgPageChooser.ui
)

View File

@@ -29,6 +29,7 @@
<file>icons/actions/TechDraw_Midpoints.svg</file>
<file>icons/actions/TechDraw_MoveView.svg</file>
<file>icons/actions/TechDraw_AxoLengthDimension.svg</file>
<file>icons/actions/TechDraw_HoleShaftFit.svg</file>
<file>icons/actions/TechDraw_Multiview.svg</file>
<file>icons/actions/TechDraw_PageDefault.svg</file>
<file>icons/actions/TechDraw_PageTemplate.svg</file>

View File

@@ -226,6 +226,7 @@ Gui::MenuItem* Workbench::setupMenuBar() const
*draw << "TechDraw_ShowAll";
*draw << "TechDraw_WeldSymbol";
*draw << "TechDraw_SurfaceFinishSymbols";
*draw << "TechDraw_HoleShaftFit";
*draw << "Separator";
*draw << "TechDraw_ProjectShape";
return root;
@@ -376,6 +377,7 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
*anno << "TechDraw_ShowAll";
*anno << "TechDraw_WeldSymbol";
*anno << "TechDraw_SurfaceFinishSymbols";
*anno << "TechDraw_HoleShaftFit";
return root;
}
@@ -525,6 +527,7 @@ Gui::ToolBarItem* Workbench::setupCommandBars() const
*anno << "TechDraw_ShowAll";
*anno << "TechDraw_WeldSymbol";
*anno << "TechDraw_SurfaceFinishSymbols";
*anno << "TechDraw_HoleShaftFit";
return root;
}

View File

@@ -34,5 +34,7 @@ from .TDToolsUtil import *
from .CommandShareView import CommandShareView
from .CommandMoveView import CommandMoveView
from .CommandAxoLengthDimension import CommandAxoLengthDimension
from .CommandHoleShaftFit import CommandHoleShaftFit
from .TaskShareView import TaskShareView
from .TaskMoveView import TaskMoveView
from .TaskHoleShaftFit import TaskHoleShaftFit