Salome HOME
Copyright update 2022
[modules/smesh.git] / src / Tools / Verima / Gui / nomBase.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2022  EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 # Form implementation generated from reading ui file 'nomBase.ui'
22 #
23 # Created: Wed Feb 19 11:02:51 2014
24 #      by: PyQt4 UI code generator 4.7.3
25 #
26 # WARNING! All changes made in this file will be lost!
27
28 from PyQt4 import QtCore, QtGui
29
30 class Ui_LEDataBaseName(object):
31     def setupUi(self, LEDataBaseName):
32         LEDataBaseName.setObjectName("LEDataBaseName")
33         LEDataBaseName.resize(400, 61)
34         self.gridLayout = QtGui.QGridLayout(LEDataBaseName)
35         self.gridLayout.setObjectName("gridLayout")
36         self.LEBaseName = QtGui.QLineEdit(LEDataBaseName)
37         self.LEBaseName.setMinimumSize(QtCore.QSize(341, 41))
38         self.LEBaseName.setObjectName("LEBaseName")
39         self.gridLayout.addWidget(self.LEBaseName, 0, 0, 1, 1)
40
41         self.retranslateUi(LEDataBaseName)
42         QtCore.QMetaObject.connectSlotsByName(LEDataBaseName)
43
44     def retranslateUi(self, LEDataBaseName):
45         LEDataBaseName.setWindowTitle(QtGui.QApplication.translate("LEDataBaseName", "Enter DataBase File", None, QtGui.QApplication.UnicodeUTF8))
46         self.LEBaseName.setText(QtGui.QApplication.translate("LEDataBaseName", "myMesh.db", None, QtGui.QApplication.UnicodeUTF8))
47
48
49 if __name__ == "__main__":
50     import sys
51     app = QtGui.QApplication(sys.argv)
52     LEDataBaseName = QtGui.QDialog()
53     ui = Ui_LEDataBaseName()
54     ui.setupUi(LEDataBaseName)
55     LEDataBaseName.show()
56     sys.exit(app.exec_())
57