Thread: SF.net SVN: fclient: [545] trunk/fclient/src/fclient/tpls
Status: Pre-Alpha
Brought to you by:
jurner
From: <jU...@us...> - 2008-07-08 10:47:01
|
Revision: 545 http://fclient.svn.sourceforge.net/fclient/?rev=545&view=rev Author: jUrner Date: 2008-07-08 03:46:06 -0700 (Tue, 08 Jul 2008) Log Message: ----------- added template for fcp connection interface Added Paths: ----------- trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui Added: trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py (rev 0) +++ trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py 2008-07-08 10:46:06 UTC (rev 545) @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- + +# 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 +# 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())) + + self.gridlayout = QtGui.QGridLayout(ViewConnectionTpl) + self.gridlayout.setObjectName("gridlayout") + + self.hboxlayout = QtGui.QHBoxLayout() + self.hboxlayout.setObjectName("hboxlayout") + + self.vboxlayout = QtGui.QVBoxLayout() + self.vboxlayout.setObjectName("vboxlayout") + + self.label = QtGui.QLabel(ViewConnectionTpl) + self.label.setObjectName("label") + self.vboxlayout.addWidget(self.label) + + self.label_2 = QtGui.QLabel(ViewConnectionTpl) + self.label_2.setObjectName("label_2") + self.vboxlayout.addWidget(self.label_2) + self.hboxlayout.addLayout(self.vboxlayout) + + self.vboxlayout1 = QtGui.QVBoxLayout() + self.vboxlayout1.setObjectName("vboxlayout1") + + self.edConnectionHost = QtGui.QLineEdit(ViewConnectionTpl) + self.edConnectionHost.setObjectName("edConnectionHost") + self.vboxlayout1.addWidget(self.edConnectionHost) + + self.spinConnectionPort = QtGui.QSpinBox(ViewConnectionTpl) + self.spinConnectionPort.setObjectName("spinConnectionPort") + self.vboxlayout1.addWidget(self.spinConnectionPort) + self.hboxlayout.addLayout(self.vboxlayout1) + self.gridlayout.addLayout(self.hboxlayout,0,0,1,1) + + 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.setCheckable(True) + self.btConnect.setObjectName("btConnect") + self.gridlayout.addWidget(self.btConnect,2,0,1,1) + + self.retranslateUi(ViewConnectionTpl) + QtCore.QMetaObject.connectSlotsByName(ViewConnectionTpl) + + 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)) + + + +if __name__ == "__main__": + import sys + app = QtGui.QApplication(sys.argv) + ViewConnectionTpl = QtGui.QWidget() + ui = Ui_ViewConnectionTpl() + ui.setupUi(ViewConnectionTpl) + ViewConnectionTpl.show() + sys.exit(app.exec_()) Added: trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui =================================================================== --- trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui (rev 0) +++ trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui 2008-07-08 10:46:06 UTC (rev 545) @@ -0,0 +1,75 @@ +<ui version="4.0" > + <class>ViewConnectionTpl</class> + <widget class="QWidget" name="ViewConnectionTpl" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>533</width> + <height>363</height> + </rect> + </property> + <property name="windowTitle" > + <string>Form</string> + </property> + <layout class="QGridLayout" > + <item row="0" column="0" > + <layout class="QHBoxLayout" > + <item> + <layout class="QVBoxLayout" > + <item> + <widget class="QLabel" name="label" > + <property name="text" > + <string>Host:</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_2" > + <property name="text" > + <string>Port:</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <layout class="QVBoxLayout" > + <item> + <widget class="QLineEdit" name="edConnectionHost" /> + </item> + <item> + <widget class="QSpinBox" name="spinConnectionPort" /> + </item> + </layout> + </item> + </layout> + </item> + <item row="1" column="0" > + <spacer> + <property name="orientation" > + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" > + <size> + <width>515</width> + <height>111</height> + </size> + </property> + </spacer> + </item> + <item row="2" column="0" > + <widget class="QPushButton" name="btConnect" > + <property name="text" > + <string>Connect</string> + </property> + <property name="checkable" > + <bool>true</bool> + </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. |
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. |
From: <jU...@us...> - 2008-07-08 10:51:59
|
Revision: 549 http://fclient.svn.sourceforge.net/fclient/?rev=549&view=rev Author: jUrner Date: 2008-07-08 03:50:53 -0700 (Tue, 08 Jul 2008) Log Message: ----------- added templates for view interface Added Paths: ----------- trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py trunk/fclient/src/fclient/tpls/ViewTpl.ui Added: trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py (rev 0) +++ trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py 2008-07-08 10:50:53 UTC (rev 549) @@ -0,0 +1,84 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewTpl.ui' +# +# Created: Tue Jul 8 12:13:15 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_ViewTpl(object): + def setupUi(self, ViewTpl): + ViewTpl.setObjectName("ViewTpl") + ViewTpl.resize(QtCore.QSize(QtCore.QRect(0,0,530,629).size()).expandedTo(ViewTpl.minimumSizeHint())) + + self.gridlayout = QtGui.QGridLayout(ViewTpl) + self.gridlayout.setMargin(0) + self.gridlayout.setSpacing(0) + self.gridlayout.setObjectName("gridlayout") + + self.splitter = QtGui.QSplitter(ViewTpl) + self.splitter.setOrientation(QtCore.Qt.Vertical) + self.splitter.setObjectName("splitter") + + self.frameTop = QtGui.QFrame(self.splitter) + self.frameTop.setFrameShape(QtGui.QFrame.NoFrame) + self.frameTop.setFrameShadow(QtGui.QFrame.Plain) + self.frameTop.setLineWidth(0) + self.frameTop.setObjectName("frameTop") + + self.gridlayout1 = QtGui.QGridLayout(self.frameTop) + self.gridlayout1.setMargin(0) + self.gridlayout1.setSpacing(0) + self.gridlayout1.setObjectName("gridlayout1") + + self.tabTop = QtGui.QTabWidget(self.frameTop) + self.tabTop.setObjectName("tabTop") + + self.tab_3 = QtGui.QWidget() + self.tab_3.setObjectName("tab_3") + self.tabTop.addTab(self.tab_3,"") + self.gridlayout1.addWidget(self.tabTop,0,0,1,1) + + self.frameBottom = QtGui.QFrame(self.splitter) + self.frameBottom.setFrameShape(QtGui.QFrame.NoFrame) + self.frameBottom.setFrameShadow(QtGui.QFrame.Plain) + self.frameBottom.setLineWidth(0) + self.frameBottom.setObjectName("frameBottom") + + self.gridlayout2 = QtGui.QGridLayout(self.frameBottom) + self.gridlayout2.setMargin(0) + self.gridlayout2.setSpacing(0) + self.gridlayout2.setObjectName("gridlayout2") + + self.tabBottom = QtGui.QTabWidget(self.frameBottom) + self.tabBottom.setObjectName("tabBottom") + + self.tab_5 = QtGui.QWidget() + self.tab_5.setObjectName("tab_5") + self.tabBottom.addTab(self.tab_5,"") + self.gridlayout2.addWidget(self.tabBottom,0,0,1,1) + self.gridlayout.addWidget(self.splitter,0,0,1,1) + + self.retranslateUi(ViewTpl) + self.tabTop.setCurrentIndex(0) + self.tabBottom.setCurrentIndex(0) + QtCore.QMetaObject.connectSlotsByName(ViewTpl) + + def retranslateUi(self, ViewTpl): + ViewTpl.setWindowTitle(QtGui.QApplication.translate("ViewTpl", "Form", None, QtGui.QApplication.UnicodeUTF8)) + self.tabTop.setTabText(self.tabTop.indexOf(self.tab_3), QtGui.QApplication.translate("ViewTpl", "Tab 1", None, QtGui.QApplication.UnicodeUTF8)) + self.tabBottom.setTabText(self.tabBottom.indexOf(self.tab_5), QtGui.QApplication.translate("ViewTpl", "Tab 1", None, QtGui.QApplication.UnicodeUTF8)) + + + +if __name__ == "__main__": + import sys + app = QtGui.QApplication(sys.argv) + ViewTpl = QtGui.QWidget() + ui = Ui_ViewTpl() + ui.setupUi(ViewTpl) + ViewTpl.show() + sys.exit(app.exec_()) Added: trunk/fclient/src/fclient/tpls/ViewTpl.ui =================================================================== --- trunk/fclient/src/fclient/tpls/ViewTpl.ui (rev 0) +++ trunk/fclient/src/fclient/tpls/ViewTpl.ui 2008-07-08 10:50:53 UTC (rev 549) @@ -0,0 +1,131 @@ +<ui version="4.0" > + <class>ViewTpl</class> + <widget class="QWidget" name="ViewTpl" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>530</width> + <height>629</height> + </rect> + </property> + <property name="windowTitle" > + <string>Form</string> + </property> + <layout class="QGridLayout" > + <property name="leftMargin" > + <number>0</number> + </property> + <property name="topMargin" > + <number>0</number> + </property> + <property name="rightMargin" > + <number>0</number> + </property> + <property name="bottomMargin" > + <number>0</number> + </property> + <property name="horizontalSpacing" > + <number>0</number> + </property> + <property name="verticalSpacing" > + <number>0</number> + </property> + <item row="0" column="0" > + <widget class="QSplitter" name="splitter" > + <property name="orientation" > + <enum>Qt::Vertical</enum> + </property> + <widget class="QFrame" name="frameTop" > + <property name="frameShape" > + <enum>QFrame::NoFrame</enum> + </property> + <property name="frameShadow" > + <enum>QFrame::Plain</enum> + </property> + <property name="lineWidth" > + <number>0</number> + </property> + <layout class="QGridLayout" > + <property name="leftMargin" > + <number>0</number> + </property> + <property name="topMargin" > + <number>0</number> + </property> + <property name="rightMargin" > + <number>0</number> + </property> + <property name="bottomMargin" > + <number>0</number> + </property> + <property name="horizontalSpacing" > + <number>0</number> + </property> + <property name="verticalSpacing" > + <number>0</number> + </property> + <item row="0" column="0" > + <widget class="QTabWidget" name="tabTop" > + <property name="currentIndex" > + <number>0</number> + </property> + <widget class="QWidget" name="tab_3" > + <attribute name="title" > + <string>Tab 1</string> + </attribute> + </widget> + </widget> + </item> + </layout> + </widget> + <widget class="QFrame" name="frameBottom" > + <property name="frameShape" > + <enum>QFrame::NoFrame</enum> + </property> + <property name="frameShadow" > + <enum>QFrame::Plain</enum> + </property> + <property name="lineWidth" > + <number>0</number> + </property> + <layout class="QGridLayout" > + <property name="leftMargin" > + <number>0</number> + </property> + <property name="topMargin" > + <number>0</number> + </property> + <property name="rightMargin" > + <number>0</number> + </property> + <property name="bottomMargin" > + <number>0</number> + </property> + <property name="horizontalSpacing" > + <number>0</number> + </property> + <property name="verticalSpacing" > + <number>0</number> + </property> + <item row="0" column="0" > + <widget class="QTabWidget" name="tabBottom" > + <property name="currentIndex" > + <number>0</number> + </property> + <widget class="QWidget" name="tab_5" > + <attribute name="title" > + <string>Tab 1</string> + </attribute> + </widget> + </widget> + </item> + </layout> + </widget> + </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. |
From: <jU...@us...> - 2008-07-08 15:40:25
|
Revision: 553 http://fclient.svn.sourceforge.net/fclient/?rev=553&view=rev Author: jUrner Date: 2008-07-08 08:39:17 -0700 (Tue, 08 Jul 2008) Log Message: ----------- ... Added Paths: ----------- trunk/fclient/src/fclient/tpls/Ui_ViewConnectionWidgetTpl.py Removed Paths: ------------- trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py Deleted: trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py 2008-07-08 15:36:51 UTC (rev 552) +++ trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py 2008-07-08 15:39:17 UTC (rev 553) @@ -1,74 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui' -# -# 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_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(ViewConnectionWidget) - self.gridlayout.setObjectName("gridlayout") - - self.hboxlayout = QtGui.QHBoxLayout() - self.hboxlayout.setObjectName("hboxlayout") - - self.vboxlayout = QtGui.QVBoxLayout() - self.vboxlayout.setObjectName("vboxlayout") - - self.label = QtGui.QLabel(ViewConnectionWidget) - self.label.setObjectName("label") - self.vboxlayout.addWidget(self.label) - - self.label_2 = QtGui.QLabel(ViewConnectionWidget) - self.label_2.setObjectName("label_2") - self.vboxlayout.addWidget(self.label_2) - self.hboxlayout.addLayout(self.vboxlayout) - - self.vboxlayout1 = QtGui.QVBoxLayout() - self.vboxlayout1.setObjectName("vboxlayout1") - - self.edConnectionHost = QtGui.QLineEdit(ViewConnectionWidget) - self.edConnectionHost.setObjectName("edConnectionHost") - self.vboxlayout1.addWidget(self.edConnectionHost) - - self.spinConnectionPort = QtGui.QSpinBox(ViewConnectionWidget) - self.spinConnectionPort.setObjectName("spinConnectionPort") - self.vboxlayout1.addWidget(self.spinConnectionPort) - self.hboxlayout.addLayout(self.vboxlayout1) - self.gridlayout.addLayout(self.hboxlayout,0,0,1,1) - - spacerItem = QtGui.QSpacerItem(515,111,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding) - self.gridlayout.addItem(spacerItem,1,0,1,1) - - self.btConnect = QtGui.QPushButton(ViewConnectionWidget) - self.btConnect.setCheckable(True) - self.btConnect.setObjectName("btConnect") - self.gridlayout.addWidget(self.btConnect,2,0,1,1) - - self.retranslateUi(ViewConnectionWidget) - QtCore.QMetaObject.connectSlotsByName(ViewConnectionWidget) - - 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) - ViewConnectionWidget = QtGui.QWidget() - ui = Ui_ViewConnectionWidget() - ui.setupUi(ViewConnectionWidget) - ViewConnectionWidget.show() - sys.exit(app.exec_()) Copied: trunk/fclient/src/fclient/tpls/Ui_ViewConnectionWidgetTpl.py (from rev 551, trunk/fclient/src/fclient/tpls/Ui_ViewConnectionTpl.py) =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewConnectionWidgetTpl.py (rev 0) +++ trunk/fclient/src/fclient/tpls/Ui_ViewConnectionWidgetTpl.py 2008-07-08 15:39:17 UTC (rev 553) @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui' +# +# 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_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(ViewConnectionWidget) + self.gridlayout.setObjectName("gridlayout") + + self.hboxlayout = QtGui.QHBoxLayout() + self.hboxlayout.setObjectName("hboxlayout") + + self.vboxlayout = QtGui.QVBoxLayout() + self.vboxlayout.setObjectName("vboxlayout") + + self.label = QtGui.QLabel(ViewConnectionWidget) + self.label.setObjectName("label") + self.vboxlayout.addWidget(self.label) + + self.label_2 = QtGui.QLabel(ViewConnectionWidget) + self.label_2.setObjectName("label_2") + self.vboxlayout.addWidget(self.label_2) + self.hboxlayout.addLayout(self.vboxlayout) + + self.vboxlayout1 = QtGui.QVBoxLayout() + self.vboxlayout1.setObjectName("vboxlayout1") + + self.edConnectionHost = QtGui.QLineEdit(ViewConnectionWidget) + self.edConnectionHost.setObjectName("edConnectionHost") + self.vboxlayout1.addWidget(self.edConnectionHost) + + self.spinConnectionPort = QtGui.QSpinBox(ViewConnectionWidget) + self.spinConnectionPort.setObjectName("spinConnectionPort") + self.vboxlayout1.addWidget(self.spinConnectionPort) + self.hboxlayout.addLayout(self.vboxlayout1) + self.gridlayout.addLayout(self.hboxlayout,0,0,1,1) + + spacerItem = QtGui.QSpacerItem(515,111,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding) + self.gridlayout.addItem(spacerItem,1,0,1,1) + + self.btConnect = QtGui.QPushButton(ViewConnectionWidget) + self.btConnect.setCheckable(True) + self.btConnect.setObjectName("btConnect") + self.gridlayout.addWidget(self.btConnect,2,0,1,1) + + self.retranslateUi(ViewConnectionWidget) + QtCore.QMetaObject.connectSlotsByName(ViewConnectionWidget) + + 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) + 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. |
From: <jU...@us...> - 2008-07-08 15:42:11
|
Revision: 554 http://fclient.svn.sourceforge.net/fclient/?rev=554&view=rev Author: jUrner Date: 2008-07-08 08:41:13 -0700 (Tue, 08 Jul 2008) Log Message: ----------- ... Added Paths: ----------- trunk/fclient/src/fclient/tpls/ViewConnectionWidgetTpl.ui Removed Paths: ------------- trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui Deleted: trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui =================================================================== --- trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui 2008-07-08 15:39:17 UTC (rev 553) +++ trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui 2008-07-08 15:41:13 UTC (rev 554) @@ -1,75 +0,0 @@ -<ui version="4.0" > - <class>ViewConnectionWidget</class> - <widget class="QWidget" name="ViewConnectionWidget" > - <property name="geometry" > - <rect> - <x>0</x> - <y>0</y> - <width>533</width> - <height>363</height> - </rect> - </property> - <property name="windowTitle" > - <string>Form</string> - </property> - <layout class="QGridLayout" > - <item row="0" column="0" > - <layout class="QHBoxLayout" > - <item> - <layout class="QVBoxLayout" > - <item> - <widget class="QLabel" name="label" > - <property name="text" > - <string>Host:</string> - </property> - </widget> - </item> - <item> - <widget class="QLabel" name="label_2" > - <property name="text" > - <string>Port:</string> - </property> - </widget> - </item> - </layout> - </item> - <item> - <layout class="QVBoxLayout" > - <item> - <widget class="QLineEdit" name="edConnectionHost" /> - </item> - <item> - <widget class="QSpinBox" name="spinConnectionPort" /> - </item> - </layout> - </item> - </layout> - </item> - <item row="1" column="0" > - <spacer> - <property name="orientation" > - <enum>Qt::Vertical</enum> - </property> - <property name="sizeHint" > - <size> - <width>515</width> - <height>111</height> - </size> - </property> - </spacer> - </item> - <item row="2" column="0" > - <widget class="QPushButton" name="btConnect" > - <property name="text" > - <string>Connect</string> - </property> - <property name="checkable" > - <bool>true</bool> - </property> - </widget> - </item> - </layout> - </widget> - <resources/> - <connections/> -</ui> Copied: trunk/fclient/src/fclient/tpls/ViewConnectionWidgetTpl.ui (from rev 552, trunk/fclient/src/fclient/tpls/ViewConnectionTpl.ui) =================================================================== --- trunk/fclient/src/fclient/tpls/ViewConnectionWidgetTpl.ui (rev 0) +++ trunk/fclient/src/fclient/tpls/ViewConnectionWidgetTpl.ui 2008-07-08 15:41:13 UTC (rev 554) @@ -0,0 +1,75 @@ +<ui version="4.0" > + <class>ViewConnectionWidget</class> + <widget class="QWidget" name="ViewConnectionWidget" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>533</width> + <height>363</height> + </rect> + </property> + <property name="windowTitle" > + <string>Form</string> + </property> + <layout class="QGridLayout" > + <item row="0" column="0" > + <layout class="QHBoxLayout" > + <item> + <layout class="QVBoxLayout" > + <item> + <widget class="QLabel" name="label" > + <property name="text" > + <string>Host:</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_2" > + <property name="text" > + <string>Port:</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <layout class="QVBoxLayout" > + <item> + <widget class="QLineEdit" name="edConnectionHost" /> + </item> + <item> + <widget class="QSpinBox" name="spinConnectionPort" /> + </item> + </layout> + </item> + </layout> + </item> + <item row="1" column="0" > + <spacer> + <property name="orientation" > + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" > + <size> + <width>515</width> + <height>111</height> + </size> + </property> + </spacer> + </item> + <item row="2" column="0" > + <widget class="QPushButton" name="btConnect" > + <property name="text" > + <string>Connect</string> + </property> + <property name="checkable" > + <bool>true</bool> + </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. |
From: <jU...@us...> - 2008-07-08 15:45:53
|
Revision: 557 http://fclient.svn.sourceforge.net/fclient/?rev=557&view=rev Author: jUrner Date: 2008-07-08 08:44:41 -0700 (Tue, 08 Jul 2008) Log Message: ----------- ... Added Paths: ----------- trunk/fclient/src/fclient/tpls/Ui_ViewLoggerWidgetTpl.py Removed Paths: ------------- trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py Deleted: trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py 2008-07-08 15:43:13 UTC (rev 556) +++ trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py 2008-07-08 15:44:41 UTC (rev 557) @@ -1,44 +0,0 @@ -# -*- 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_()) Copied: trunk/fclient/src/fclient/tpls/Ui_ViewLoggerWidgetTpl.py (from rev 547, trunk/fclient/src/fclient/tpls/Ui_ViewLoggerTpl.py) =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewLoggerWidgetTpl.py (rev 0) +++ trunk/fclient/src/fclient/tpls/Ui_ViewLoggerWidgetTpl.py 2008-07-08 15:44:41 UTC (rev 557) @@ -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_()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jU...@us...> - 2008-07-08 15:47:43
|
Revision: 558 http://fclient.svn.sourceforge.net/fclient/?rev=558&view=rev Author: jUrner Date: 2008-07-08 08:46:33 -0700 (Tue, 08 Jul 2008) Log Message: ----------- ... Added Paths: ----------- trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui Removed Paths: ------------- trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui Deleted: trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui =================================================================== --- trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui 2008-07-08 15:44:41 UTC (rev 557) +++ trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui 2008-07-08 15:46:33 UTC (rev 558) @@ -1,39 +0,0 @@ -<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> Copied: trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui (from rev 547, trunk/fclient/src/fclient/tpls/ViewLoggerTpl.ui) =================================================================== --- trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui (rev 0) +++ trunk/fclient/src/fclient/tpls/ViewLoggerWidgetTpl.ui 2008-07-08 15:46:33 UTC (rev 558) @@ -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. |
From: <jU...@us...> - 2008-07-08 15:50:29
|
Revision: 560 http://fclient.svn.sourceforge.net/fclient/?rev=560&view=rev Author: jUrner Date: 2008-07-08 08:50:30 -0700 (Tue, 08 Jul 2008) Log Message: ----------- ... Added Paths: ----------- trunk/fclient/src/fclient/tpls/PrefsGlobalWidgetTpl.ui trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalWidgetTpl.py Removed Paths: ------------- trunk/fclient/src/fclient/tpls/PrefsGlobalTpl.ui trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalTpl.py Deleted: trunk/fclient/src/fclient/tpls/PrefsGlobalTpl.ui =================================================================== --- trunk/fclient/src/fclient/tpls/PrefsGlobalTpl.ui 2008-07-08 15:49:12 UTC (rev 559) +++ trunk/fclient/src/fclient/tpls/PrefsGlobalTpl.ui 2008-07-08 15:50:30 UTC (rev 560) @@ -1,64 +0,0 @@ -<ui version="4.0" > - <class>PrefsGlobalTpl</class> - <widget class="QWidget" name="PrefsGlobalTpl" > - <property name="geometry" > - <rect> - <x>0</x> - <y>0</y> - <width>465</width> - <height>247</height> - </rect> - </property> - <property name="windowTitle" > - <string>Form</string> - </property> - <layout class="QGridLayout" > - <item row="0" column="0" > - <widget class="QLabel" name="label" > - <property name="text" > - <string>Specify directory to store settings to. If unchecked, settings are stored in an os dependend location.</string> - </property> - <property name="wordWrap" > - <bool>true</bool> - </property> - </widget> - </item> - <item row="1" column="0" > - <layout class="QHBoxLayout" > - <item> - <widget class="QCheckBox" name="ckStoreSettingsLocally" > - <property name="text" > - <string/> - </property> - </widget> - </item> - <item> - <widget class="QLineEdit" name="edStoreSettingsLocally" /> - </item> - <item> - <widget class="QPushButton" name="btStoreSettingsLocally" > - <property name="text" > - <string>...</string> - </property> - </widget> - </item> - </layout> - </item> - <item row="2" column="0" > - <spacer> - <property name="orientation" > - <enum>Qt::Vertical</enum> - </property> - <property name="sizeHint" > - <size> - <width>20</width> - <height>40</height> - </size> - </property> - </spacer> - </item> - </layout> - </widget> - <resources/> - <connections/> -</ui> Copied: trunk/fclient/src/fclient/tpls/PrefsGlobalWidgetTpl.ui (from rev 543, trunk/fclient/src/fclient/tpls/PrefsGlobalTpl.ui) =================================================================== --- trunk/fclient/src/fclient/tpls/PrefsGlobalWidgetTpl.ui (rev 0) +++ trunk/fclient/src/fclient/tpls/PrefsGlobalWidgetTpl.ui 2008-07-08 15:50:30 UTC (rev 560) @@ -0,0 +1,64 @@ +<ui version="4.0" > + <class>PrefsGlobalTpl</class> + <widget class="QWidget" name="PrefsGlobalTpl" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>465</width> + <height>247</height> + </rect> + </property> + <property name="windowTitle" > + <string>Form</string> + </property> + <layout class="QGridLayout" > + <item row="0" column="0" > + <widget class="QLabel" name="label" > + <property name="text" > + <string>Specify directory to store settings to. If unchecked, settings are stored in an os dependend location.</string> + </property> + <property name="wordWrap" > + <bool>true</bool> + </property> + </widget> + </item> + <item row="1" column="0" > + <layout class="QHBoxLayout" > + <item> + <widget class="QCheckBox" name="ckStoreSettingsLocally" > + <property name="text" > + <string/> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="edStoreSettingsLocally" /> + </item> + <item> + <widget class="QPushButton" name="btStoreSettingsLocally" > + <property name="text" > + <string>...</string> + </property> + </widget> + </item> + </layout> + </item> + <item row="2" column="0" > + <spacer> + <property name="orientation" > + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" > + <size> + <width>20</width> + <height>40</height> + </size> + </property> + </spacer> + </item> + </layout> + </widget> + <resources/> + <connections/> +</ui> Deleted: trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalTpl.py 2008-07-08 15:49:12 UTC (rev 559) +++ trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalTpl.py 2008-07-08 15:50:30 UTC (rev 560) @@ -1,61 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/PrefsGlobalTpl.ui' -# -# Created: Mon Jul 7 23:23:43 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_PrefsGlobalTpl(object): - def setupUi(self, PrefsGlobalTpl): - PrefsGlobalTpl.setObjectName("PrefsGlobalTpl") - PrefsGlobalTpl.resize(QtCore.QSize(QtCore.QRect(0,0,465,247).size()).expandedTo(PrefsGlobalTpl.minimumSizeHint())) - - self.gridlayout = QtGui.QGridLayout(PrefsGlobalTpl) - self.gridlayout.setObjectName("gridlayout") - - self.label = QtGui.QLabel(PrefsGlobalTpl) - self.label.setWordWrap(True) - self.label.setObjectName("label") - self.gridlayout.addWidget(self.label,0,0,1,1) - - self.hboxlayout = QtGui.QHBoxLayout() - self.hboxlayout.setObjectName("hboxlayout") - - self.ckStoreSettingsLocally = QtGui.QCheckBox(PrefsGlobalTpl) - self.ckStoreSettingsLocally.setObjectName("ckStoreSettingsLocally") - self.hboxlayout.addWidget(self.ckStoreSettingsLocally) - - self.edStoreSettingsLocally = QtGui.QLineEdit(PrefsGlobalTpl) - self.edStoreSettingsLocally.setObjectName("edStoreSettingsLocally") - self.hboxlayout.addWidget(self.edStoreSettingsLocally) - - self.btStoreSettingsLocally = QtGui.QPushButton(PrefsGlobalTpl) - self.btStoreSettingsLocally.setObjectName("btStoreSettingsLocally") - self.hboxlayout.addWidget(self.btStoreSettingsLocally) - self.gridlayout.addLayout(self.hboxlayout,1,0,1,1) - - spacerItem = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding) - self.gridlayout.addItem(spacerItem,2,0,1,1) - - self.retranslateUi(PrefsGlobalTpl) - QtCore.QMetaObject.connectSlotsByName(PrefsGlobalTpl) - - def retranslateUi(self, PrefsGlobalTpl): - PrefsGlobalTpl.setWindowTitle(QtGui.QApplication.translate("PrefsGlobalTpl", "Form", None, QtGui.QApplication.UnicodeUTF8)) - self.label.setText(QtGui.QApplication.translate("PrefsGlobalTpl", "Specify directory to store settings to. If unchecked, settings are stored in an os dependend location.", None, QtGui.QApplication.UnicodeUTF8)) - self.btStoreSettingsLocally.setText(QtGui.QApplication.translate("PrefsGlobalTpl", "...", None, QtGui.QApplication.UnicodeUTF8)) - - - -if __name__ == "__main__": - import sys - app = QtGui.QApplication(sys.argv) - PrefsGlobalTpl = QtGui.QWidget() - ui = Ui_PrefsGlobalTpl() - ui.setupUi(PrefsGlobalTpl) - PrefsGlobalTpl.show() - sys.exit(app.exec_()) Copied: trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalWidgetTpl.py (from rev 543, trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalTpl.py) =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalWidgetTpl.py (rev 0) +++ trunk/fclient/src/fclient/tpls/Ui_PrefsGlobalWidgetTpl.py 2008-07-08 15:50:30 UTC (rev 560) @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/PrefsGlobalTpl.ui' +# +# Created: Mon Jul 7 23:23:43 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_PrefsGlobalTpl(object): + def setupUi(self, PrefsGlobalTpl): + PrefsGlobalTpl.setObjectName("PrefsGlobalTpl") + PrefsGlobalTpl.resize(QtCore.QSize(QtCore.QRect(0,0,465,247).size()).expandedTo(PrefsGlobalTpl.minimumSizeHint())) + + self.gridlayout = QtGui.QGridLayout(PrefsGlobalTpl) + self.gridlayout.setObjectName("gridlayout") + + self.label = QtGui.QLabel(PrefsGlobalTpl) + self.label.setWordWrap(True) + self.label.setObjectName("label") + self.gridlayout.addWidget(self.label,0,0,1,1) + + self.hboxlayout = QtGui.QHBoxLayout() + self.hboxlayout.setObjectName("hboxlayout") + + self.ckStoreSettingsLocally = QtGui.QCheckBox(PrefsGlobalTpl) + self.ckStoreSettingsLocally.setObjectName("ckStoreSettingsLocally") + self.hboxlayout.addWidget(self.ckStoreSettingsLocally) + + self.edStoreSettingsLocally = QtGui.QLineEdit(PrefsGlobalTpl) + self.edStoreSettingsLocally.setObjectName("edStoreSettingsLocally") + self.hboxlayout.addWidget(self.edStoreSettingsLocally) + + self.btStoreSettingsLocally = QtGui.QPushButton(PrefsGlobalTpl) + self.btStoreSettingsLocally.setObjectName("btStoreSettingsLocally") + self.hboxlayout.addWidget(self.btStoreSettingsLocally) + self.gridlayout.addLayout(self.hboxlayout,1,0,1,1) + + spacerItem = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding) + self.gridlayout.addItem(spacerItem,2,0,1,1) + + self.retranslateUi(PrefsGlobalTpl) + QtCore.QMetaObject.connectSlotsByName(PrefsGlobalTpl) + + def retranslateUi(self, PrefsGlobalTpl): + PrefsGlobalTpl.setWindowTitle(QtGui.QApplication.translate("PrefsGlobalTpl", "Form", None, QtGui.QApplication.UnicodeUTF8)) + self.label.setText(QtGui.QApplication.translate("PrefsGlobalTpl", "Specify directory to store settings to. If unchecked, settings are stored in an os dependend location.", None, QtGui.QApplication.UnicodeUTF8)) + self.btStoreSettingsLocally.setText(QtGui.QApplication.translate("PrefsGlobalTpl", "...", None, QtGui.QApplication.UnicodeUTF8)) + + + +if __name__ == "__main__": + import sys + app = QtGui.QApplication(sys.argv) + PrefsGlobalTpl = QtGui.QWidget() + ui = Ui_PrefsGlobalTpl() + ui.setupUi(PrefsGlobalTpl) + PrefsGlobalTpl.show() + sys.exit(app.exec_()) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <jU...@us...> - 2008-07-08 15:54:48
|
Revision: 562 http://fclient.svn.sourceforge.net/fclient/?rev=562&view=rev Author: jUrner Date: 2008-07-08 08:54:29 -0700 (Tue, 08 Jul 2008) Log Message: ----------- ... Added Paths: ----------- trunk/fclient/src/fclient/tpls/Ui_ViewWidgetTpl.py trunk/fclient/src/fclient/tpls/ViewWidgetTpl.ui Removed Paths: ------------- trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py trunk/fclient/src/fclient/tpls/ViewTpl.ui Deleted: trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py 2008-07-08 15:52:59 UTC (rev 561) +++ trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py 2008-07-08 15:54:29 UTC (rev 562) @@ -1,84 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewTpl.ui' -# -# Created: Tue Jul 8 12:13:15 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_ViewTpl(object): - def setupUi(self, ViewTpl): - ViewTpl.setObjectName("ViewTpl") - ViewTpl.resize(QtCore.QSize(QtCore.QRect(0,0,530,629).size()).expandedTo(ViewTpl.minimumSizeHint())) - - self.gridlayout = QtGui.QGridLayout(ViewTpl) - self.gridlayout.setMargin(0) - self.gridlayout.setSpacing(0) - self.gridlayout.setObjectName("gridlayout") - - self.splitter = QtGui.QSplitter(ViewTpl) - self.splitter.setOrientation(QtCore.Qt.Vertical) - self.splitter.setObjectName("splitter") - - self.frameTop = QtGui.QFrame(self.splitter) - self.frameTop.setFrameShape(QtGui.QFrame.NoFrame) - self.frameTop.setFrameShadow(QtGui.QFrame.Plain) - self.frameTop.setLineWidth(0) - self.frameTop.setObjectName("frameTop") - - self.gridlayout1 = QtGui.QGridLayout(self.frameTop) - self.gridlayout1.setMargin(0) - self.gridlayout1.setSpacing(0) - self.gridlayout1.setObjectName("gridlayout1") - - self.tabTop = QtGui.QTabWidget(self.frameTop) - self.tabTop.setObjectName("tabTop") - - self.tab_3 = QtGui.QWidget() - self.tab_3.setObjectName("tab_3") - self.tabTop.addTab(self.tab_3,"") - self.gridlayout1.addWidget(self.tabTop,0,0,1,1) - - self.frameBottom = QtGui.QFrame(self.splitter) - self.frameBottom.setFrameShape(QtGui.QFrame.NoFrame) - self.frameBottom.setFrameShadow(QtGui.QFrame.Plain) - self.frameBottom.setLineWidth(0) - self.frameBottom.setObjectName("frameBottom") - - self.gridlayout2 = QtGui.QGridLayout(self.frameBottom) - self.gridlayout2.setMargin(0) - self.gridlayout2.setSpacing(0) - self.gridlayout2.setObjectName("gridlayout2") - - self.tabBottom = QtGui.QTabWidget(self.frameBottom) - self.tabBottom.setObjectName("tabBottom") - - self.tab_5 = QtGui.QWidget() - self.tab_5.setObjectName("tab_5") - self.tabBottom.addTab(self.tab_5,"") - self.gridlayout2.addWidget(self.tabBottom,0,0,1,1) - self.gridlayout.addWidget(self.splitter,0,0,1,1) - - self.retranslateUi(ViewTpl) - self.tabTop.setCurrentIndex(0) - self.tabBottom.setCurrentIndex(0) - QtCore.QMetaObject.connectSlotsByName(ViewTpl) - - def retranslateUi(self, ViewTpl): - ViewTpl.setWindowTitle(QtGui.QApplication.translate("ViewTpl", "Form", None, QtGui.QApplication.UnicodeUTF8)) - self.tabTop.setTabText(self.tabTop.indexOf(self.tab_3), QtGui.QApplication.translate("ViewTpl", "Tab 1", None, QtGui.QApplication.UnicodeUTF8)) - self.tabBottom.setTabText(self.tabBottom.indexOf(self.tab_5), QtGui.QApplication.translate("ViewTpl", "Tab 1", None, QtGui.QApplication.UnicodeUTF8)) - - - -if __name__ == "__main__": - import sys - app = QtGui.QApplication(sys.argv) - ViewTpl = QtGui.QWidget() - ui = Ui_ViewTpl() - ui.setupUi(ViewTpl) - ViewTpl.show() - sys.exit(app.exec_()) Copied: trunk/fclient/src/fclient/tpls/Ui_ViewWidgetTpl.py (from rev 549, trunk/fclient/src/fclient/tpls/Ui_ViewTpl.py) =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_ViewWidgetTpl.py (rev 0) +++ trunk/fclient/src/fclient/tpls/Ui_ViewWidgetTpl.py 2008-07-08 15:54:29 UTC (rev 562) @@ -0,0 +1,84 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/ViewTpl.ui' +# +# Created: Tue Jul 8 12:13:15 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_ViewTpl(object): + def setupUi(self, ViewTpl): + ViewTpl.setObjectName("ViewTpl") + ViewTpl.resize(QtCore.QSize(QtCore.QRect(0,0,530,629).size()).expandedTo(ViewTpl.minimumSizeHint())) + + self.gridlayout = QtGui.QGridLayout(ViewTpl) + self.gridlayout.setMargin(0) + self.gridlayout.setSpacing(0) + self.gridlayout.setObjectName("gridlayout") + + self.splitter = QtGui.QSplitter(ViewTpl) + self.splitter.setOrientation(QtCore.Qt.Vertical) + self.splitter.setObjectName("splitter") + + self.frameTop = QtGui.QFrame(self.splitter) + self.frameTop.setFrameShape(QtGui.QFrame.NoFrame) + self.frameTop.setFrameShadow(QtGui.QFrame.Plain) + self.frameTop.setLineWidth(0) + self.frameTop.setObjectName("frameTop") + + self.gridlayout1 = QtGui.QGridLayout(self.frameTop) + self.gridlayout1.setMargin(0) + self.gridlayout1.setSpacing(0) + self.gridlayout1.setObjectName("gridlayout1") + + self.tabTop = QtGui.QTabWidget(self.frameTop) + self.tabTop.setObjectName("tabTop") + + self.tab_3 = QtGui.QWidget() + self.tab_3.setObjectName("tab_3") + self.tabTop.addTab(self.tab_3,"") + self.gridlayout1.addWidget(self.tabTop,0,0,1,1) + + self.frameBottom = QtGui.QFrame(self.splitter) + self.frameBottom.setFrameShape(QtGui.QFrame.NoFrame) + self.frameBottom.setFrameShadow(QtGui.QFrame.Plain) + self.frameBottom.setLineWidth(0) + self.frameBottom.setObjectName("frameBottom") + + self.gridlayout2 = QtGui.QGridLayout(self.frameBottom) + self.gridlayout2.setMargin(0) + self.gridlayout2.setSpacing(0) + self.gridlayout2.setObjectName("gridlayout2") + + self.tabBottom = QtGui.QTabWidget(self.frameBottom) + self.tabBottom.setObjectName("tabBottom") + + self.tab_5 = QtGui.QWidget() + self.tab_5.setObjectName("tab_5") + self.tabBottom.addTab(self.tab_5,"") + self.gridlayout2.addWidget(self.tabBottom,0,0,1,1) + self.gridlayout.addWidget(self.splitter,0,0,1,1) + + self.retranslateUi(ViewTpl) + self.tabTop.setCurrentIndex(0) + self.tabBottom.setCurrentIndex(0) + QtCore.QMetaObject.connectSlotsByName(ViewTpl) + + def retranslateUi(self, ViewTpl): + ViewTpl.setWindowTitle(QtGui.QApplication.translate("ViewTpl", "Form", None, QtGui.QApplication.UnicodeUTF8)) + self.tabTop.setTabText(self.tabTop.indexOf(self.tab_3), QtGui.QApplication.translate("ViewTpl", "Tab 1", None, QtGui.QApplication.UnicodeUTF8)) + self.tabBottom.setTabText(self.tabBottom.indexOf(self.tab_5), QtGui.QApplication.translate("ViewTpl", "Tab 1", None, QtGui.QApplication.UnicodeUTF8)) + + + +if __name__ == "__main__": + import sys + app = QtGui.QApplication(sys.argv) + ViewTpl = QtGui.QWidget() + ui = Ui_ViewTpl() + ui.setupUi(ViewTpl) + ViewTpl.show() + sys.exit(app.exec_()) Deleted: trunk/fclient/src/fclient/tpls/ViewTpl.ui =================================================================== --- trunk/fclient/src/fclient/tpls/ViewTpl.ui 2008-07-08 15:52:59 UTC (rev 561) +++ trunk/fclient/src/fclient/tpls/ViewTpl.ui 2008-07-08 15:54:29 UTC (rev 562) @@ -1,131 +0,0 @@ -<ui version="4.0" > - <class>ViewTpl</class> - <widget class="QWidget" name="ViewTpl" > - <property name="geometry" > - <rect> - <x>0</x> - <y>0</y> - <width>530</width> - <height>629</height> - </rect> - </property> - <property name="windowTitle" > - <string>Form</string> - </property> - <layout class="QGridLayout" > - <property name="leftMargin" > - <number>0</number> - </property> - <property name="topMargin" > - <number>0</number> - </property> - <property name="rightMargin" > - <number>0</number> - </property> - <property name="bottomMargin" > - <number>0</number> - </property> - <property name="horizontalSpacing" > - <number>0</number> - </property> - <property name="verticalSpacing" > - <number>0</number> - </property> - <item row="0" column="0" > - <widget class="QSplitter" name="splitter" > - <property name="orientation" > - <enum>Qt::Vertical</enum> - </property> - <widget class="QFrame" name="frameTop" > - <property name="frameShape" > - <enum>QFrame::NoFrame</enum> - </property> - <property name="frameShadow" > - <enum>QFrame::Plain</enum> - </property> - <property name="lineWidth" > - <number>0</number> - </property> - <layout class="QGridLayout" > - <property name="leftMargin" > - <number>0</number> - </property> - <property name="topMargin" > - <number>0</number> - </property> - <property name="rightMargin" > - <number>0</number> - </property> - <property name="bottomMargin" > - <number>0</number> - </property> - <property name="horizontalSpacing" > - <number>0</number> - </property> - <property name="verticalSpacing" > - <number>0</number> - </property> - <item row="0" column="0" > - <widget class="QTabWidget" name="tabTop" > - <property name="currentIndex" > - <number>0</number> - </property> - <widget class="QWidget" name="tab_3" > - <attribute name="title" > - <string>Tab 1</string> - </attribute> - </widget> - </widget> - </item> - </layout> - </widget> - <widget class="QFrame" name="frameBottom" > - <property name="frameShape" > - <enum>QFrame::NoFrame</enum> - </property> - <property name="frameShadow" > - <enum>QFrame::Plain</enum> - </property> - <property name="lineWidth" > - <number>0</number> - </property> - <layout class="QGridLayout" > - <property name="leftMargin" > - <number>0</number> - </property> - <property name="topMargin" > - <number>0</number> - </property> - <property name="rightMargin" > - <number>0</number> - </property> - <property name="bottomMargin" > - <number>0</number> - </property> - <property name="horizontalSpacing" > - <number>0</number> - </property> - <property name="verticalSpacing" > - <number>0</number> - </property> - <item row="0" column="0" > - <widget class="QTabWidget" name="tabBottom" > - <property name="currentIndex" > - <number>0</number> - </property> - <widget class="QWidget" name="tab_5" > - <attribute name="title" > - <string>Tab 1</string> - </attribute> - </widget> - </widget> - </item> - </layout> - </widget> - </widget> - </item> - </layout> - </widget> - <resources/> - <connections/> -</ui> Copied: trunk/fclient/src/fclient/tpls/ViewWidgetTpl.ui (from rev 549, trunk/fclient/src/fclient/tpls/ViewTpl.ui) =================================================================== --- trunk/fclient/src/fclient/tpls/ViewWidgetTpl.ui (rev 0) +++ trunk/fclient/src/fclient/tpls/ViewWidgetTpl.ui 2008-07-08 15:54:29 UTC (rev 562) @@ -0,0 +1,131 @@ +<ui version="4.0" > + <class>ViewTpl</class> + <widget class="QWidget" name="ViewTpl" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>530</width> + <height>629</height> + </rect> + </property> + <property name="windowTitle" > + <string>Form</string> + </property> + <layout class="QGridLayout" > + <property name="leftMargin" > + <number>0</number> + </property> + <property name="topMargin" > + <number>0</number> + </property> + <property name="rightMargin" > + <number>0</number> + </property> + <property name="bottomMargin" > + <number>0</number> + </property> + <property name="horizontalSpacing" > + <number>0</number> + </property> + <property name="verticalSpacing" > + <number>0</number> + </property> + <item row="0" column="0" > + <widget class="QSplitter" name="splitter" > + <property name="orientation" > + <enum>Qt::Vertical</enum> + </property> + <widget class="QFrame" name="frameTop" > + <property name="frameShape" > + <enum>QFrame::NoFrame</enum> + </property> + <property name="frameShadow" > + <enum>QFrame::Plain</enum> + </property> + <property name="lineWidth" > + <number>0</number> + </property> + <layout class="QGridLayout" > + <property name="leftMargin" > + <number>0</number> + </property> + <property name="topMargin" > + <number>0</number> + </property> + <property name="rightMargin" > + <number>0</number> + </property> + <property name="bottomMargin" > + <number>0</number> + </property> + <property name="horizontalSpacing" > + <number>0</number> + </property> + <property name="verticalSpacing" > + <number>0</number> + </property> + <item row="0" column="0" > + <widget class="QTabWidget" name="tabTop" > + <property name="currentIndex" > + <number>0</number> + </property> + <widget class="QWidget" name="tab_3" > + <attribute name="title" > + <string>Tab 1</string> + </attribute> + </widget> + </widget> + </item> + </layout> + </widget> + <widget class="QFrame" name="frameBottom" > + <property name="frameShape" > + <enum>QFrame::NoFrame</enum> + </property> + <property name="frameShadow" > + <enum>QFrame::Plain</enum> + </property> + <property name="lineWidth" > + <number>0</number> + </property> + <layout class="QGridLayout" > + <property name="leftMargin" > + <number>0</number> + </property> + <property name="topMargin" > + <number>0</number> + </property> + <property name="rightMargin" > + <number>0</number> + </property> + <property name="bottomMargin" > + <number>0</number> + </property> + <property name="horizontalSpacing" > + <number>0</number> + </property> + <property name="verticalSpacing" > + <number>0</number> + </property> + <item row="0" column="0" > + <widget class="QTabWidget" name="tabBottom" > + <property name="currentIndex" > + <number>0</number> + </property> + <widget class="QWidget" name="tab_5" > + <attribute name="title" > + <string>Tab 1</string> + </attribute> + </widget> + </widget> + </item> + </layout> + </widget> + </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. |
From: <jU...@us...> - 2008-07-13 14:17:42
|
Revision: 617 http://fclient.svn.sourceforge.net/fclient/?rev=617&view=rev Author: jUrner Date: 2008-07-13 07:17:35 -0700 (Sun, 13 Jul 2008) Log Message: ----------- whatever Modified Paths: -------------- trunk/fclient/src/fclient/tpls/MainWindowTpl.ui trunk/fclient/src/fclient/tpls/Ui_MainWindowTpl.py Modified: trunk/fclient/src/fclient/tpls/MainWindowTpl.ui =================================================================== --- trunk/fclient/src/fclient/tpls/MainWindowTpl.ui 2008-07-13 14:17:18 UTC (rev 616) +++ trunk/fclient/src/fclient/tpls/MainWindowTpl.ui 2008-07-13 14:17:35 UTC (rev 617) @@ -22,8 +22,55 @@ <height>26</height> </rect> </property> + <widget class="QMenu" name="menuApplication" > + <property name="title" > + <string>&Application</string> + </property> + <addaction name="actPreferences" /> + <addaction name="actExit" /> + </widget> + <widget class="QMenu" name="menuHelp" > + <property name="title" > + <string>&Help</string> + </property> + <addaction name="actHelp" /> + <addaction name="actAbout" /> + </widget> + <addaction name="menuApplication" /> + <addaction name="menuHelp" /> </widget> <widget class="QStatusBar" name="statusbar" /> + <action name="action_Preferences" > + <property name="text" > + <string>_Preferences</string> + </property> + </action> + <action name="actPreferences" > + <property name="text" > + <string>&Preferences..</string> + </property> + </action> + <action name="actExit" > + <property name="text" > + <string>E&xit</string> + </property> + </action> + <action name="actHelp" > + <property name="text" > + <string>&Help..</string> + </property> + <property name="toolTip" > + <string>Help</string> + </property> + </action> + <action name="actAbout" > + <property name="text" > + <string>A&bout..</string> + </property> + <property name="iconText" > + <string>About</string> + </property> + </action> </widget> <resources/> <connections/> Modified: trunk/fclient/src/fclient/tpls/Ui_MainWindowTpl.py =================================================================== --- trunk/fclient/src/fclient/tpls/Ui_MainWindowTpl.py 2008-07-13 14:17:18 UTC (rev 616) +++ trunk/fclient/src/fclient/tpls/Ui_MainWindowTpl.py 2008-07-13 14:17:35 UTC (rev 617) @@ -2,7 +2,7 @@ # Form implementation generated from reading ui file '/home/me/src/proj/fclient/trunk/fclient/src/fclient/tpls/MainWindowTpl.ui' # -# Created: Sat Jul 12 21:39:29 2008 +# Created: Sun Jul 13 10:08:35 2008 # by: PyQt4 UI code generator 4.3.3 # # WARNING! All changes made in this file will be lost! @@ -21,17 +21,53 @@ self.menubar = QtGui.QMenuBar(MainWindow) self.menubar.setGeometry(QtCore.QRect(0,0,800,26)) self.menubar.setObjectName("menubar") + + self.menuApplication = QtGui.QMenu(self.menubar) + self.menuApplication.setObjectName("menuApplication") + + self.menuHelp = QtGui.QMenu(self.menubar) + self.menuHelp.setObjectName("menuHelp") MainWindow.setMenuBar(self.menubar) self.statusbar = QtGui.QStatusBar(MainWindow) self.statusbar.setObjectName("statusbar") MainWindow.setStatusBar(self.statusbar) + self.action_Preferences = QtGui.QAction(MainWindow) + self.action_Preferences.setObjectName("action_Preferences") + + self.actPreferences = QtGui.QAction(MainWindow) + self.actPreferences.setObjectName("actPreferences") + + self.actExit = QtGui.QAction(MainWindow) + self.actExit.setObjectName("actExit") + + self.actHelp = QtGui.QAction(MainWindow) + self.actHelp.setObjectName("actHelp") + + self.actAbout = QtGui.QAction(MainWindow) + self.actAbout.setObjectName("actAbout") + self.menuApplication.addAction(self.actPreferences) + self.menuApplication.addAction(self.actExit) + self.menuHelp.addAction(self.actHelp) + self.menuHelp.addAction(self.actAbout) + self.menubar.addAction(self.menuApplication.menuAction()) + self.menubar.addAction(self.menuHelp.menuAction()) + self.retranslateUi(MainWindow) QtCore.QMetaObject.connectSlotsByName(MainWindow) def retranslateUi(self, MainWindow): MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8)) + self.menuApplication.setTitle(QtGui.QApplication.translate("MainWindow", "&Application", None, QtGui.QApplication.UnicodeUTF8)) + self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "&Help", None, QtGui.QApplication.UnicodeUTF8)) + self.action_Preferences.setText(QtGui.QApplication.translate("MainWindow", "_Preferences", None, QtGui.QApplication.UnicodeUTF8)) + self.actPreferences.setText(QtGui.QApplication.translate("MainWindow", "&Preferences..", None, QtGui.QApplication.UnicodeUTF8)) + self.actExit.setText(QtGui.QApplication.translate("MainWindow", "E&xit", None, QtGui.QApplication.UnicodeUTF8)) + self.actHelp.setText(QtGui.QApplication.translate("MainWindow", "&Help..", None, QtGui.QApplication.UnicodeUTF8)) + self.actHelp.setToolTip(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8)) + self.actAbout.setText(QtGui.QApplication.translate("MainWindow", "A&bout..", None, QtGui.QApplication.UnicodeUTF8)) + self.actAbout.setIconText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |