109 lines
4.1 KiB
Python
109 lines
4.1 KiB
Python
|
|
# /**********************************************************************
|
||
|
|
# * *
|
||
|
|
# * Copyright (c) 2021 Javier Braña <javier.branagutierrez@gmail.com> *
|
||
|
|
# * *
|
||
|
|
# * 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 FreeCAD
|
||
|
|
|
||
|
|
if FreeCAD.GuiUp:
|
||
|
|
import FreeCADGui, os
|
||
|
|
from PySide import QtCore
|
||
|
|
else:
|
||
|
|
# \cond
|
||
|
|
def translate(ctxt, txt):
|
||
|
|
return txt
|
||
|
|
|
||
|
|
def QT_TRANSLATE_NOOP(ctxt, txt):
|
||
|
|
return txt
|
||
|
|
# \endcond
|
||
|
|
|
||
|
|
try:
|
||
|
|
_fromUtf8 = QtCore.QString.fromUtf8
|
||
|
|
except AttributeError:
|
||
|
|
def _fromUtf8(s):
|
||
|
|
return s
|
||
|
|
|
||
|
|
import PVPlantResources
|
||
|
|
from PVPlantResources import DirIcons as DirIcons
|
||
|
|
|
||
|
|
|
||
|
|
def rename(objects, mask, mode=0):
|
||
|
|
'''
|
||
|
|
mode = 0/1/2/3
|
||
|
|
0: izquierda a derecha - arriba a abajo
|
||
|
|
1: arriba a abajo - izquierda a derecha
|
||
|
|
'''
|
||
|
|
|
||
|
|
# sort:
|
||
|
|
tmp = sorted(objects, key=lambda x: (x.Placement.Base.x,
|
||
|
|
x.Placement.Base.y))
|
||
|
|
|
||
|
|
for idx, obj in tmp:
|
||
|
|
obj.Name = name
|
||
|
|
|
||
|
|
class renamerTaskPanel:
|
||
|
|
def __init__(self, obj=None):
|
||
|
|
self.obj = obj
|
||
|
|
|
||
|
|
# -------------------------------------------------------------------------------------------------------------
|
||
|
|
# Module widget form
|
||
|
|
# -------------------------------------------------------------------------------------------------------------
|
||
|
|
self.formRack = FreeCADGui.PySideUic.loadUi(PVPlantResources.__dir__ + "/PVPlantFrame.ui")
|
||
|
|
self.formRack.widgetTracker.setVisible(False)
|
||
|
|
self.formRack.comboFrameType.currentIndexChanged.connect(self.selectionchange)
|
||
|
|
|
||
|
|
self.formPiling = FreeCADGui.PySideUic.loadUi(PVPlantResources.__dir__ + "/PVPlantRackFixedPiling.ui")
|
||
|
|
self.formPiling.editBreadthwaysNumOfPost.valueChanged.connect(self.editBreadthwaysNumOfPostChange)
|
||
|
|
self.formPiling.editAlongNumOfPost.valueChanged.connect(self.editAlongNumOfPostChange)
|
||
|
|
|
||
|
|
self.form = [self.formRack, self.formPiling]
|
||
|
|
|
||
|
|
def accept(self):
|
||
|
|
self.closeForm()
|
||
|
|
return True
|
||
|
|
|
||
|
|
def reject(self):
|
||
|
|
self.closeForm()
|
||
|
|
return False
|
||
|
|
|
||
|
|
def closeForm(self):
|
||
|
|
FreeCADGui.Control.closeDialog()
|
||
|
|
|
||
|
|
|
||
|
|
class _CommandRenamer:
|
||
|
|
"the Arch Building command definition"
|
||
|
|
|
||
|
|
def GetResources(self):
|
||
|
|
return {'Pixmap': str(os.path.join(DirIcons, "trackersetup.svg")),
|
||
|
|
'MenuText': QtCore.QT_TRANSLATE_NOOP("PVPlantTracker", "TrackerSetup"),
|
||
|
|
'Accel': "R, F",
|
||
|
|
'ToolTip': QtCore.QT_TRANSLATE_NOOP("PVPlanTracker",
|
||
|
|
"Creates a TrackerSetup object from setup dialog.")}
|
||
|
|
|
||
|
|
def IsActive(self):
|
||
|
|
return (not FreeCAD.ActiveDocument is None and
|
||
|
|
not FreeCAD.ActiveDocument.getObject("Site") is None)
|
||
|
|
|
||
|
|
def Activated(self):
|
||
|
|
self.TaskPanel = renamerTaskPanel()
|
||
|
|
FreeCADGui.Control.showDialog(self.TaskPanel)
|
||
|
|
return
|
||
|
|
|