home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
- __docformat__ = 'restructuredtext en'
- __license__ = 'GPL v3'
- from PyQt4.Qt import Qt, QDialog
- from calibre.gui2.dialogs.comments_dialog_ui import Ui_CommentsDialog
-
- class CommentsDialog(QDialog, Ui_CommentsDialog):
-
- def __init__(self, parent, text):
- QDialog.__init__(self, parent)
- Ui_CommentsDialog.__init__(self)
- self.setupUi(self)
- icon = self.windowIcon()
- self.setWindowFlags(self.windowFlags() & ~(Qt.WindowContextHelpButtonHint))
- self.setWindowIcon(icon)
- if text is not None:
- self.textbox.setPlainText(text)
-
- self.textbox.setTabChangesFocus(True)
-
-
-