summaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2016-10-05 16:58:29 +0000
committerramon <ramongomez@us.es>2016-10-05 16:58:29 +0000
commitbe9ee44d549e9e642e9a0cc42cb2153951ea29e6 (patch)
treed543028c1b09dc30b6bdf820ce5da5d3b5a255a1 /admin
parentf53c14d6d885baae52aa4c553e1abcf298c46493 (diff)
#718: Limpiar ficheros innecesarios para desarrollar OGAgent (se generan automáticamente al crear los paquetes).
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5030 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin')
-rw-r--r--admin/Sources/Clients/ogagent/src/about_dialog_ui.py163
-rw-r--r--admin/Sources/Clients/ogagent/src/message_dialog_ui.py69
2 files changed, 0 insertions, 232 deletions
diff --git a/admin/Sources/Clients/ogagent/src/about_dialog_ui.py b/admin/Sources/Clients/ogagent/src/about_dialog_ui.py
deleted file mode 100644
index 054cc061..00000000
--- a/admin/Sources/Clients/ogagent/src/about_dialog_ui.py
+++ /dev/null
@@ -1,163 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Form implementation generated from reading ui file 'about-dialog.ui'
-#
-# Created by: PyQt4 UI code generator 4.11.4
-#
-# WARNING! All changes made in this file will be lost!
-
-from PyQt4 import QtCore, QtGui
-
-try:
- _fromUtf8 = QtCore.QString.fromUtf8
-except AttributeError:
- def _fromUtf8(s):
- return s
-
-try:
- _encoding = QtGui.QApplication.UnicodeUTF8
- def _translate(context, text, disambig):
- return QtGui.QApplication.translate(context, text, disambig, _encoding)
-except AttributeError:
- def _translate(context, text, disambig):
- return QtGui.QApplication.translate(context, text, disambig)
-
-class Ui_OGAAboutDialog(object):
- def setupUi(self, OGAAboutDialog):
- OGAAboutDialog.setObjectName(_fromUtf8("OGAAboutDialog"))
- OGAAboutDialog.resize(466, 402)
- font = QtGui.QFont()
- font.setFamily(_fromUtf8("Verdana"))
- font.setPointSize(9)
- OGAAboutDialog.setFont(font)
- OGAAboutDialog.setLocale(QtCore.QLocale(QtCore.QLocale.English, QtCore.QLocale.UnitedStates))
- OGAAboutDialog.setModal(True)
- self.vboxlayout = QtGui.QVBoxLayout(OGAAboutDialog)
- self.vboxlayout.setMargin(9)
- self.vboxlayout.setSpacing(9)
- self.vboxlayout.setObjectName(_fromUtf8("vboxlayout"))
- self.LogoLabel = QtGui.QLabel(OGAAboutDialog)
- self.LogoLabel.setObjectName(_fromUtf8("LogoLabel"))
- self.vboxlayout.addWidget(self.LogoLabel)
- spacerItem = QtGui.QSpacerItem(20, 5, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
- self.vboxlayout.addItem(spacerItem)
- self.TitleLabel = QtGui.QLabel(OGAAboutDialog)
- self.TitleLabel.setObjectName(_fromUtf8("TitleLabel"))
- self.vboxlayout.addWidget(self.TitleLabel)
- self.VersionLabel = QtGui.QLabel(OGAAboutDialog)
- self.VersionLabel.setObjectName(_fromUtf8("VersionLabel"))
- self.vboxlayout.addWidget(self.VersionLabel)
- spacerItem1 = QtGui.QSpacerItem(20, 5, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
- self.vboxlayout.addItem(spacerItem1)
- self.tabWidget = QtGui.QTabWidget(OGAAboutDialog)
- self.tabWidget.setObjectName(_fromUtf8("tabWidget"))
- self.aboutTab = QtGui.QWidget()
- self.aboutTab.setObjectName(_fromUtf8("aboutTab"))
- self.vboxlayout1 = QtGui.QVBoxLayout(self.aboutTab)
- self.vboxlayout1.setMargin(9)
- self.vboxlayout1.setSpacing(6)
- self.vboxlayout1.setObjectName(_fromUtf8("vboxlayout1"))
- self.aboutBrowser = QtGui.QTextBrowser(self.aboutTab)
- self.aboutBrowser.setOpenExternalLinks(True)
- self.aboutBrowser.setObjectName(_fromUtf8("aboutBrowser"))
- self.vboxlayout1.addWidget(self.aboutBrowser)
- self.tabWidget.addTab(self.aboutTab, _fromUtf8(""))
- self.authorsTab = QtGui.QWidget()
- self.authorsTab.setObjectName(_fromUtf8("authorsTab"))
- self.vboxlayout2 = QtGui.QVBoxLayout(self.authorsTab)
- self.vboxlayout2.setMargin(9)
- self.vboxlayout2.setSpacing(6)
- self.vboxlayout2.setObjectName(_fromUtf8("vboxlayout2"))
- self.authorsBrowser = QtGui.QTextBrowser(self.authorsTab)
- self.authorsBrowser.setOpenExternalLinks(True)
- self.authorsBrowser.setObjectName(_fromUtf8("authorsBrowser"))
- self.vboxlayout2.addWidget(self.authorsBrowser)
- self.tabWidget.addTab(self.authorsTab, _fromUtf8(""))
- self.licenseTab = QtGui.QWidget()
- self.licenseTab.setObjectName(_fromUtf8("licenseTab"))
- self.vboxlayout3 = QtGui.QVBoxLayout(self.licenseTab)
- self.vboxlayout3.setMargin(9)
- self.vboxlayout3.setSpacing(6)
- self.vboxlayout3.setObjectName(_fromUtf8("vboxlayout3"))
- self.licenseBrowser = QtGui.QTextBrowser(self.licenseTab)
- self.licenseBrowser.setObjectName(_fromUtf8("licenseBrowser"))
- self.vboxlayout3.addWidget(self.licenseBrowser)
- self.tabWidget.addTab(self.licenseTab, _fromUtf8(""))
- self.vboxlayout.addWidget(self.tabWidget)
- self.buttonBox = QtGui.QDialogButtonBox(OGAAboutDialog)
- self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
- self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Close)
- self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
- self.vboxlayout.addWidget(self.buttonBox)
-
- self.retranslateUi(OGAAboutDialog)
- self.tabWidget.setCurrentIndex(0)
- QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("clicked(QAbstractButton*)")), OGAAboutDialog.closeDialog)
- QtCore.QMetaObject.connectSlotsByName(OGAAboutDialog)
-
- def retranslateUi(self, OGAAboutDialog):
- OGAAboutDialog.setWindowTitle(_translate("OGAAboutDialog", "About OGAgent", None))
- self.LogoLabel.setText(_translate("OGAAboutDialog", "<html><head/><body><p><img src=\":/images/img/oga.png\"/>OpenGnsys Agent Tools</p></body></html>", None))
- self.TitleLabel.setText(_translate("OGAAboutDialog", "<html><head/><body><p><span style=\" font-family:\'Sans Serif\'; font-size:9pt; font-weight:600;\">OpenGnsys Agent</span></p></body></html>", None))
- self.VersionLabel.setText(_translate("OGAAboutDialog", "Version 1.0.0", None))
- self.aboutBrowser.setHtml(_translate("OGAAboutDialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
-"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
-"p, li { white-space: pre-wrap; }\n"
-"</style></head><body style=\" font-family:\'Verdana\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
-"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\';\"><br /></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'Sans Serif\'; font-weight:600;\">(c) 2014, Virtual Cable S.L.U.</span></p>\n"
-"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-style:italic;\"><br /></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://www.udsenterprise.com\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt; text-decoration: underline; color:#0000ff;\">http://www.opengnsys.es</span></a></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><a href=\"http://www.openuds.org\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt; text-decoration: underline; color:#0000ff;\">http://www.udsenterprise.com</span></a></p>\n"
-"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\';\"><br /></p></body></html>", None))
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.aboutTab), _translate("OGAAboutDialog", "&About", None))
- self.authorsBrowser.setHtml(_translate("OGAAboutDialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
-"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
-"p, li { white-space: pre-wrap; }\n"
-"</style></head><body style=\" font-family:\'Verdana\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'Sans Serif\';\">Adolfo Gómez García &lt;agomez@virtualcable.es&gt;</span></p></body></html>", None))
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.authorsTab), _translate("OGAAboutDialog", "A&uthors", None))
- self.licenseBrowser.setHtml(_translate("OGAAboutDialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
-"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
-"p, li { white-space: pre-wrap; }\n"
-"</style></head><body style=\" font-family:\'Verdana\'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">Copyright (c) 2014 Virtual Cable S.L.</span></p>\n"
-"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"><br /></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">All rights reserved.</span></p>\n"
-"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"><br /></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">Redistribution and use in source and binary forms, with or without modification,</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">are permitted provided that the following conditions are met:</span></p>\n"
-"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"><br /></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"> * Redistributions of source code must retain the above copyright notice,</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"> this list of conditions and the following disclaimer.</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"> * Redistributions in binary form must reproduce the above copyright notice,</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"> this list of conditions and the following disclaimer in the documentation</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"> and/or other materials provided with the distribution.</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"> * Neither the name of Virtual Cable S.L. nor the names of its contributors</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"> may be used to endorse or promote products derived from this software</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"> without specific prior written permission.</span></p>\n"
-"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"><br /></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE</span></p>\n"
-"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt;\">OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span></p>\n"
-"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'MS Shell Dlg 2\'; font-size:8pt;\"><br /></p></body></html>", None))
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.licenseTab), _translate("OGAAboutDialog", "&License Agreement", None))
-
-import OGAgent_rc
-
-if __name__ == "__main__":
- import sys
- app = QtGui.QApplication(sys.argv)
- OGAAboutDialog = QtGui.QDialog()
- ui = Ui_OGAAboutDialog()
- ui.setupUi(OGAAboutDialog)
- OGAAboutDialog.show()
- sys.exit(app.exec_())
-
diff --git a/admin/Sources/Clients/ogagent/src/message_dialog_ui.py b/admin/Sources/Clients/ogagent/src/message_dialog_ui.py
deleted file mode 100644
index ebd4d34a..00000000
--- a/admin/Sources/Clients/ogagent/src/message_dialog_ui.py
+++ /dev/null
@@ -1,69 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Form implementation generated from reading ui file 'message-dialog.ui'
-#
-# Created by: PyQt4 UI code generator 4.11.4
-#
-# WARNING! All changes made in this file will be lost!
-
-from PyQt4 import QtCore, QtGui
-
-try:
- _fromUtf8 = QtCore.QString.fromUtf8
-except AttributeError:
- def _fromUtf8(s):
- return s
-
-try:
- _encoding = QtGui.QApplication.UnicodeUTF8
- def _translate(context, text, disambig):
- return QtGui.QApplication.translate(context, text, disambig, _encoding)
-except AttributeError:
- def _translate(context, text, disambig):
- return QtGui.QApplication.translate(context, text, disambig)
-
-class Ui_OGAMessageDialog(object):
- def setupUi(self, OGAMessageDialog):
- OGAMessageDialog.setObjectName(_fromUtf8("OGAMessageDialog"))
- OGAMessageDialog.resize(339, 188)
- sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
- sizePolicy.setHorizontalStretch(0)
- sizePolicy.setVerticalStretch(0)
- sizePolicy.setHeightForWidth(OGAMessageDialog.sizePolicy().hasHeightForWidth())
- OGAMessageDialog.setSizePolicy(sizePolicy)
- font = QtGui.QFont()
- font.setFamily(_fromUtf8("Verdana"))
- font.setPointSize(10)
- OGAMessageDialog.setFont(font)
- self.verticalLayoutWidget = QtGui.QWidget(OGAMessageDialog)
- self.verticalLayoutWidget.setGeometry(QtCore.QRect(10, 10, 321, 171))
- self.verticalLayoutWidget.setObjectName(_fromUtf8("verticalLayoutWidget"))
- self.verticalLayout = QtGui.QVBoxLayout(self.verticalLayoutWidget)
- self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
- self.message = QtGui.QTextBrowser(self.verticalLayoutWidget)
- self.message.setObjectName(_fromUtf8("message"))
- self.verticalLayout.addWidget(self.message)
- spacerItem = QtGui.QSpacerItem(20, 15, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
- self.verticalLayout.addItem(spacerItem)
- self.buttonBox = QtGui.QDialogButtonBox(self.verticalLayoutWidget)
- self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Ok)
- self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
- self.verticalLayout.addWidget(self.buttonBox)
-
- self.retranslateUi(OGAMessageDialog)
- QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("clicked(QAbstractButton*)")), OGAMessageDialog.closeDialog)
- QtCore.QMetaObject.connectSlotsByName(OGAMessageDialog)
-
- def retranslateUi(self, OGAMessageDialog):
- OGAMessageDialog.setWindowTitle(_translate("OGAMessageDialog", "UDS Actor", None))
-
-
-if __name__ == "__main__":
- import sys
- app = QtGui.QApplication(sys.argv)
- OGAMessageDialog = QtGui.QDialog()
- ui = Ui_OGAMessageDialog()
- ui.setupUi(OGAMessageDialog)
- OGAMessageDialog.show()
- sys.exit(app.exec_())
-