from PyQt4.QtCore import * from PyQt4.QtGui import * from sface.config import config class LogWindow(QDialog): def __init__(self, parent=None): QWidget.__init__(self, parent) self.setWindowTitle("SFI Log") self.text = QTextBrowser(self) layout = QVBoxLayout() layout.addWidget(self.text) self.setLayout(layout) def setText(self, txt): self.text.setText(txt)