Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix inconsistent use of tabs and spaces in InitGui.py #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 76 additions & 64 deletions InitGui.py
Original file line number Diff line number Diff line change
@@ -1,79 +1,91 @@
# 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 *
#* *
#***************************************************************************
# ***************************************************************************
# * *
# * 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 GDT

class GeometricDimensioningAndTolerancingWorkbench ( Workbench ):
Icon = ':/dd/icons/GDT.svg'
MenuText = 'GD&T'
ToolTip = 'Geometric Dimensioning & Tolerancing'

def GetClassName(self):
return "Gui::PythonWorkbench"
class GeometricDimensioningAndTolerancingWorkbench(Workbench):
Icon = ":/dd/icons/GDT.svg"
MenuText = "GD&T"
ToolTip = "Geometric Dimensioning & Tolerancing"

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")
def GetClassName(self):
return "Gui::PythonWorkbench"

self.cmdList = ['dd_datumFeature','dd_datumSystem','dd_geometricTolerance','dd_annotationPlane']
self.inventory = ['dd_inventory']
self.appendToolbar("GD&T Tools",self.cmdList+self.inventory)
self.appendMenu("GD&T Tools",self.cmdList+self.inventory)
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"
)

FreeCADGui.addIconPath(':/dd/icons')
FreeCADGui.addPreferencePage( ':/dd/ui/preferences-gdt.ui','GDT' )
self.cmdList = [
"dd_datumFeature",
"dd_datumSystem",
"dd_geometricTolerance",
"dd_annotationPlane",
]
self.inventory = ["dd_inventory"]
self.appendToolbar("GD&T Tools", self.cmdList + self.inventory)
self.appendMenu("GD&T Tools", self.cmdList + self.inventory)

Log ("Loading Geometric Dimensioning & Tolerancing... done\n")
FreeCADGui.addIconPath(":/dd/icons")
FreeCADGui.addPreferencePage(":/dd/ui/preferences-gdt.ui", "GDT")

def Activated(self):
# do something here if needed...
Msg ("Geometric Dimensioning & Tolerancing workbench activated\n")
Log("Loading Geometric Dimensioning & Tolerancing... done\n")

def Deactivated(self):
# do something here if needed...
Msg ("Geometric Dimensioning & Tolerancing workbench desactivated\n")
def Activated(self):
# do something here if needed...
Msg("Geometric Dimensioning & Tolerancing workbench activated\n")

def ContextMenu(self, recipient):
def Deactivated(self):
# do something here if needed...
Msg("Geometric Dimensioning & Tolerancing workbench desactivated\n")

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("",self.cmdList) # add commands to the context menu
self.appendContextMenu("",self.inventory)
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("", self.cmdList) # add commands to the context menu
self.appendContextMenu("", self.inventory)


FreeCADGui.addWorkbench(GeometricDimensioningAndTolerancingWorkbench)