from salome.geom.t_shape import t_shape_dialog
from salome.geom.t_shape import t_shape_progress
import xalome
- from PyQt4.QtGui import QMessageBox
+ from qtsalome import QMessageBox
activeStudy = context.study
dialog = t_shape_dialog.TShapeDialog()
# Author : Renaud Nédélec (OpenCascade S.A.S)
import sys
-from PyQt4 import QtGui
-from PyQt4 import QtCore
+from qtsalome import *
from t_shape_dialog_ui import Ui_Dialog
-class TShapeDialog(QtGui.QDialog):
+class TShapeDialog(QDialog):
def __init__(self):
- QtGui.QDialog.__init__(self, None, QtCore.Qt.Tool)
+ QDialog.__init__(self, None, Qt.Tool)
# Set up the user interface from Designer.
self.ui = Ui_Dialog()
self.ui.setupUi(self)
def accept(self):
self._wasOk = True
- QtGui.QDialog.accept(self)
+ QDialog.accept(self)
def getData(self):
r1 = self.ui.dsb_bigRadius.value()
def reject(self):
self._wasOk = False
- QtGui.QDialog.reject(self)
+ QDialog.reject(self)
def wasOk(self):
return self._wasOk
def main( args ):
import sys
- app = QtGui.QApplication(sys.argv)
+ app = QApplication(sys.argv)
Dialog = TShapeDialog()
ui = Ui_Dialog()
ui.setupUi(Dialog)
# Author : Renaud Nédélec (OpenCascade S.A.S)
from salome.geom.t_shape import t_shape_builder
-from PyQt4.QtGui import QProgressDialog
-from PyQt4 import QtCore
+from qtsalome import *
class t_shape_progress(QProgressDialog):
_totSteps = 0
_nmaxSteps = 27
def __init__(self, parent=None):
- QProgressDialog.__init__(self, "t_shape fluid build", "stop", 0, self._nmaxSteps, parent, QtCore.Qt.Tool)
+ QProgressDialog.__init__(self, "t_shape fluid build", "stop", 0, self._nmaxSteps, parent, Qt.Tool)
self.show()
def run(self, activeStudy, r1, r2, h1, h2, thickness):