X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FTools%2FVerima%2FGui%2FmaFenetreChoix.py;h=359ceb4add2702a319352367b748bc9aec7de9f2;hp=3a52bab9eb7ad234af0f30d87eaa3c5e48c77f30;hb=b1dc148ec5d80d275b75a73d5a2e6206df5b803e;hpb=19ca9f1ce58d0ac210eb93fde971398838fef563 diff --git a/src/Tools/Verima/Gui/maFenetreChoix.py b/src/Tools/Verima/Gui/maFenetreChoix.py index 3a52bab9e..359ceb4ad 100644 --- a/src/Tools/Verima/Gui/maFenetreChoix.py +++ b/src/Tools/Verima/Gui/maFenetreChoix.py @@ -23,6 +23,8 @@ class MaFenetreChoix(Ui_Choix ,QtGui.QDialog): self.connect(self.PBMachine,SIGNAL("clicked()"),self.MachinePush) self.connect(self.PBGroupe,SIGNAL("clicked()"),self.GroupePush) self.connect(self.PBRatio,SIGNAL("clicked()"),self.RatioPush) + self.connect(self.PBGroupeRatio,SIGNAL("clicked()"),self.GroupeRatioPush) + self.connect(self.PBGroupeTaille,SIGNAL("clicked()"),self.GroupeTaillePush) self.connect(self.PBPerf,SIGNAL("clicked()"),self.PerfPush) self.connect(self.PBMaille,SIGNAL("clicked()"),self.MaillePush) self.connect(self.PBTaille,SIGNAL("clicked()"),self.TaillePush) @@ -44,6 +46,15 @@ class MaFenetreChoix(Ui_Choix ,QtGui.QDialog): editor=TableEditor(self.db.maTableRatios,self) editor.exec_() + def GroupeRatioPush(self): + editor=TableEditor(self.db.maTableGroupeRatios,self) + editor.exec_() + + def GroupeTaillePush(self): + editor=TableEditor(self.db.maTableGroupeTailles,self) + editor.exec_() + + def PerfPush(self): editor=TableEditor(self.db.maTablePerfs,self) editor.exec_()