SF.net SVN: fclient: [559] trunk/fclient/src/fclient
Status: Pre-Alpha
Brought to you by:
jurner
From: <jU...@us...> - 2008-07-08 15:49:39
|
Revision: 559 http://fclient.svn.sourceforge.net/fclient/?rev=559&view=rev Author: jUrner Date: 2008-07-08 08:49:12 -0700 (Tue, 08 Jul 2008) Log Message: ----------- ... Modified Paths: -------------- trunk/fclient/src/fclient/Ui_ViewLogger.py trunk/fclient/src/fclient/tpls/Ui_ViewLoggerWidgetTpl.py trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui Modified: trunk/fclient/src/fclient/Ui_ViewLogger.py =================================================================== --- trunk/fclient/src/fclient/Ui_ViewLogger.py 2008-07-08 15:46:33 UTC (rev 558) +++ trunk/fclient/src/fclient/Ui_ViewLogger.py 2008-07-08 15:49:12 UTC (rev 559) @@ -8,14 +8,14 @@ from . import config -from .tpls.Ui_ViewLoggerTpl import Ui_ViewLoggerTpl +from .tpls.Ui_ViewLoggerWidgetTpl import Ui_ViewLoggerWidget #********************************************************************************** # #********************************************************************************** #*********************************************************************** # #*********************************************************************** -class ViewWidgetLogger(QtGui.QWidget, Ui_ViewLoggerTpl): +class ViewLoggerWidget(QtGui.QWidget, Ui_ViewLoggerWidget): def __init__(self, parent, cfg=None): QtGui.QWidget.__init__(self, parent) @@ -33,7 +33,7 @@ import sys app = QtGui.QApplication(sys.argv) - w = ViewWidgetLogger(None) + w = ViewLoggerWidget(None) w.show() res = app.exec_() sys.exit(res) Modified: trunk/fclient/src/fclient/tpls/Ui_ViewLoggerWidgetTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewLoggerWidgetTpl.py 2008-07-08 15:46:33 UTC (rev 558) +++ trunk/fclient/src/fclient/tpls/Ui_ViewLoggerWidgetTpl.py 2008-07-08 15:49:12 UTC (rev 559) @@ -1,23 +1,23 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui' +# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui' # -# Created: Tue Jul 8 10:17:24 2008 +# Created: Tue Jul 8 17:48:36 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_ViewLoggerTpl(object): - def setupUi(self, ViewLoggerTpl): - ViewLoggerTpl.setObjectName("ViewLoggerTpl") - ViewLoggerTpl.resize(QtCore.QSize(QtCore.QRect(0,0,550,471).size()).expandedTo(ViewLoggerTpl.minimumSizeHint())) +class Ui_ViewLoggerWidget(object): + def setupUi(self, ViewLoggerWidget): + ViewLoggerWidget.setObjectName("ViewLoggerWidget") + ViewLoggerWidget.resize(QtCore.QSize(QtCore.QRect(0,0,550,471).size()).expandedTo(ViewLoggerWidget.minimumSizeHint())) - self.gridlayout = QtGui.QGridLayout(ViewLoggerTpl) + self.gridlayout = QtGui.QGridLayout(ViewLoggerWidget) self.gridlayout.setObjectName("gridlayout") - self.edLogger = QtGui.QTextEdit(ViewLoggerTpl) + self.edLogger = QtGui.QTextEdit(ViewLoggerWidget) self.edLogger.setUndoRedoEnabled(False) self.edLogger.setLineWrapMode(QtGui.QTextEdit.NoWrap) self.edLogger.setReadOnly(True) @@ -26,19 +26,19 @@ self.edLogger.setObjectName("edLogger") self.gridlayout.addWidget(self.edLogger,0,0,1,1) - self.retranslateUi(ViewLoggerTpl) - QtCore.QMetaObject.connectSlotsByName(ViewLoggerTpl) + self.retranslateUi(ViewLoggerWidget) + QtCore.QMetaObject.connectSlotsByName(ViewLoggerWidget) - def retranslateUi(self, ViewLoggerTpl): - ViewLoggerTpl.setWindowTitle(QtGui.QApplication.translate("ViewLoggerTpl", "Form", None, QtGui.QApplication.UnicodeUTF8)) + def retranslateUi(self, ViewLoggerWidget): + ViewLoggerWidget.setWindowTitle(QtGui.QApplication.translate("ViewLoggerWidget", "Form", None, QtGui.QApplication.UnicodeUTF8)) if __name__ == "__main__": import sys app = QtGui.QApplication(sys.argv) - ViewLoggerTpl = QtGui.QWidget() - ui = Ui_ViewLoggerTpl() - ui.setupUi(ViewLoggerTpl) - ViewLoggerTpl.show() + ViewLoggerWidget = QtGui.QWidget() + ui = Ui_ViewLoggerWidget() + ui.setupUi(ViewLoggerWidget) + ViewLoggerWidget.show() sys.exit(app.exec_()) Modified: trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui =================================================================== --- trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui 2008-07-08 15:46:33 UTC (rev 558) +++ trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui 2008-07-08 15:49:12 UTC (rev 559) @@ -1,6 +1,6 @@ <ui version="4.0" > - <class>ViewLoggerTpl</class> - <widget class="QWidget" name="ViewLoggerTpl" > + <class>ViewLoggerWidget</class> + <widget class="QWidget" name="ViewLoggerWidget" > <property name="geometry" > <rect> <x>0</x> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |