-
Notifications
You must be signed in to change notification settings - Fork 69
/
InitGui.py
266 lines (236 loc) · 9.38 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
# ***************************************************************************
# * *
# * Copyright (c) 2018 kbwbe *
# * *
# * Portions of code based on hamish's assembly 2 *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU Lesser General Public License (LGPL) *
# * 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 Library General Public License for more details. *
# * *
# * You should have received a copy of the GNU Library General Public *
# * License along with this program; if not, write to the Free Software *
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
# * USA *
# * *
# ***************************************************************************
__title__ = 'A2plus assembly Workbench - InitGui file'
__author__ = 'kbwbe'
# import sys
import FreeCAD
import FreeCADGui
import a2plib
# Need to determine if we are on a system using PySide2 or PySide6
try:
import PySide6 # try Qt6 first
import a2p_Resources3_Qt6
except ImportError:
import a2p_Resources3
translate = FreeCAD.Qt.translate
QT_TRANSLATE_NOOP = FreeCAD.Qt.QT_TRANSLATE_NOOP
# add translations path
FreeCADGui.addLanguagePath(a2plib.getLanguagePath())
FreeCADGui.updateLocale()
class A2plusWorkbench (Workbench):
def __init__(self):
import a2plib
translate = FreeCAD.Qt.translate
self.__class__.Icon = a2plib.get_module_path() + "/icons/a2p_Workbench.svg"
self.__class__.MenuText = 'A2plus'
self.__class__.ToolTip = translate("A2plus", "An other assembly workbench for FreeCAD.")
def Initialize(self):
# import sys
import a2plib
# import a2p_Resources3
# translate = FreeCAD.Qt.translate
# add translations functions
translate = FreeCAD.Qt.translate
QT_TRANSLATE_NOOP = FreeCAD.Qt.QT_TRANSLATE_NOOP
# print A2plus version
FreeCAD.Console.PrintMessage(
translate(
"A2plus", "Initializing A2plus Workbench v{}"
).format(a2plib.getA2pVersion()) + ".\n"
)
# add icons path
FreeCADGui.addIconPath(':/icons')
import a2p_importpart
import a2p_recursiveUpdatePlanner
import a2p_convertPart
import a2p_solversystem
import a2p_MuxAssembly
import a2p_partinformation
import a2p_ConstraintDialog
import a2p_ConstraintCommands
import a2p_BoM # BoM == Bill of Materials == partslist
import a2p_constraintServices
import a2p_searchConstraintConflicts
import CD_A2plusupdater # for Constraint Diagnostic function
import CD_CheckConstraints
import CD_OneButton
# Create list of commands for toolbar A2p_Part and menu
partCommands = [
'a2p_ImportPart',
'a2p_ImportShapeReferenceCommand',
'a2p_updateImportedParts',
'a2p_movePart',
'a2p_MovePartUnderConstraints',
'a2p_duplicatePart',
'a2p_ConvertPart',
'a2p_editImportedPart',
'a2p_SaveAndExit_Command',
]
if a2plib.getRecursiveUpdateEnabled():
partCommands.insert(3, 'a2p_recursiveUpdateImportedPartsCommand')
# Create list of commands for toolbar A2p_constraint
constraintCommands = [
'a2p_ConstraintDialogCommand',
'a2p_EditConstraintCommand',
'a2p_reAdjustConstraintDirectionsCommand',
'a2p_DeleteConnectionsCommand',
]
if a2plib.SHOW_CONSTRAINTS_ON_TOOLBAR:
constraintCommands1 = [
'a2p_PointIdentityConstraintCommand',
'a2p_PointOnLineConstraintCommand',
'a2p_PointOnPlaneConstraintCommand',
'a2p_SphericalSurfaceConstraintCommand',
'a2p_CircularEdgeConnection',
'a2p_AxialConstraintCommand',
'a2p_AxisParallelConstraintCommand',
'a2p_AxisPlaneParallelCommand',
'a2p_AxisPlaneNormalCommand',
'a2p_AxisPlaneAngleCommand',
'a2p_PlanesParallelConstraintCommand',
'a2p_PlaneCoincidentConstraintCommand',
'a2p_AngledPlanesConstraintCommand',
'a2p_CenterOfMassConstraintCommand',
]
constraintCommands.extend(constraintCommands1)
# Create list of commands for toolbar A2p_Solver
solverCommands = [
'a2p_SolverCommand',
'a2p_ToggleAutoSolveCommand',
'a2p_FlipConstraintDirectionCommand',
'a2p_Show_Hierarchy_Command',
'a2p_SearchConstraintConflictsCommand'
]
if a2plib.GRAPHICALDEBUG:
solverCommands.append(
'a2p_cleanUpDebug3dCommand'
)
# Create list of commands for toolbar A2p_View
viewCommands = [
'a2p_isolateCommand',
'a2p_ViewConnectionsCommand',
'a2p_Restore_Transparency',
'a2p_ToggleTransparencyCommand',
'a2p_Show_PartLabels_Command',
'a2p_Show_DOF_info_Command',
]
# Create list of commands for toolbar A2p_Misc
miscCommands = [
'a2p_SimpleAssemblyShapeCommand',
'a2p_repairTreeViewCommand',
'a2p_CreatePartInformationSheet_Command',
'a2p_CreatePartlist',
'a2p_CreateCutListOptimizerPartlist'
]
# Create list of commands for toolbar A2p_Diagnostics
DiagnosticCommands = [
'rnp_Constraint_Viewer',
'rnp_Update_A2pParts',
'rnp_Constraint_Checker',
'rnp_OneButton',
]
menuEntries = [
'a2p_absPath_to_relPath_Command',
'a2p_MigrateProxiesCommand'
]
# Create toolbars
self.appendToolbar(
'A2p_Part',
partCommands
)
self.appendToolbar(
'A2p_Constraint',
constraintCommands
)
self.appendToolbar(
'A2p_Solver',
solverCommands
)
self.appendToolbar(
'A2p_View',
viewCommands
)
self.appendToolbar(
'A2p_Misc',
miscCommands
)
self.appendToolbar(
'A2p_Diagnostics',
DiagnosticCommands
)
# Create menus
self.appendMenu(
'A2plus',
partCommands
)
self.appendMenu(
['A2plus', QT_TRANSLATE_NOOP("Workbench", "Constraint")],
constraintCommands
)
self.appendMenu(
['A2plus', QT_TRANSLATE_NOOP("Workbench", "Solver")],
solverCommands
)
self.appendMenu(
['A2plus', QT_TRANSLATE_NOOP("Workbench", "View")],
viewCommands
)
miscCommands.extend(menuEntries)
self.appendMenu(
['A2plus', QT_TRANSLATE_NOOP("Workbench", "Misc")],
miscCommands
)
self.appendMenu(
['A2plus', QT_TRANSLATE_NOOP("Workbench", "Diagnostic")],
DiagnosticCommands
)
FreeCADGui.addPreferencePage(
a2plib.get_module_path() +
'/GuiA2p/Resources/ui/a2p_prefs.ui', 'A2plus'
)
def Activated(self):
import a2p_observers
FreeCAD.addDocumentObserver(a2p_observers.redoUndoObserver)
def Deactivated(self):
import a2p_observers
FreeCAD.removeDocumentObserver(a2p_observers.redoUndoObserver)
def ContextMenu(self, recipient):
import FreeCAD
import FreeCADGui
selection = [s for s in FreeCADGui.Selection.getSelection() if s.Document == FreeCAD.ActiveDocument]
if len(selection) == 1:
obj = selection[0]
if 'sourceFile' in obj.Content:
self.appendContextMenu(
"A2plus",
[
'a2p_movePart',
'a2p_duplicatePart',
'a2p_editImportedPart',
'a2p_ConvertPart',
'a2p_DeleteConnectionsCommand',
'a2p_ToggleTransparencyCommand'
]
)
Gui.addWorkbench(A2plusWorkbench())