-
Notifications
You must be signed in to change notification settings - Fork 27
/
InitGui.py
98 lines (84 loc) · 4.67 KB
/
InitGui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# -*- coding: utf-8 -*-
# Exploded Assembly Animation workbench for FreeCAD
# (c) 2016 Javier Martínez García
#***************************************************************************
#* (c) Javier Martínez García 2016 *
#* *
#* This program is free software; you can redistribute it and/or modify *
#* it under the terms of the GNU General Public License (GPL) *
#* as published by the Free Software Foundation; either version 2 of *
#* the License, or (at your option) any later version. *
#* for detail see the LICENCE text file. *
#* *
#* This program 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 Library General Public *
#* License along with FreeCAD; if not, write to the Free Software *
#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
#* USA *
#* *
#***************************************************************************/
__title__="Exploded Assembly Workbench for FreeCAD"
__author__ = "Javier Martínez García"
__url__ = "http://linuxforanengineer.blogspot.com"
import FreeCAD
import FreeCADGui
class ExplodedAssembly(Workbench):
import EAInit# this is needed to load the workbench icon
# __dir__ = os.path.dirname( __file__ ) # __file__ is not working
Icon = EAInit.__dir__ + '/icons/WorkbenchIcon.svg'
MenuText = 'Exploded Assembly'
ToolTip = 'Assemble parts and create exploded drawings and animations'
def GetClassName(self):
return 'Gui::PythonWorkbench'
def Initialize(self):
import EAInit
self.CreationTools = ['CreateBoltGroup',
'CreateSimpleGroup',
'ModifyIndividualObjectTrajectory',
'PlaceBeforeSelectedTrajectory',
'ToggleTrajectoryVisibility']
self.CameraAnimation = ['CreateManualCamera',
'CreateEdgeCamera',
'CreateFollowCamera']
self.AnimationControlTools = ['GoToStart',
'PlayBackward',
'StopAnimation',
'PlayForward',
'GoToEnd',
'GoToSelectedTrajectory']
self.AuxiliaryAssemblyTools = ['AlignToEdge',
'Rotate15',
'PointToPoint',
'PlaceConcentric']
self.Menu_tools = ['CreateBoltGroup',
'CreateSimpleGroup',
'ModifyIndividualObjectTrajectory',
'PlaceBeforeSelectedTrajectory',
'GoToSelectedTrajectory',
'GoToStart',
'PlayBackward',
'StopAnimation',
'PlayForward',
'GoToEnd',
'ToggleTrajectoryVisibility',
'AlignToEdge',
'Rotate15',
'PointToPoint',
'PlaceConcentric',
'LoadExampleFile']
self.appendToolbar('ExplodedAssemblyCreationTools', self.CreationTools)
#self.appendToolbar('ExplodedAssemblyCameraTools', self.CameraAnimation)
self.appendToolbar('ExplodedAssemblyAnimationControlTools', self.AnimationControlTools)
self.appendToolbar('ExplodedAssemblyAuxiliarAssemblyTools', self.AuxiliaryAssemblyTools)
self.appendMenu('ExplodedAssembly', self.Menu_tools)
def Activated(self):
import ExplodedAssembly as ea
if not(FreeCAD.ActiveDocument):
FreeCAD.newDocument()
ea.checkDocumentStructure()
FreeCAD.Console.PrintMessage('Exploded Assembly workbench loaded\n')
FreeCADGui.addWorkbench(ExplodedAssembly)