Macro MacroMenu

From FreeCAD Documentation
This page is a translated version of the page Macro MacroMenu and the translation is 60% complete.
Outdated translations are marked like this.
Other languages:

Macro MacroMenu

Popis
Adds the macros found in the macros folder to the FreeCAD Macros menu

Version macro : 1.0
Date last modification : 2014-08-07
FreeCAD version : All
Download : ToolBar Icon
Autor: Yorik
Autor
Yorik
Download
ToolBar Icon
Odkazy
Verze
1.0
Datum poslední úpravy
2014-08-07
Verze FreeCAD
All
Výchozí zástupce
None
Viz též
None

Popis

Tento kód byl součástí modulu Draft Workbench a byl odstraněn cf issue #490.

Skript

ToolBar Icon

Macro_MacroMenu.FCMacro

import os,FreeCAD,FreeCADGui
 
macrosList = []
macroPath = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Macro").GetString("MacroPath") 
 
class MacroCommand():
    "A template for macro commands"
    def __init__(self,macroname):
        self.macroname = macroname
 
    def GetResources(self):
        return {'Pixmap'  : 'Draft_Macro',
                'MenuText': self.macroname,
                'ToolTip': 'Executes the '+self.macroname+' macro'}
 
    def Activated(self):
        target = macroPath+os.sep+self.macroname+'.FCMacro'
        if os.path.exists(target): execfile(target)
            
if macroPath and os.path.isdir(macroPath):
    macros = []
    for f in os.listdir(macroPath):
        if ".FCMacro" in f:
            macros.append(f[:-8])
    for m in macros:
        cmd = 'Macro_'+m
        FreeCADGui.addCommand(cmd,MacroCommand(m))
        macrosList.append(cmd)