Implemented the search database exporting
[biaweb_qt.git] / ui_editor_dialog.py
1 # -*- coding: utf-8 -*-
2
3 # Form implementation generated from reading ui file 'editor_dialog.ui'
4 #
5 # Created: Mon Nov 29 18:18:36 2010
6 # by: PyQt4 UI code generator 4.7.4
7 #
8 # WARNING! All changes made in this file will be lost!
9
10 from PyQt4 import QtCore, QtGui
11
12 class Ui_EditorDialog(object):
13 def setupUi(self, EditorDialog):
14 EditorDialog.setObjectName("EditorDialog")
15 EditorDialog.resize(663, 463)
16 self.gridLayout = QtGui.QGridLayout(EditorDialog)
17 self.gridLayout.setObjectName("gridLayout")
18 self.text = QtGui.QPlainTextEdit(EditorDialog)
19 font = QtGui.QFont()
20 font.setFamily("Monospace")
21 self.text.setFont(font)
22 self.text.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOn)
23 self.text.setTabChangesFocus(True)
24 self.text.setLineWrapMode(QtGui.QPlainTextEdit.NoWrap)
25 self.text.setObjectName("text")
26 self.gridLayout.addWidget(self.text, 0, 0, 1, 1)
27 self.buttonBox = QtGui.QDialogButtonBox(EditorDialog)
28 self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
29 self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
30 self.buttonBox.setObjectName("buttonBox")
31 self.gridLayout.addWidget(self.buttonBox, 1, 0, 1, 1)
32
33 self.retranslateUi(EditorDialog)
34 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), EditorDialog.accept)
35 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), EditorDialog.reject)
36 QtCore.QObject.connect(self.text, QtCore.SIGNAL("textChanged()"), EditorDialog.onTextChanged)
37 QtCore.QMetaObject.connectSlotsByName(EditorDialog)
38
39 def retranslateUi(self, EditorDialog):
40 EditorDialog.setWindowTitle(QtGui.QApplication.translate("EditorDialog", "Editor", None, QtGui.QApplication.UnicodeUTF8))
41