mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-16 21:10:35 +05:00
first commit for the ceration of a t_shape plugin
This commit is contained in:
parent
23318a595c
commit
c07b5ec312
43
src/Tools/salome_plugins.py
Normal file
43
src/Tools/salome_plugins.py
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (C) 2010-2014 CEA/DEN, EDF R&D, OPEN CASCADE
|
||||||
|
#
|
||||||
|
# This library is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU Lesser General Public
|
||||||
|
# License as published by the Free Software Foundation; either
|
||||||
|
# version 2.1 of the License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library 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 Lesser General Public
|
||||||
|
# License along with this library; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
#
|
||||||
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
|
#
|
||||||
|
# Author : Renaud Nédélec (OpenCascade S.A.S)
|
||||||
|
|
||||||
|
import salome_pluginsmanager
|
||||||
|
|
||||||
|
def t_shape_fluid(context):
|
||||||
|
activeStudy = context.study
|
||||||
|
import t_shape_dialog
|
||||||
|
dialog = t_shape_dialog.TShapeDialog()
|
||||||
|
|
||||||
|
# Get the parameter values from a gui dialog box. If the dialog is
|
||||||
|
# closed using the Ok button, then the data are requested from the
|
||||||
|
# gui and used to create the shape of the tube.
|
||||||
|
dialog.exec_()
|
||||||
|
dialog.getData()
|
||||||
|
#if dialog.wasOk():
|
||||||
|
#radius, length, width = dialog.getData()
|
||||||
|
#shape = tubebuilder.createGeometry(activeStudy, radius, length, width)
|
||||||
|
#entry = xalome.addToStudy(activeStudy, shape, "Tube" )
|
||||||
|
#xalome.displayShape(entry)
|
||||||
|
|
||||||
|
|
||||||
|
salome_pluginsmanager.AddFunction('T shape fluid',
|
||||||
|
'Creates the fluid part of a pipe T-shape',
|
||||||
|
t_shape_fluid)
|
267
src/Tools/t_shape_builder.py
Normal file
267
src/Tools/t_shape_builder.py
Normal file
@ -0,0 +1,267 @@
|
|||||||
|
# -*- coding: iso-8859-1 -*-
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import salome
|
||||||
|
|
||||||
|
salome.salome_init()
|
||||||
|
theStudy = salome.myStudy
|
||||||
|
|
||||||
|
import GEOM
|
||||||
|
from salome.geom import geomBuilder
|
||||||
|
import math
|
||||||
|
import SALOMEDS
|
||||||
|
|
||||||
|
geompy = geomBuilder.New(theStudy)
|
||||||
|
|
||||||
|
O = geompy.MakeVertex(0, 0, 0)
|
||||||
|
OX = geompy.MakeVectorDXDYDZ(1, 0, 0)
|
||||||
|
OY = geompy.MakeVectorDXDYDZ(0, 1, 0)
|
||||||
|
OZ = geompy.MakeVectorDXDYDZ(0, 0, 1)
|
||||||
|
|
||||||
|
geompy.addToStudy( O, 'O' )
|
||||||
|
geompy.addToStudy( OX, 'OX' )
|
||||||
|
geompy.addToStudy( OY, 'OY' )
|
||||||
|
geompy.addToStudy( OZ, 'OZ' )
|
||||||
|
|
||||||
|
r1 = 100.0
|
||||||
|
r2 = 50.0
|
||||||
|
h1 = 200.0
|
||||||
|
h2 = 200.0
|
||||||
|
|
||||||
|
a1 = 45.0
|
||||||
|
seuilmax = 0.1
|
||||||
|
ratio = float(r2)/float(r1)
|
||||||
|
if ratio > (1.0 -seuilmax):
|
||||||
|
a1 = 45.0*(1.0 -ratio)/seuilmax
|
||||||
|
|
||||||
|
def demidisk(r1, a1, roty=0):
|
||||||
|
v=range(8)
|
||||||
|
l=range(8)
|
||||||
|
v0 = geompy.MakeVertex(0, 0, 0)
|
||||||
|
v[0] = geompy.MakeVertex(0, r1/2.0, 0)
|
||||||
|
v[1] = geompy.MakeVertex(0, r1, 0)
|
||||||
|
l[1] = geompy.MakeLineTwoPnt(v[0], v[1])
|
||||||
|
l[2] = geompy.MakeRotation(l[1], OX, a1*math.pi/180.0)
|
||||||
|
v[4] = geompy.MakeRotation(v[0], OX, a1*math.pi/180.0)
|
||||||
|
v[6] = geompy.MakeRotation(v[1], OX, a1*math.pi/180.0)
|
||||||
|
|
||||||
|
v[2] = geompy.MakeVertex(0, -r1/2.0, 0)
|
||||||
|
v[3] = geompy.MakeVertex(0, -r1, 0)
|
||||||
|
l[3] = geompy.MakeLineTwoPnt(v[2], v[3])
|
||||||
|
l[4] = geompy.MakeRotation(l[3], OX, -a1*math.pi/180.0)
|
||||||
|
v[5] = geompy.MakeRotation(v[2], OX, -a1*math.pi/180.0)
|
||||||
|
v[7] = geompy.MakeRotation(v[3], OX, -a1*math.pi/180.0)
|
||||||
|
|
||||||
|
l[5] = geompy.MakeLineTwoPnt(v[4], v[5])
|
||||||
|
l[6] = geompy.MakeLineTwoPnt(v[0], v[4])
|
||||||
|
l[7] = geompy.MakeLineTwoPnt(v[2], v[5])
|
||||||
|
|
||||||
|
v7 = geompy.MakeVertex(0, 0, r1)
|
||||||
|
arc1 = geompy.MakeArc(v[1], v7, v[3])
|
||||||
|
l[0] = geompy.MakeLineTwoPnt(v[1], v[3])
|
||||||
|
face1 = geompy.MakeFaceWires([arc1, l[0]], 1)
|
||||||
|
part1 = geompy.MakePartition([face1], [l[2], l[4], l[5], l[6], l[7]], [], [], geompy.ShapeType["FACE"], 0, [], 0, True)
|
||||||
|
|
||||||
|
if roty != 0:
|
||||||
|
vrot = [ geompy.MakeRotation(vert, OY, roty*math.pi/180.0) for vert in v ]
|
||||||
|
lrot = [ geompy.MakeRotation(lin, OY, roty*math.pi/180.0) for lin in l ]
|
||||||
|
arc = geompy.MakeRotation(arc1, OY, roty*math.pi/180.0)
|
||||||
|
part = geompy.MakeRotation(part1, OY, roty*math.pi/180.0)
|
||||||
|
return vrot, lrot, arc, part
|
||||||
|
else:
|
||||||
|
return v, l, arc1, part1
|
||||||
|
|
||||||
|
def pointsProjetes(vref, face):
|
||||||
|
vface = geompy.ExtractShapes(face, geompy.ShapeType["VERTEX"], True)
|
||||||
|
vord = range(len(vref))
|
||||||
|
plan = geompy.MakePlaneThreePnt(vref[0], vref[1], vref[-1], 10000)
|
||||||
|
vproj = [ geompy.MakeProjection(vert, plan) for vert in vface ]
|
||||||
|
for i,v in enumerate(vproj):
|
||||||
|
dist = [ (geompy.MinDistance(v, vr), j) for j,vr in enumerate(vref) ]
|
||||||
|
dist.sort()
|
||||||
|
#print dist
|
||||||
|
if dist[0][0] < 1.e-3:
|
||||||
|
vord[dist[0][1]] = vface[i]
|
||||||
|
return vord
|
||||||
|
|
||||||
|
def arcsProjetes(vf, face):
|
||||||
|
lface = geompy.ExtractShapes(face, geompy.ShapeType["EDGE"], True)
|
||||||
|
lord = range(3)
|
||||||
|
ends = [vf[1], vf[6], vf[7], vf[3]]
|
||||||
|
for i in range(3):
|
||||||
|
for lf in lface:
|
||||||
|
pts = geompy.ExtractShapes(lf, geompy.ShapeType["VERTEX"], True)
|
||||||
|
if (((geompy.MinDistance(pts[0], ends[i]) < 0.001) and (geompy.MinDistance(pts[1], ends[i+1]) < 0.001)) or
|
||||||
|
((geompy.MinDistance(pts[1], ends[i]) < 0.001) and (geompy.MinDistance(pts[0], ends[i+1]) < 0.001))):
|
||||||
|
lord[i] = lf
|
||||||
|
print "arc_%d OK"%i
|
||||||
|
break
|
||||||
|
pass
|
||||||
|
return lord
|
||||||
|
|
||||||
|
# --- sections droites des deux demi cylindres avec le partionnement
|
||||||
|
|
||||||
|
v1, l1, arc1, part1 = demidisk(r1, a1)
|
||||||
|
v2, l2, arc2, part2 = demidisk(r2, a1, 90.0)
|
||||||
|
|
||||||
|
geompy.addToStudy(part1, 'part1')
|
||||||
|
geompy.addToStudy(part2, 'part2')
|
||||||
|
|
||||||
|
# --- extrusion des sections --> demi cylindres de travail, pour en extraire les sections utilisées au niveau du Té
|
||||||
|
# et enveloppe cylindrique du cylindre principal
|
||||||
|
|
||||||
|
demicyl1 = geompy.MakePrismVecH(part1, OX, h1)
|
||||||
|
demicyl2 = geompy.MakePrismVecH(part2, OZ, h2)
|
||||||
|
arcextru = geompy.MakePrismVecH(arc1, OX, h1)
|
||||||
|
|
||||||
|
geompy.addToStudy(demicyl1, 'demicyl1')
|
||||||
|
geompy.addToStudy(demicyl2, 'demicyl2')
|
||||||
|
geompy.addToStudy(arcextru, 'arcextru')
|
||||||
|
|
||||||
|
# --- plan de coupe à 45° sur le cylindre principal,
|
||||||
|
# section à 45° du cylndre principal,
|
||||||
|
# section du cylindre secondaire par l'enveloppe cylindique du cylindre principal
|
||||||
|
|
||||||
|
plan1 = geompy.MakePlane(O, OX, 4*r1)
|
||||||
|
planr = geompy.MakeRotation(plan1, OY, 45*math.pi/180.0)
|
||||||
|
geompy.addToStudy(planr, 'planr')
|
||||||
|
|
||||||
|
sect45 = geompy.MakeCommonList([demicyl1, planr], True)
|
||||||
|
geompy.addToStudy(sect45, 'sect45')
|
||||||
|
|
||||||
|
sect90 = geompy.MakeCommonList([demicyl2, arcextru], True)
|
||||||
|
geompy.addToStudy(sect90, 'sect90')
|
||||||
|
|
||||||
|
# --- liste ordonnée des points projetés sur les deux sections
|
||||||
|
|
||||||
|
vord45 = pointsProjetes(v1, sect45)
|
||||||
|
vord90 = pointsProjetes(v2, sect90)
|
||||||
|
for i,v in enumerate(vord45):
|
||||||
|
geompy.addToStudyInFather(sect45, v, 'v%d'%i)
|
||||||
|
for i,v in enumerate(vord90):
|
||||||
|
geompy.addToStudyInFather(sect90, v, 'v%d'%i)
|
||||||
|
|
||||||
|
# --- identification des projections des trois arcs de cercle, sur les deux sections.
|
||||||
|
|
||||||
|
lord45 = arcsProjetes(vord45, sect45)
|
||||||
|
lord90 = arcsProjetes(vord90, sect90)
|
||||||
|
for i,l in enumerate(lord45):
|
||||||
|
geompy.addToStudyInFather(sect45, l, 'l%d'%i)
|
||||||
|
for i,l in enumerate(lord90):
|
||||||
|
geompy.addToStudyInFather(sect90, l, 'l%d'%i)
|
||||||
|
|
||||||
|
# --- abaissement des quatre points centraux de la section du cylindre secondaire
|
||||||
|
|
||||||
|
dz = -r2/2.0
|
||||||
|
for i in (0, 2, 4, 5):
|
||||||
|
vord90[i] = geompy.TranslateDXDYDZ(vord90[i], 0, 0, dz, True)
|
||||||
|
geompy.addToStudyInFather(sect90, vord90[i], 'vm%d'%i)
|
||||||
|
|
||||||
|
# --- création des deux arêtes curvilignes sur l'enveloppe cylindrique du cylindre principal, à la jonction
|
||||||
|
|
||||||
|
curv = [None for i in range(4)] # liaisons entre les points 1, 3, 6 et 7 des 2 sections
|
||||||
|
|
||||||
|
curv[0] = geompy.MakeArcCenter(O, vord90[1] , vord45[1], False)
|
||||||
|
curv[1] = geompy.MakeArcCenter(O, vord90[3] , vord45[3], False)
|
||||||
|
|
||||||
|
lipts = ((6, 6, 4), (7, 7, 5))
|
||||||
|
for i, ipts in enumerate(lipts):
|
||||||
|
print i, ipts
|
||||||
|
p0 = vord90[ipts[0]]
|
||||||
|
p1 = vord45[ipts[1]]
|
||||||
|
p2 = vord45[ipts[2]]
|
||||||
|
plan = geompy.MakePlaneThreePnt(p0, p1, p2, 10000)
|
||||||
|
#geompy.addToStudy(plan, "plan%d"%i)
|
||||||
|
section = geompy.MakeSection(plan, arcextru, True)
|
||||||
|
secpart = geompy.MakePartition([section], [sect45, sect90], [], [], geompy.ShapeType["EDGE"], 0, [], 0, True)
|
||||||
|
#geompy.addToStudy(secpart, "secpart%d"%i)
|
||||||
|
lsec = geompy.ExtractShapes(secpart, geompy.ShapeType["EDGE"], True)
|
||||||
|
#print "len(lsec)", len(lsec)
|
||||||
|
for l in lsec:
|
||||||
|
pts = geompy.ExtractShapes(l, geompy.ShapeType["VERTEX"], True)
|
||||||
|
if (((geompy.MinDistance(pts[0], p0) < 0.001) and (geompy.MinDistance(pts[1], p1) < 0.001)) or
|
||||||
|
((geompy.MinDistance(pts[1], p0) < 0.001) and (geompy.MinDistance(pts[0], p1) < 0.001))):
|
||||||
|
curv[i+2] =l
|
||||||
|
#print "curv_%d OK"%i
|
||||||
|
break
|
||||||
|
for i,l in enumerate(curv):
|
||||||
|
geompy.addToStudyInFather(arcextru, l, "curv%d"%i)
|
||||||
|
|
||||||
|
# --- creation des arêtes droites manquantes, des faces et volumes pour les quatre volumes de la jonction
|
||||||
|
|
||||||
|
edges = [None for i in range(8)]
|
||||||
|
edges[0] = geompy.MakeLineTwoPnt(vord45[0], vord90[0])
|
||||||
|
edges[1] = curv[0]
|
||||||
|
edges[2] = geompy.MakeLineTwoPnt(vord45[2], vord90[2])
|
||||||
|
edges[3] = curv[1]
|
||||||
|
edges[4] = geompy.MakeLineTwoPnt(vord45[4], vord90[4])
|
||||||
|
edges[5] = geompy.MakeLineTwoPnt(vord45[5], vord90[5])
|
||||||
|
edges[6] = curv[2]
|
||||||
|
edges[7] = curv[3]
|
||||||
|
for i,l in enumerate(edges):
|
||||||
|
geompy.addToStudy( l, "edge%d"%i)
|
||||||
|
|
||||||
|
ed45 = [None for i in range(8)]
|
||||||
|
ed45[0] = geompy.MakeLineTwoPnt(vord45[0], vord45[2])
|
||||||
|
ed45[1] = geompy.MakeLineTwoPnt(vord45[0], vord45[1])
|
||||||
|
ed45[2] = geompy.MakeLineTwoPnt(vord45[4], vord45[6])
|
||||||
|
ed45[3] = geompy.MakeLineTwoPnt(vord45[2], vord45[3])
|
||||||
|
ed45[4] = geompy.MakeLineTwoPnt(vord45[5], vord45[7])
|
||||||
|
ed45[5] = geompy.MakeLineTwoPnt(vord45[4], vord45[5])
|
||||||
|
ed45[6] = geompy.MakeLineTwoPnt(vord45[0], vord45[4])
|
||||||
|
ed45[7] = geompy.MakeLineTwoPnt(vord45[2], vord45[5])
|
||||||
|
for i,l in enumerate(ed45):
|
||||||
|
geompy.addToStudyInFather(sect45, l, "ed45_%d"%i)
|
||||||
|
|
||||||
|
ed90 = [None for i in range(8)]
|
||||||
|
ed90[0] = geompy.MakeLineTwoPnt(vord90[0], vord90[2])
|
||||||
|
ed90[1] = geompy.MakeLineTwoPnt(vord90[0], vord90[1])
|
||||||
|
ed90[2] = geompy.MakeLineTwoPnt(vord90[4], vord90[6])
|
||||||
|
ed90[3] = geompy.MakeLineTwoPnt(vord90[2], vord90[3])
|
||||||
|
ed90[4] = geompy.MakeLineTwoPnt(vord90[5], vord90[7])
|
||||||
|
ed90[5] = geompy.MakeLineTwoPnt(vord90[4], vord90[5])
|
||||||
|
ed90[6] = geompy.MakeLineTwoPnt(vord90[0], vord90[4])
|
||||||
|
ed90[7] = geompy.MakeLineTwoPnt(vord90[2], vord90[5])
|
||||||
|
for i,l in enumerate(ed90):
|
||||||
|
geompy.addToStudyInFather(sect90, l, "ed90_%d"%i)
|
||||||
|
|
||||||
|
faci = []
|
||||||
|
faci.append(geompy.MakeFaceWires([ed45[6], edges[0], ed90[6], edges[4]], 0))
|
||||||
|
faci.append(geompy.MakeFaceWires([ed45[7], edges[2], ed90[7], edges[5]], 0))
|
||||||
|
faci.append(geompy.MakeFaceWires([ed45[2], edges[4], ed90[2], edges[6]], 0))
|
||||||
|
faci.append(geompy.MakeFaceWires([ed45[5], edges[4], ed90[5], edges[5]], 0))
|
||||||
|
faci.append(geompy.MakeFaceWires([ed45[4], edges[5], ed90[4], edges[7]], 0))
|
||||||
|
faci.append(geompy.MakeFaceWires([ed90[0], ed90[6], ed90[5], ed90[7]], 0))
|
||||||
|
faci.append(geompy.MakeFaceWires([ed90[1], ed90[6], ed90[2], lord90[0]], 0))
|
||||||
|
faci.append(geompy.MakeFaceWires([ed90[2], ed90[5], ed90[4], lord90[1]], 0))
|
||||||
|
faci.append(geompy.MakeFaceWires([ed90[3], ed90[7], ed90[4], lord90[2]], 0))
|
||||||
|
for i,f in enumerate(faci):
|
||||||
|
geompy.addToStudy(f, "faci_%d"%i)
|
||||||
|
|
||||||
|
# --- extrusion droite des faces de jonction, pour reconstituer les demi cylindres
|
||||||
|
|
||||||
|
extru1 = geompy.MakePrismVecH(sect45, OX, h1+10)
|
||||||
|
geompy.addToStudy(extru1, "extru1")
|
||||||
|
|
||||||
|
base2 = geompy.MakePartition(faci[5:], [], [], [], geompy.ShapeType["FACE"], 0, [], 0, True)
|
||||||
|
extru2 = geompy.MakePrismVecH(base2, OZ, h2)
|
||||||
|
geompy.addToStudy(extru2, "extru2")
|
||||||
|
|
||||||
|
# --- partition et coupe
|
||||||
|
|
||||||
|
demiDisque = geompy.MakeFaceWires([arc1, l1[0]], 1)
|
||||||
|
demiCylindre = geompy.MakePrismVecH(demiDisque, OX, h1)
|
||||||
|
#geompy.addToStudy(demiCylindre, "demiCylindre")
|
||||||
|
box = geompy.MakeBox(0, -2*(r1+h1), -2*(r1+h1), 2*(r1+h1), 2*(r1+h1), 2*(r1+h1))
|
||||||
|
rot = geompy.MakeRotation(box, OY, 45*math.pi/180.0)
|
||||||
|
#geompy.addToStudy(rot, "rot")
|
||||||
|
garder = geompy.MakeCutList(demiCylindre, [extru2, rot], True)
|
||||||
|
geompy.addToStudy(garder, "garder")
|
||||||
|
raccord = geompy.MakePartition([garder], faci, [], [], geompy.ShapeType["SOLID"], 0, [], 0, True)
|
||||||
|
assemblage = geompy.MakePartition([raccord, extru1, extru2], [], [], [], geompy.ShapeType["SOLID"], 0, [], 0, True)
|
||||||
|
geompy.addToStudy(assemblage, "assemblage")
|
||||||
|
|
||||||
|
box = geompy.MakeBox(-1, -(r1+r2), -1, h1, r1+r2, h2)
|
||||||
|
geompy.addToStudy(box, "box")
|
||||||
|
final = geompy.MakeCommonList([box, assemblage], True)
|
||||||
|
geompy.addToStudy(final, "final")
|
92
src/Tools/t_shape_dialog.py
Normal file
92
src/Tools/t_shape_dialog.py
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (C) 2010-2014 CEA/DEN, EDF R&D, OPEN CASCADE
|
||||||
|
#
|
||||||
|
# This library is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU Lesser General Public
|
||||||
|
# License as published by the Free Software Foundation; either
|
||||||
|
# version 2.1 of the License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library 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 Lesser General Public
|
||||||
|
# License along with this library; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
#
|
||||||
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
|
#
|
||||||
|
# Author : Renaud Nédélec (OpenCascade S.A.S)
|
||||||
|
|
||||||
|
import sys
|
||||||
|
from PyQt4 import QtGui
|
||||||
|
from PyQt4 import QtCore
|
||||||
|
|
||||||
|
from t_shape_dialog_ui import Ui_Dialog
|
||||||
|
|
||||||
|
|
||||||
|
class TShapeDialog(QtGui.QDialog):
|
||||||
|
def __init__(self):
|
||||||
|
QtGui.QDialog.__init__(self, None, QtCore.Qt.Tool)
|
||||||
|
# Set up the user interface from Designer.
|
||||||
|
self.ui = Ui_Dialog()
|
||||||
|
self.ui.setupUi(self)
|
||||||
|
self.show()
|
||||||
|
|
||||||
|
def accept(self):
|
||||||
|
print "DATA ACCEPTED"
|
||||||
|
self._wasOk = True
|
||||||
|
QtGui.QDialog.accept(self)
|
||||||
|
|
||||||
|
def getData(self):
|
||||||
|
print "DATA : %f"%(self.ui.doubleSpinBox.value())
|
||||||
|
|
||||||
|
#def setupUi(self):
|
||||||
|
#TShapeDialog_UI.setupUi(self)
|
||||||
|
#self.handleAcceptWith(self.accept)
|
||||||
|
#self.handleRejectWith(self.reject)
|
||||||
|
|
||||||
|
#def handleAcceptWith(self,callbackFunction):
|
||||||
|
#"""This defines the function to be connected to the signal 'accepted()' (click on Ok)"""
|
||||||
|
#QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), callbackFunction)
|
||||||
|
|
||||||
|
#def handleRejectWith(self,callbackFunction):
|
||||||
|
#"""This defines the function to be connected to the signal 'rejected()' (click on Cancel)"""
|
||||||
|
#QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), callbackFunction)
|
||||||
|
|
||||||
|
#def accept(self):
|
||||||
|
#'''Callback function when dialog is accepted (click Ok)'''
|
||||||
|
#self._wasOk = True
|
||||||
|
## We should test here the validity of values
|
||||||
|
#QtGui.QDialog.accept(self)
|
||||||
|
|
||||||
|
#def reject(self):
|
||||||
|
#'''Callback function when dialog is rejected (click Cancel)'''
|
||||||
|
#self._wasOk = False
|
||||||
|
#QtGui.QDialog.reject(self)
|
||||||
|
|
||||||
|
#def wasOk(self):
|
||||||
|
#return self._wasOk
|
||||||
|
|
||||||
|
#def setData(self):
|
||||||
|
#pass
|
||||||
|
|
||||||
|
#def getData(self):
|
||||||
|
#pass
|
||||||
|
|
||||||
|
# ================
|
||||||
|
# Tests
|
||||||
|
# ================
|
||||||
|
|
||||||
|
def main( args ):
|
||||||
|
import sys
|
||||||
|
app = QtGui.QApplication(sys.argv)
|
||||||
|
Dialog = TShapeDialog()
|
||||||
|
ui = Ui_Dialog()
|
||||||
|
ui.setupUi(Dialog)
|
||||||
|
Dialog.show()
|
||||||
|
sys.exit(app.exec_())
|
||||||
|
|
||||||
|
if __name__=="__main__":
|
||||||
|
main(sys.argv)
|
115
src/Tools/t_shape_dialog.ui
Normal file
115
src/Tools/t_shape_dialog.ui
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>Dialog</class>
|
||||||
|
<widget class="QDialog" name="Dialog">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>321</width>
|
||||||
|
<height>242</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Dialog</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_2"/>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="text">
|
||||||
|
<string>Big pipe radius</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_3"/>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="1">
|
||||||
|
<widget class="QDoubleSpinBox" name="doubleSpinBox_4"/>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QDoubleSpinBox" name="doubleSpinBox"/>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="text">
|
||||||
|
<string>Big pipe height</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="text">
|
||||||
|
<string>Small pipe radius</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="0">
|
||||||
|
<widget class="QLabel" name="label_4">
|
||||||
|
<property name="text">
|
||||||
|
<string>Small pipe height</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="checkBox">
|
||||||
|
<property name="text">
|
||||||
|
<string>Build solid part</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>accepted()</signal>
|
||||||
|
<receiver>Dialog</receiver>
|
||||||
|
<slot>accept()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>248</x>
|
||||||
|
<y>254</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>157</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>rejected()</signal>
|
||||||
|
<receiver>Dialog</receiver>
|
||||||
|
<slot>reject()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>316</x>
|
||||||
|
<y>260</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>286</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
</connections>
|
||||||
|
</ui>
|
90
src/Tools/t_shape_dialog_ui.py
Normal file
90
src/Tools/t_shape_dialog_ui.py
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Form implementation generated from reading ui file 't_shape_dialog.ui'
|
||||||
|
#
|
||||||
|
# Created: Thu Jun 19 11:13:43 2014
|
||||||
|
# by: PyQt4 UI code generator 4.9.6
|
||||||
|
#
|
||||||
|
# WARNING! All changes made in this file will be lost!
|
||||||
|
|
||||||
|
from PyQt4 import QtCore, QtGui
|
||||||
|
|
||||||
|
try:
|
||||||
|
_fromUtf8 = QtCore.QString.fromUtf8
|
||||||
|
except AttributeError:
|
||||||
|
def _fromUtf8(s):
|
||||||
|
return s
|
||||||
|
|
||||||
|
try:
|
||||||
|
_encoding = QtGui.QApplication.UnicodeUTF8
|
||||||
|
def _translate(context, text, disambig):
|
||||||
|
return QtGui.QApplication.translate(context, text, disambig, _encoding)
|
||||||
|
except AttributeError:
|
||||||
|
def _translate(context, text, disambig):
|
||||||
|
return QtGui.QApplication.translate(context, text, disambig)
|
||||||
|
|
||||||
|
class Ui_Dialog(object):
|
||||||
|
def setupUi(self, Dialog):
|
||||||
|
Dialog.setObjectName(_fromUtf8("Dialog"))
|
||||||
|
Dialog.resize(331, 242)
|
||||||
|
self.verticalLayout = QtGui.QVBoxLayout(Dialog)
|
||||||
|
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
|
||||||
|
self.gridLayout = QtGui.QGridLayout()
|
||||||
|
self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
|
||||||
|
self.doubleSpinBox_2 = QtGui.QDoubleSpinBox(Dialog)
|
||||||
|
self.doubleSpinBox_2.setObjectName(_fromUtf8("doubleSpinBox_2"))
|
||||||
|
self.gridLayout.addWidget(self.doubleSpinBox_2, 2, 1, 1, 1)
|
||||||
|
self.label = QtGui.QLabel(Dialog)
|
||||||
|
self.label.setObjectName(_fromUtf8("label"))
|
||||||
|
self.gridLayout.addWidget(self.label, 0, 0, 1, 1)
|
||||||
|
self.doubleSpinBox_3 = QtGui.QDoubleSpinBox(Dialog)
|
||||||
|
self.doubleSpinBox_3.setObjectName(_fromUtf8("doubleSpinBox_3"))
|
||||||
|
self.gridLayout.addWidget(self.doubleSpinBox_3, 3, 1, 1, 1)
|
||||||
|
self.doubleSpinBox_4 = QtGui.QDoubleSpinBox(Dialog)
|
||||||
|
self.doubleSpinBox_4.setObjectName(_fromUtf8("doubleSpinBox_4"))
|
||||||
|
self.gridLayout.addWidget(self.doubleSpinBox_4, 4, 1, 1, 1)
|
||||||
|
self.doubleSpinBox = QtGui.QDoubleSpinBox(Dialog)
|
||||||
|
self.doubleSpinBox.setObjectName(_fromUtf8("doubleSpinBox"))
|
||||||
|
self.gridLayout.addWidget(self.doubleSpinBox, 0, 1, 1, 1)
|
||||||
|
self.label_3 = QtGui.QLabel(Dialog)
|
||||||
|
self.label_3.setObjectName(_fromUtf8("label_3"))
|
||||||
|
self.gridLayout.addWidget(self.label_3, 3, 0, 1, 1)
|
||||||
|
self.label_2 = QtGui.QLabel(Dialog)
|
||||||
|
self.label_2.setObjectName(_fromUtf8("label_2"))
|
||||||
|
self.gridLayout.addWidget(self.label_2, 2, 0, 1, 1)
|
||||||
|
self.label_4 = QtGui.QLabel(Dialog)
|
||||||
|
self.label_4.setObjectName(_fromUtf8("label_4"))
|
||||||
|
self.gridLayout.addWidget(self.label_4, 4, 0, 1, 1)
|
||||||
|
self.verticalLayout.addLayout(self.gridLayout)
|
||||||
|
self.checkBox = QtGui.QCheckBox(Dialog)
|
||||||
|
self.checkBox.setObjectName(_fromUtf8("checkBox"))
|
||||||
|
self.verticalLayout.addWidget(self.checkBox)
|
||||||
|
self.buttonBox = QtGui.QDialogButtonBox(Dialog)
|
||||||
|
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
|
||||||
|
self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
|
||||||
|
self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
|
||||||
|
self.verticalLayout.addWidget(self.buttonBox)
|
||||||
|
|
||||||
|
self.retranslateUi(Dialog)
|
||||||
|
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), Dialog.accept)
|
||||||
|
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), Dialog.reject)
|
||||||
|
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
||||||
|
|
||||||
|
def retranslateUi(self, Dialog):
|
||||||
|
Dialog.setWindowTitle(_translate("Dialog", "Dialog", None))
|
||||||
|
self.label.setText(_translate("Dialog", "Big pipe radius", None))
|
||||||
|
self.label_3.setText(_translate("Dialog", "Big pipe height", None))
|
||||||
|
self.label_2.setText(_translate("Dialog", "Small pipe radius", None))
|
||||||
|
self.label_4.setText(_translate("Dialog", "Small pipe height", None))
|
||||||
|
self.checkBox.setText(_translate("Dialog", "Build solid part", None))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import sys
|
||||||
|
app = QtGui.QApplication(sys.argv)
|
||||||
|
Dialog = QtGui.QDialog()
|
||||||
|
ui = Ui_Dialog()
|
||||||
|
ui.setupUi(Dialog)
|
||||||
|
Dialog.show()
|
||||||
|
sys.exit(app.exec_())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user