SF.net SVN: fclient: [621] trunk/fclient/src/fclient/tpls
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-07-13 14:19:04
|
Revision: 621
http://fclient.svn.sourceforge.net/fclient/?rev=621&view=rev
Author: jUrner
Date: 2008-07-13 07:19:10 -0700 (Sun, 13 Jul 2008)
Log Message:
-----------
templates for browser widget
Added Paths:
-----------
trunk/fclient/src/fclient/tpls/Ui_ViewBrowserWidgetTpl.py
trunk/fclient/src/fclient/tpls/ViewBrowserWidgetTpl.ui
Added: trunk/fclient/src/fclient/tpls/Ui_ViewBrowserWidgetTpl.py
===================================================================
--- trunk/fclient/src/fclient/tpls/Ui_ViewBrowserWidgetTpl.py (rev 0)
+++ trunk/fclient/src/fclient/tpls/Ui_ViewBrowserWidgetTpl.py 2008-07-13 14:19:10 UTC (rev 621)
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+
+# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewBrowserWidgetTpl.ui'
+#
+# Created: Sun Jul 13 14:59:28 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_ViewBrowserWidget(object):
+ def setupUi(self, ViewBrowserWidget):
+ ViewBrowserWidget.setObjectName("ViewBrowserWidget")
+ ViewBrowserWidget.resize(QtCore.QSize(QtCore.QRect(0,0,533,356).size()).expandedTo(ViewBrowserWidget.minimumSizeHint()))
+
+ self.retranslateUi(ViewBrowserWidget)
+ QtCore.QMetaObject.connectSlotsByName(ViewBrowserWidget)
+
+ def retranslateUi(self, ViewBrowserWidget):
+ ViewBrowserWidget.setWindowTitle(QtGui.QApplication.translate("ViewBrowserWidget", "Form", None, QtGui.QApplication.UnicodeUTF8))
+
+
+
+if __name__ == "__main__":
+ import sys
+ app = QtGui.QApplication(sys.argv)
+ ViewBrowserWidget = QtGui.QWidget()
+ ui = Ui_ViewBrowserWidget()
+ ui.setupUi(ViewBrowserWidget)
+ ViewBrowserWidget.show()
+ sys.exit(app.exec_())
Added: trunk/fclient/src/fclient/tpls/ViewBrowserWidgetTpl.ui
===================================================================
--- trunk/fclient/src/fclient/tpls/ViewBrowserWidgetTpl.ui (rev 0)
+++ trunk/fclient/src/fclient/tpls/ViewBrowserWidgetTpl.ui 2008-07-13 14:19:10 UTC (rev 621)
@@ -0,0 +1,18 @@
+<ui version="4.0" >
+ <class>ViewBrowserWidget</class>
+ <widget class="QWidget" name="ViewBrowserWidget" >
+ <property name="geometry" >
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>533</width>
+ <height>356</height>
+ </rect>
+ </property>
+ <property name="windowTitle" >
+ <string>Form</string>
+ </property>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|