SF.net SVN: fclient: [547] trunk/fclient/src/fclient/tpls
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-07-08 10:49:36
|
Revision: 547
http://fclient.svn.sourceforge.net/fclient/?rev=547&view=rev
Author: jUrner
Date: 2008-07-08 03:47:52 -0700 (Tue, 08 Jul 2008)
Log Message:
-----------
added template for logger interface
Added Paths:
-----------
trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py
trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui
Added: trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py
===================================================================
--- trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py (rev 0)
+++ trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py 2008-07-08 10:47:52 UTC (rev 547)
@@ -0,0 +1,44 @@
+# -*- coding: utf-8 -*-
+
+# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui'
+#
+# Created: Tue Jul 8 10:17:24 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()))
+
+ self.gridlayout = QtGui.QGridLayout(ViewLoggerTpl)
+ self.gridlayout.setObjectName("gridlayout")
+
+ self.edLogger = QtGui.QTextEdit(ViewLoggerTpl)
+ self.edLogger.setUndoRedoEnabled(False)
+ self.edLogger.setLineWrapMode(QtGui.QTextEdit.NoWrap)
+ self.edLogger.setReadOnly(True)
+ self.edLogger.setAcceptRichText(False)
+ self.edLogger.setTextInteractionFlags(QtCore.Qt.NoTextInteraction|QtCore.Qt.TextSelectableByKeyboard|QtCore.Qt.TextSelectableByMouse)
+ self.edLogger.setObjectName("edLogger")
+ self.gridlayout.addWidget(self.edLogger,0,0,1,1)
+
+ self.retranslateUi(ViewLoggerTpl)
+ QtCore.QMetaObject.connectSlotsByName(ViewLoggerTpl)
+
+ def retranslateUi(self, ViewLoggerTpl):
+ ViewLoggerTpl.setWindowTitle(QtGui.QApplication.translate("ViewLoggerTpl", "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()
+ sys.exit(app.exec_())
Added: trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui
===================================================================
--- trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui (rev 0)
+++ trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui 2008-07-08 10:47:52 UTC (rev 547)
@@ -0,0 +1,39 @@
+<ui version="4.0" >
+ <class>ViewLoggerTpl</class>
+ <widget class="QWidget" name="ViewLoggerTpl" >
+ <property name="geometry" >
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>550</width>
+ <height>471</height>
+ </rect>
+ </property>
+ <property name="windowTitle" >
+ <string>Form</string>
+ </property>
+ <layout class="QGridLayout" >
+ <item row="0" column="0" >
+ <widget class="QTextEdit" name="edLogger" >
+ <property name="undoRedoEnabled" >
+ <bool>false</bool>
+ </property>
+ <property name="lineWrapMode" >
+ <enum>QTextEdit::NoWrap</enum>
+ </property>
+ <property name="readOnly" >
+ <bool>true</bool>
+ </property>
+ <property name="acceptRichText" >
+ <bool>false</bool>
+ </property>
+ <property name="textInteractionFlags" >
+ <set>Qt::NoTextInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|