fixup! Disable parametric tools when there is no active document.
This commit is contained in:
parent
ebdc5f3fcb
commit
78d447f379
|
@ -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:
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user