summaryrefslogtreecommitdiffstats
path: root/fortune-ml/plasmoid/contents/code/configDialog.py
diff options
context:
space:
mode:
Diffstat (limited to 'fortune-ml/plasmoid/contents/code/configDialog.py')
-rw-r--r--fortune-ml/plasmoid/contents/code/configDialog.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/fortune-ml/plasmoid/contents/code/configDialog.py b/fortune-ml/plasmoid/contents/code/configDialog.py
new file mode 100644
index 0000000..a72867a
--- /dev/null
+++ b/fortune-ml/plasmoid/contents/code/configDialog.py
@@ -0,0 +1,41 @@
+# -*- coding: utf-8 -*-
+
+# Form implementation generated from reading ui file 'dialog.ui'
+#
+# Created: Wed Apr 1 15:42:08 2009
+# by: PyQt4 UI code generator 4.4.4
+#
+# WARNING! All changes made in this file will be lost!
+
+from PyQt4 import QtCore, QtGui
+
+class Ui_Dialog(object):
+ def setupUi(self, Dialog):
+ Dialog.setObjectName("Dialog")
+ Dialog.resize(400, 300)
+ self.buttonBox = QtGui.QDialogButtonBox(Dialog)
+ self.buttonBox.setGeometry(QtCore.QRect(30, 240, 341, 32))
+ self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
+ self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
+ self.buttonBox.setObjectName("buttonBox")
+ self.verticalLayoutWidget = QtGui.QWidget(Dialog)
+ self.verticalLayoutWidget.setGeometry(QtCore.QRect(9, 19, 371, 221))
+ self.verticalLayoutWidget.setObjectName("verticalLayoutWidget")
+ self.verticalLayout = QtGui.QVBoxLayout(self.verticalLayoutWidget)
+ self.verticalLayout.setObjectName("verticalLayout")
+ self.gridLayout = QtGui.QGridLayout()
+ self.gridLayout.setObjectName("gridLayout")
+ self.chkOffensive = QtGui.QCheckBox(self.verticalLayoutWidget)
+ self.chkOffensive.setObjectName("chkOffensive")
+ self.gridLayout.addWidget(self.chkOffensive, 0, 0, 1, 1)
+ self.verticalLayout.addLayout(self.gridLayout)
+
+ self.retranslateUi(Dialog)
+ QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), Dialog.accept)
+ QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), Dialog.reject)
+ QtCore.QMetaObject.connectSlotsByName(Dialog)
+
+ def retranslateUi(self, Dialog):
+ Dialog.setWindowTitle(QtGui.QApplication.translate("Dialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8))
+ self.chkOffensive.setText(QtGui.QApplication.translate("Dialog", "Offensive on ?", None, QtGui.QApplication.UnicodeUTF8))
+