Salome HOME
nouveaux menus et boutons
[modules/hydrosolver.git] / src / HYDROGUI / LiquidBoundariesDialog.py
diff --git a/src/HYDROGUI/LiquidBoundariesDialog.py b/src/HYDROGUI/LiquidBoundariesDialog.py
new file mode 100644 (file)
index 0000000..f860d89
--- /dev/null
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+
+import sys, os
+import string
+
+#hydro_solver_root = os.path.join(os.environ['HYDROSOLVER_ROOT_DIR'], 'lib', 'python2.7', 'site-packages', 'salome', 'salome', 'hydro')
+
+#import salome
+#salome.salome_init()
+
+#import HYDROPy
+
+from PyQt5.QtWidgets import QDialog, QFileDialog, QTableWidgetItem, QComboBox, QMessageBox
+from PyQt5 import uic
+
+#import SalomePyQt
+#import libSALOME_Swig
+#salome_gui = libSALOME_Swig.SALOMEGUI_Swig()
+
+class LiquidBoundariesDialog():
+
+    def __init__(self, parent = None):
+      pass
+    
+    def exec_(self):
+      msgBox = QMessageBox()
+      msgBox.setText( "The Liquid boundaries dialog is not yet implemented!" )
+      msgBox.exec_()
+
\ No newline at end of file