fixup! Disable parametric tools when there is no active document.

This commit is contained in:
Suzanne Soy 2021-01-28 01:14:47 +00:00
parent ebdc5f3fcb
commit 78d447f379
2 changed files with 10 additions and 3 deletions

View File

@ -22,11 +22,11 @@ class ToolCommand():
} }
def Activated(self): def Activated(self):
XternalAppsParametricTool.create(self.Tool.AppName, self.Tool.ToolName) XternalAppsParametricTool.CreateCommand(self.Tool.AppName, self.Tool.ToolName)
def IsActive(self): def IsActive(self):
# return false to grey out the command in the menus, toolbars etc. # return false to grey out the command in the menus, toolbars etc.
return App.ActiveDocument is not None return FreeCAD.ActiveDocument is not None
def createCommands(appName): def createCommands(appName):
for toolName in ExternalAppsList.apps[appName].Tools: for toolName in ExternalAppsList.apps[appName].Tools:

View File

@ -1,15 +1,22 @@
import FreeCAD as App import FreeCAD as App
import FreeCADGui
#from xml.etree import ElementTree #from xml.etree import ElementTree
from lxml import etree from lxml import etree
import ExternalAppsList import ExternalAppsList
from ToolXML import * from ToolXML import *
import re import re
def CreateCommand(appName, toolName):
App.ActiveDocument.openTransaction('Create parametric %s from %s'%(toolName, appName))
FreeCADGui.addModule("XternalAppsParametricTool")
FreeCADGui.doCommand("XternalAppsParametricTool.create(%s, %s)"%(repr(appName), repr(toolName)))
App.ActiveDocument.commitTransaction()
return obj
def create(appName, toolName): def create(appName, toolName):
name = appName + toolName name = appName + toolName
obj = App.ActiveDocument.addObject("App::DocumentObjectGroupPython", name) obj = App.ActiveDocument.addObject("App::DocumentObjectGroupPython", name)
XternalAppsParametricTool(obj, appName, toolName) XternalAppsParametricTool(obj, appName, toolName)
return obj
# TODO: read-only/immutable # TODO: read-only/immutable
typeToFreeCADTypeDict = { typeToFreeCADTypeDict = {