Salome HOME
Merge branch 'V9_9_BR'
[modules/smesh.git] / src / Tools / Verima / Gui / monEditor.py
index 127ad7777de462739948ba582d37b4985e776fdb..1414fed86a4a37f3d7426392f07205c40d6d9b1f 100644 (file)
@@ -1,7 +1,23 @@
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
-from PyQt4.QtSql import *
+# Copyright (C) 2013-2022  EDF R&D
+#
+# 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
+#
 
+from qtsalome import *
 
 class TableEditor(QDialog):
 
@@ -20,7 +36,7 @@ class TableEditor(QDialog):
          quitButton=QPushButton("Quit")
          buttonBox=QDialogButtonBox(Qt.Vertical)
          buttonBox.addButton(quitButton, QDialogButtonBox.RejectRole);
-         self.connect(quitButton, SIGNAL("clicked()"), self, SLOT("close()"))
+         quitButton.clicked.connect(self.close)
 
          mainLayout = QHBoxLayout(self)
          mainLayout.addWidget(self.view)
@@ -33,14 +49,14 @@ class TableEditor(QDialog):
          self.view.resizeColumnsToContents()
          self.view.adjustSize()
          self.adjustSize()
-         self.connect(self.view,SIGNAL("pressed(QModelIndex*)"),self.donneLigne)
-         self.connect(self.view,SIGNAL("itemPressed(QTableWidgetItem*)"),self.donneLigne)
-         self.connect(self.view,SIGNAL("clicked(QModelIndex*)"),self.donneLigne)
-         self.connect(self.view,SIGNAL("clicked()"),self.donneLigne)
-         self.connect(self.view,SIGNAL("pressed()"),self.donneLigne)
+         self.view.pressed[QModelIndex].connect(self.donneLigne)
+         self.view.itemPressed[QTableWidgetItem].connect(self.donneLigne)
+         self.view.clicked[QModelIndex].connect(self.donneLigne)
+         self.view.clicked.connect(self.donneLigne)
+         self.view.pressed.connect(self.donneLigne)
 
      def donneLigne(self):
-         print "jjjjjjjjjjjjjjjj"
+         print("jjjjjjjjjjjjjjjj")
 
      def setTitle(self):
          fields=self.table.getFields()