Ejemplo n.º 1
0
 def change_tab(self, index):
     # print 'reloading:', (index and self.wyswyg_dirty) or (not index and
     #        self.source_dirty)
     if index == 1:  # changing to code view
         if self.wyswyg_dirty:
             self.code_edit.setPlainText(self.editor.html)
             self.wyswyg_dirty = False
     elif index == 0:  # changing to wyswyg
         if self.source_dirty:
             self.editor.html = to_plain_text(self.code_edit)
             self.source_dirty = False
Ejemplo n.º 2
0
 def toPlainText(self):
     return to_plain_text(self)