| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # -*- coding: utf-8 -*-
- # Form implementation generated from reading ui file 'visionneuse.ui'
- #
- # Created: Fri May 23 17:25:40 2014
- # by: PyQt4 UI code generator 4.10.4
- #
- # WARNING! All changes made in this file will be lost!
- from PyQt4 import QtCore, QtGui
- try:
- _fromUtf8 = QtCore.QString.fromUtf8
- except AttributeError:
- def _fromUtf8(s):
- return s
- try:
- _encoding = QtGui.QApplication.UnicodeUTF8
- def _translate(context, text, disambig):
- return QtGui.QApplication.translate(context, text, disambig, _encoding)
- except AttributeError:
- def _translate(context, text, disambig):
- return QtGui.QApplication.translate(context, text, disambig)
- class Ui_visionneuse(object):
- def setupUi(self, visionneuse):
- visionneuse.setObjectName(_fromUtf8("visionneuse"))
- visionneuse.resize(532, 452)
- self.label = QtGui.QLabel(visionneuse)
- self.label.setGeometry(QtCore.QRect(0, 0, 531, 451))
- self.label.setObjectName(_fromUtf8("label"))
- self.retranslateUi(visionneuse)
- QtCore.QMetaObject.connectSlotsByName(visionneuse)
- def retranslateUi(self, visionneuse):
- visionneuse.setWindowTitle(_translate("visionneuse", "Form", None))
- self.label.setText(_translate("visionneuse", "TextLabel", None))
- if __name__ == "__main__":
- import sys
- app = QtGui.QApplication(sys.argv)
- visionneuse = QtGui.QWidget()
- ui = Ui_visionneuse()
- ui.setupUi(visionneuse)
- visionneuse.show()
- sys.exit(app.exec_())
|