forked from juanvanyo/FreeCAD-GDT
-
Notifications
You must be signed in to change notification settings - Fork 3
/
InitGui.py
130 lines (115 loc) · 5.95 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
# GeometricDimensioningAndTolerancing gui init module
#***************************************************************************
#* *
#* Copyright (c) 2016 Juan Vañó Cerdá <[email protected]> *
#* *
#* 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 *
#* *
#***************************************************************************
import os
import GDT
import GDT_locator
global GDTWBpath
GDTWBpath = os.path.dirname(GDT_locator.__file__)
global main_DWB_Icon
GDTWB_icons_path = os.path.join( GDTWBpath, 'Resources', 'icons')
main_DWB_Icon = os.path.join( GDTWB_icons_path , 'GDT.svg')
"""
+-----------------------------------------------+
| Initialize the workbench |
+-----------------------------------------------+
"""
class GDandTWorkbench ( Workbench ):
Icon = main_DWB_Icon
MenuText = 'GD&T'
ToolTip = 'Geometric Dimensioning & Tolerancing'
def GetClassName(self):
return "Gui::PythonWorkbench"
def __init__(self):
"This function is executed when FreeCAD starts"
from PySide import QtGui
GDTWB_fonts_path = os.path.join( GDTWBpath, 'Resources', 'fonts')
fontFile = os.path.join(GDTWB_fonts_path, "osifont-lgpl3fe.ttf")
fontId = QtGui.QFontDatabase.addApplicationFont(fontFile)
Msg ("{} Added as QtGui Font Id : {}\n".format(fontFile,fontId))
fontFile = os.path.join(GDTWB_fonts_path, "Iso-Gps.ttf")
fontId = QtGui.QFontDatabase.addApplicationFont(fontFile)
Msg ("{} Added as QtGui Font Id : {}\n".format(fontFile,fontId))
pass
"""
+-----------------------------------------------+
| This is where all is defined |
+-----------------------------------------------+
"""
def Initialize(self):
# load the module
# import GD&T tools
try:
import datumFeature
import datumSystem
import geometricTolerance
import annotationPlane
import inventory
except ImportError:
FreeCAD.Console.PrintWarning("Error: Initializing one or more of the GD&T modules failed, GD&T will not work as expected.\n")
"""
+-----------------------------------------------+
| Assembly Menu & Toolbar |
+-----------------------------------------------+
"""
self.cmdList = ['dd_datumFeature','dd_datumSystem','dd_geometricTolerance','dd_annotationPlane']
self.inventory = ['dd_inventory']
# https://freecad.github.io/SourceDoc/d7/dc3/group__workbench.html
self.appendToolbar("GD&T Tools",self.cmdList+self.inventory) # Create ToolBar
self.appendMenu("GD&T Tools",self.cmdList+self.inventory) # Create Menu
FreeCADGui.addIconPath(':/dd/icons')
FreeCADGui.addPreferencePage( ':/dd/ui/preferences-gdt.ui','GDT' )
Log ("Loading Geometric Dimensioning & Tolerancing... done\n")
def Activated(self):
"This function is executed when the workbench is activated"
Msg ("Geometric Dimensioning & Tolerancing workbench activated\n")
def Deactivated(self):
"This function is executed when the workbench is deactivated"
Msg ("Geometric Dimensioning & Tolerancing workbench desactivated\n")
"""
+-----------------------------------------------+
| Contextual Menus |
+-----------------------------------------------+
"""
def ContextMenu(self, recipient):
# "This is executed whenever the user right-clicks on screen"
# "recipient" will be either "view" or "tree"
showCmdList = True
if FreeCADGui.Selection.getSelection():
for i in range(len(FreeCADGui.Selection.getSelectionEx()[0].SubObjects)):
if FreeCADGui.Selection.getSelectionEx()[0].SubObjects[i].ShapeType == 'Face':
pass
else:
showCmdList = False
else:
showCmdList = False
if showCmdList:
self.appendContextMenu("", "Separator") # Add Separator 5@xes
self.appendContextMenu("",self.cmdList) # add commands to the context menu
self.appendContextMenu("",self.inventory) # add inventory commands to the context menu
self.appendContextMenu("", "Separator") # Add Separator 5@xes
"""
+-----------------------------------------------+
| actually make the workbench |
+-----------------------------------------------+
"""
FreeCADGui.addWorkbench(GDandTWorkbench)