|
| def | __init__ (self, parent=None, name=None, flags=0) |
| |
Definition at line 24 of file Editor.py.
◆ __init__()
| def gui.Editor.Editor.__init__ |
( |
|
self, |
|
|
|
parent = None, |
|
|
|
name = None, |
|
|
|
flags = 0 |
|
) |
| |
Definition at line 25 of file Editor.py.
25 def __init__(self, parent=None, name=None, flags=0):
26 QextScintilla.__init__(self, parent, name, flags)
27 self.lexer=QextScintillaLexerPython(self)
28 self.setLexer(self.lexer)
29 self.lexer.setIndentationWarning(QextScintillaLexerPython.Inconsistent)
31 self.lexer.setAutoIndentStyle(QextScintilla.AiMaintain)
33 self.setBraceMatching(QextScintilla.SloppyBraceMatch)
34 self.setSizePolicy(QSizePolicy(QSizePolicy.Expanding,QSizePolicy.Expanding))
◆ lexer
The documentation for this class was generated from the following file: