SF.net SVN: fclient: [551] trunk/fclient/src/fclient/tpls/ Ui_ViewConnectionTpl.py
Status: Pre-Alpha
Brought to you by:
jurner
From: <jU...@us...> - 2008-07-08 15:36:40
|
Revision: 551 http://fclient.svn.sourceforge.net/fclient/?rev=551&view=rev Author: jUrner Date: 2008-07-08 08:36:11 -0700 (Tue, 08 Jul 2008) Log Message: ----------- ... Modified Paths: -------------- trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py Modified: trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py 2008-07-08 10:53:00 UTC (rev 550) +++ trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py 2008-07-08 15:36:11 UTC (rev 551) @@ -2,19 +2,19 @@ # Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui' # -# Created: Tue Jul 8 11:16:14 2008 +# Created: Tue Jul 8 17:34:45 2008 # by: PyQt4 UI code generator 4.3.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui -class Ui_ViewConnectionTpl(object): - def setupUi(self, ViewConnectionTpl): - ViewConnectionTpl.setObjectName("ViewConnectionTpl") - ViewConnectionTpl.resize(QtCore.QSize(QtCore.QRect(0,0,533,363).size()).expandedTo(ViewConnectionTpl.minimumSizeHint())) +class Ui_ViewConnectionWidget(object): + def setupUi(self, ViewConnectionWidget): + ViewConnectionWidget.setObjectName("ViewConnectionWidget") + ViewConnectionWidget.resize(QtCore.QSize(QtCore.QRect(0,0,533,363).size()).expandedTo(ViewConnectionWidget.minimumSizeHint())) - self.gridlayout = QtGui.QGridLayout(ViewConnectionTpl) + self.gridlayout = QtGui.QGridLayout(ViewConnectionWidget) self.gridlayout.setObjectName("gridlayout") self.hboxlayout = QtGui.QHBoxLayout() @@ -23,11 +23,11 @@ self.vboxlayout = QtGui.QVBoxLayout() self.vboxlayout.setObjectName("vboxlayout") - self.label = QtGui.QLabel(ViewConnectionTpl) + self.label = QtGui.QLabel(ViewConnectionWidget) self.label.setObjectName("label") self.vboxlayout.addWidget(self.label) - self.label_2 = QtGui.QLabel(ViewConnectionTpl) + self.label_2 = QtGui.QLabel(ViewConnectionWidget) self.label_2.setObjectName("label_2") self.vboxlayout.addWidget(self.label_2) self.hboxlayout.addLayout(self.vboxlayout) @@ -35,11 +35,11 @@ self.vboxlayout1 = QtGui.QVBoxLayout() self.vboxlayout1.setObjectName("vboxlayout1") - self.edConnectionHost = QtGui.QLineEdit(ViewConnectionTpl) + self.edConnectionHost = QtGui.QLineEdit(ViewConnectionWidget) self.edConnectionHost.setObjectName("edConnectionHost") self.vboxlayout1.addWidget(self.edConnectionHost) - self.spinConnectionPort = QtGui.QSpinBox(ViewConnectionTpl) + self.spinConnectionPort = QtGui.QSpinBox(ViewConnectionWidget) self.spinConnectionPort.setObjectName("spinConnectionPort") self.vboxlayout1.addWidget(self.spinConnectionPort) self.hboxlayout.addLayout(self.vboxlayout1) @@ -48,27 +48,27 @@ spacerItem = QtGui.QSpacerItem(515,111,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding) self.gridlayout.addItem(spacerItem,1,0,1,1) - self.btConnect = QtGui.QPushButton(ViewConnectionTpl) + self.btConnect = QtGui.QPushButton(ViewConnectionWidget) self.btConnect.setCheckable(True) self.btConnect.setObjectName("btConnect") self.gridlayout.addWidget(self.btConnect,2,0,1,1) - self.retranslateUi(ViewConnectionTpl) - QtCore.QMetaObject.connectSlotsByName(ViewConnectionTpl) + self.retranslateUi(ViewConnectionWidget) + QtCore.QMetaObject.connectSlotsByName(ViewConnectionWidget) - def retranslateUi(self, ViewConnectionTpl): - ViewConnectionTpl.setWindowTitle(QtGui.QApplication.translate("ViewConnectionTpl", "Form", None, QtGui.QApplication.UnicodeUTF8)) - self.label.setText(QtGui.QApplication.translate("ViewConnectionTpl", "Host:", None, QtGui.QApplication.UnicodeUTF8)) - self.label_2.setText(QtGui.QApplication.translate("ViewConnectionTpl", "Port:", None, QtGui.QApplication.UnicodeUTF8)) - self.btConnect.setText(QtGui.QApplication.translate("ViewConnectionTpl", "Connect", None, QtGui.QApplication.UnicodeUTF8)) + def retranslateUi(self, ViewConnectionWidget): + ViewConnectionWidget.setWindowTitle(QtGui.QApplication.translate("ViewConnectionWidget", "Form", None, QtGui.QApplication.UnicodeUTF8)) + self.label.setText(QtGui.QApplication.translate("ViewConnectionWidget", "Host:", None, QtGui.QApplication.UnicodeUTF8)) + self.label_2.setText(QtGui.QApplication.translate("ViewConnectionWidget", "Port:", None, QtGui.QApplication.UnicodeUTF8)) + self.btConnect.setText(QtGui.QApplication.translate("ViewConnectionWidget", "Connect", None, QtGui.QApplication.UnicodeUTF8)) if __name__ == "__main__": import sys app = QtGui.QApplication(sys.argv) - ViewConnectionTpl = QtGui.QWidget() - ui = Ui_ViewConnectionTpl() - ui.setupUi(ViewConnectionTpl) - ViewConnectionTpl.show() + ViewConnectionWidget = QtGui.QWidget() + ui = Ui_ViewConnectionWidget() + ui.setupUi(ViewConnectionWidget) + ViewConnectionWidget.show() sys.exit(app.exec_()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |