Split Commands.py so that each command has a file.

This commit is contained in:
Paddle
2023-09-04 18:23:49 +02:00
parent 4293c4a65b
commit 5a2b2304f9
4 changed files with 70 additions and 31 deletions

View File

@@ -6,7 +6,8 @@ endif(BUILD_GUI)
set(Assembly_Scripts
Init.py
Commands.py
CommandCreateAssembly.py
CommandInsertLink.py
TestAssemblyWorkbench.py
Preferences.py
AssemblyImport.py

View File

@@ -0,0 +1,66 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
# /****************************************************************************
# *
# Copyright (c) 2023 Ondsel <development@ondsel.com> *
# *
# This file is part of FreeCAD. *
# *
# FreeCAD is free software: you can redistribute it and/or modify it *
# under the terms of the GNU Lesser General Public License as *
# published by the Free Software Foundation, either version 2.1 of the *
# License, or (at your option) any later version. *
# *
# FreeCAD is distributed in the hope that it will be useful, but *
# WITHOUT ANY WARRANTY; without even the implied warranty of *
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
# Lesser General Public License for more details. *
# *
# You should have received a copy of the GNU Lesser General Public *
# License along with FreeCAD. If not, see *
# <https://www.gnu.org/licenses/>. *
# *
# ***************************************************************************/
import FreeCAD as App
from PySide.QtCore import QT_TRANSLATE_NOOP
if App.GuiUp:
import FreeCADGui as Gui
# translate = App.Qt.translate
__title__ = "Assembly Command Create Assembly"
__author__ = "Ondsel"
__url__ = "https://www.freecad.org"
class CommandCreateAssembly:
def __init__(self):
pass
def GetResources(self):
return {
"Pixmap": "Geoassembly",
"MenuText": QT_TRANSLATE_NOOP("Assembly_CreateAssembly", "Create Assembly"),
"Accel": "A",
"ToolTip": QT_TRANSLATE_NOOP(
"Assembly_CreateAssembly",
"Create an assembly object in the current document.",
),
"CmdType": "ForEdit",
}
def IsActive(self):
return App.ActiveDocument is not None
def Activated(self):
App.setActiveTransaction("Create assembly")
assembly = App.ActiveDocument.addObject("App::Part", "Assembly")
assembly.Type = "Assembly"
Gui.ActiveDocument.ActiveView.setActiveObject("part", assembly)
App.closeActiveTransaction()
if App.GuiUp:
Gui.addCommand("Assembly_CreateAssembly", CommandCreateAssembly())

View File

@@ -32,7 +32,7 @@ if App.GuiUp:
# translate = App.Qt.translate
__title__ = "Assembly Commands"
__title__ = "Assembly Command Insert Link"
__author__ = "Ondsel"
__url__ = "https://www.freecad.org"
@@ -60,33 +60,6 @@ def isDocTemporary(doc):
return docTemporary
class CommandCreateAssembly:
def __init__(self):
pass
def GetResources(self):
return {
"Pixmap": "Geoassembly",
"MenuText": QT_TRANSLATE_NOOP("Assembly_CreateAssembly", "Create Assembly"),
"Accel": "A",
"ToolTip": QT_TRANSLATE_NOOP(
"Assembly_CreateAssembly",
"Create an assembly object in the current document.",
),
"CmdType": "ForEdit",
}
def IsActive(self):
return App.ActiveDocument is not None
def Activated(self):
App.setActiveTransaction("Create assembly")
assembly = App.ActiveDocument.addObject("App::Part", "Assembly")
assembly.Type = "Assembly"
Gui.ActiveDocument.ActiveView.setActiveObject("part", assembly)
App.closeActiveTransaction()
class CommandInsertLink:
def __init__(self):
pass
@@ -308,5 +281,4 @@ class TaskAssemblyInsertLink(QtCore.QObject):
if App.GuiUp:
Gui.addCommand("Assembly_CreateAssembly", CommandCreateAssembly())
Gui.addCommand("Assembly_InsertLink", CommandInsertLink())

View File

@@ -65,7 +65,7 @@ class AssemblyWorkbench(Workbench):
# load the builtin modules
from PySide import QtCore, QtGui
from PySide.QtCore import QT_TRANSLATE_NOOP
import Commands
import CommandCreateAssembly, CommandInsertLink
from Preferences import PreferencesPage
# from Preferences import preferences