#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
**basic_QPlainTextEdit.py**
**Platform:**
Windows, Linux, Mac Os X.
**Description:**
This module defines the :class:`Basic_QPlainTextEdit` class.
**Others:**
Portions of the code from codeeditor.py by Roberto Alsina: http://lateral.netmanagers.com.ar/weblog/posts/BB832.html,
KhtEditor.py by Benoit Hervier: http://khertan.net/khteditor, Ninja IDE: http://ninja-ide.org/ and
Prymatex: https://github.com/D3f0/prymatex/
"""
#**********************************************************************************************************************
#*** External imports.
#**********************************************************************************************************************
import functools
import re
from PyQt4.QtCore import QChar
from PyQt4.QtCore import QRegExp
from PyQt4.QtCore import QString
from PyQt4.QtCore import Qt
from PyQt4.QtCore import pyqtSignal
from PyQt4.QtGui import QPlainTextEdit
from PyQt4.QtGui import QTextCursor
from PyQt4.QtGui import QTextDocument
from PyQt4.QtGui import QTextOption
#**********************************************************************************************************************
#*** Internal imports.
#**********************************************************************************************************************
import foundations.common
import foundations.dataStructures
import foundations.exceptions
import foundations.strings
import foundations.trace
import foundations.verbose
#**********************************************************************************************************************
#*** Module attributes.
#**********************************************************************************************************************
__author__ = "Thomas Mansencal"
__copyright__ = "Copyright (C) 2008 - 2013 - Thomas Mansencal"
__license__ = "GPL V3.0 - http://www.gnu.org/licenses/"
__maintainer__ = "Thomas Mansencal"
__email__ = "thomas.mansencal@gmail.com"
__status__ = "Production"
__all__ = ["LOGGER", "editBlock", "anchorTextCursor", "centerTextCursor", "Basic_QPlainTextEdit"]
LOGGER = foundations.verbose.installLogger()
#**********************************************************************************************************************
#*** Module classes and definitions.
#**********************************************************************************************************************
[docs]def editBlock(object):
"""
This decorator is used to handle edit blocks undo states.
:param object: Object to decorate. ( Object )
:return: Object. ( Object )
"""
#*** Sphinx: Decorator commented for auto-documentation purpose. @functools.wraps(object)
def editBlockWrapper(*args, **kwargs):
"""
This decorator is used to handle edit blocks undo states.
:param \*args: Arguments. ( \* )
:param \*\*kwargs: Keywords arguments. ( \*\* )
:return: Object. ( Object )
"""
if args:
cursor = foundations.common.getFirstItem(args).textCursor()
cursor.beginEditBlock()
value = None
try:
value = object(*args, **kwargs)
finally:
if args:
cursor.endEditBlock()
return value
return editBlockWrapper
[docs]def anchorTextCursor(object):
"""
This decorator is used to anchor the text cursor position.
:param object: Object to decorate. ( Object )
:return: Object. ( Object )
"""
#*** Sphinx: Decorator commented for auto-documentation purpose. @functools.wraps(object)
def anchorTextCursorWrapper(*args, **kwargs):
"""
This decorator is used to anchor the text cursor position.
:param \*args: Arguments. ( \* )
:param \*\*kwargs: Keywords arguments. ( \*\* )
:return: Object. ( Object )
"""
if args:
if hasattr(foundations.common.getFirstItem(args), "storeTextCursorAnchor"):
foundations.common.getFirstItem(args).storeTextCursorAnchor()
value = object(*args, **kwargs)
if args:
if hasattr(foundations.common.getFirstItem(args), "restoreTextCursorAnchor"):
foundations.common.getFirstItem(args).storeTextCursorAnchor()
return value
return anchorTextCursorWrapper
[docs]def centerTextCursor(object):
"""
This decorator is used to center the text cursor position.
:param object: Object to decorate. ( Object )
:return: Object. ( Object )
"""
#*** Sphinx: Decorator commented for auto-documentation purpose. @functools.wraps(object)
def centerTextCursorWrapper(*args, **kwargs):
"""
This decorator is used to center the text cursor position.
:param \*args: Arguments. ( \* )
:param \*\*kwargs: Keywords arguments. ( \*\* )
:return: Object. ( Object )
"""
if args:
if hasattr(foundations.common.getFirstItem(args), "setCenterOnScroll"):
foundations.common.getFirstItem(args).setCenterOnScroll(True)
value = object(*args, **kwargs)
if args:
if hasattr(foundations.common.getFirstItem(args), "setCenterOnScroll"):
foundations.common.getFirstItem(args).setCenterOnScroll(False)
return value
return centerTextCursorWrapper
[docs]class Basic_QPlainTextEdit(QPlainTextEdit):
"""
This class is a `QPlainTextEdit <http://doc.qt.nokia.com/qplaintextedit.html>`_ subclass providing
a basic editor base class.
"""
# Custom signals definitions.
patternsReplaced = pyqtSignal(list)
"""
This signal is emited by the :class:`Basic_QPlainTextEdit` class
when patterns have been replaced. ( pyqtSignal )
:return: Replaced patterns. ( List )
"""
def __init__(self, parent=None, *args, **kwargs):
"""
.. Sphinx: Statements updated for auto-documentation purpose.
:param parent: Widget parent. ( QObject )
:param \*args: Arguments. ( \* )
:param \*\*kwargs: Keywords arguments. ( \*\* )
"""
LOGGER.debug("> Initializing '{0}()' class.".format(self.__class__.__name__))
QPlainTextEdit.__init__(self, parent, *args, **kwargs)
# --- Setting class attributes. ---
self.__searchPattern = None
self.__minimumFontPointSize = 6
self.__maximumFontPointSize = 24
self.__textCursorAnchor = None
#******************************************************************************************************************
#*** Attributes properties.
#******************************************************************************************************************
@property
def searchPattern(self):
"""
This method is the property for **self.__searchPattern** attribute.
:return: self.__searchPattern. ( String )
"""
return self.__searchPattern
@searchPattern.setter
#*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(AssertionError)
def searchPattern(self, value):
"""
This method is the setter method for **self.__searchPattern** attribute.
:param value: Attribute value. ( String )
"""
if value is not None:
assert type(value) in (str, unicode, QString), \
"'{0}' attribute: '{1}' type is not 'str', 'unicode' or 'QString'!".format("searchPattern", value)
self.__searchPattern = value
@searchPattern.deleter
#*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def searchPattern(self):
"""
This method is the deleter method for **self.__searchPattern** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "searchPattern"))
@property
def minimumFontPointSize(self):
"""
This method is the property for **self.__minimumFontPointSize** attribute.
:return: self.__minimumFontPointSize. ( Integer )
"""
return self.__minimumFontPointSize
@minimumFontPointSize.setter
#*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(AssertionError)
def minimumFontPointSize(self, value):
"""
This method is the setter method for **self.__minimumFontPointSize** attribute.
:param value: Attribute value. ( Integer )
"""
if value is not None:
assert type(value) in (int, float), "'{0}' attribute: '{1}' type is not 'int' or 'float'!".format(
"minimumFontPointSize", value)
assert value > 0, "'{0}' attribute: '{1}' need to be exactly positive!".format("minimumFontPointSize", value)
self.__minimumFontPointSize = value
@minimumFontPointSize.deleter
#*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def minimumFontPointSize(self):
"""
This method is the deleter method for **self.__minimumFontPointSize** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "minimumFontPointSize"))
@property
def maximumFontPointSize(self):
"""
This method is the property for **self.__maximumFontPointSize** attribute.
:return: self.__maximumFontPointSize. ( Integer )
"""
return self.__maximumFontPointSize
@maximumFontPointSize.setter
#*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(AssertionError)
def maximumFontPointSize(self, value):
"""
This method is the setter method for **self.__maximumFontPointSize** attribute.
:param value: Attribute value. ( Integer )
"""
if value is not None:
assert type(value) in (int, float), "'{0}' attribute: '{1}' type is not 'int' or 'float'!".format(
"maximumFontPointSize", value)
assert value > self.__minimumFontPointSize, \
"'{0}' attribute: '{1}' need to be exactly superior to '{2}'!".format(
"maximumFontPointSize", value, self.__minimumFontPointSize)
self.__maximumFontPointSize = value
@maximumFontPointSize.deleter
#*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def maximumFontPointSize(self):
"""
This method is the deleter method for **self.__maximumFontPointSize** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "maximumFontPointSize"))
#******************************************************************************************************************
#*** Class methods.
#******************************************************************************************************************
#*** Sphinx: Decorator commented for auto-documentation purpose. @foundations.trace.untracable
[docs] def wheelEvent(self, event):
"""
This method reimplements the :meth:`QPlainTextEdit.wheelEvent` method.
:param event: Event. ( QEvent )
"""
if event.modifiers() == Qt.ControlModifier:
if event.delta() == 120:
self.zoomIn()
elif event.delta() == -120:
self.zoomOut()
event.ignore()
else:
QPlainTextEdit.wheelEvent(self, event)
def __selectTextUnderCursorBlocks(self, cursor):
"""
This method selects the document text under cursor blocks.
:param cursor: Cursor. ( QTextCursor )
"""
startBlock = self.document().findBlock(cursor.selectionStart()).firstLineNumber()
endBlock = self.document().findBlock(cursor.selectionEnd()).firstLineNumber()
cursor.setPosition(self.document().findBlockByLineNumber(startBlock).position())
cursor.movePosition(QTextCursor.StartOfLine, QTextCursor.MoveAnchor)
cursor.movePosition(QTextCursor.Down, QTextCursor.KeepAnchor, endBlock - startBlock)
cursor.movePosition(QTextCursor.EndOfLine, QTextCursor.KeepAnchor)
[docs] def getSelectedTextMetrics(self):
"""
This method returns current document selected text metrics.
:return: Selected text metrics. ( Tuple )
"""
selectedText = self.getSelectedText()
if not selectedText:
return tuple()
return (selectedText, self.getCursorLine(), self.getCursorColumn() - len(selectedText))
[docs] def getDefaultTextOption(self):
"""
This method returns default text option.
:return: Default text options. ( QTextOption )
"""
return self.document().defaultTextOption()
[docs] def setDefaultTextOption(self, textOption):
"""
This method sets default text option using given flag.
:param textOption: Text option. ( QTextOption )
:return: Method success. ( Boolean )
"""
self.document().setDefaultTextOption(textOption)
return True
[docs] def storeTextCursorAnchor(self):
"""
This method stores the document cursor anchor.
:return: Method success. ( Boolean )
"""
self.__textCursorAnchor = (self.textCursor(),
self.horizontalScrollBar().sliderPosition(),
self.verticalScrollBar().sliderPosition())
return True
[docs] def restoreTextCursorAnchor(self):
"""
This method restores the document cursor anchor.
:return: Method success. ( Boolean )
"""
if not self.__textCursorAnchor:
return False
textCursor, horizontalScrollBarSliderPosition, verticalScrollBarSliderPosition = self.__textCursorAnchor
self.setTextCursor(textCursor)
self.horizontalScrollBar().setSliderPosition(horizontalScrollBarSliderPosition)
self.verticalScrollBar().setSliderPosition(verticalScrollBarSliderPosition)
return True
[docs] def getCursorLine(self):
"""
This method returns the document cursor line.
:return: Cursor line. ( Integer )
"""
return self.textCursor().blockNumber()
[docs] def getCursorColumn(self):
"""
This method returns the document cursor column.
:return: Cursor column. ( Integer )
"""
return self.textCursor().columnNumber()
[docs] def getPreviousCharacter(self):
"""
This method returns the character before the cursor.
:return: Previous cursor character. ( QString )
"""
cursor = self.textCursor()
cursor.movePosition(QTextCursor.PreviousCharacter, QTextCursor.KeepAnchor)
return cursor.selectedText()
[docs] def getNextCharacter(self):
"""
This method returns the character after the cursor.
:return: Next cursor character. ( QString )
"""
cursor = self.textCursor()
cursor.movePosition(QTextCursor.NextCharacter, QTextCursor.KeepAnchor)
return cursor.selectedText()
[docs] def getWords(self):
"""
This method returns the document words.
:return: Document words. ( List )
"""
words = []
block = self.document().findBlockByLineNumber(0)
while block.isValid():
blockWords = foundations.strings.getWords(foundations.strings.encode(block.text()))
if blockWords:
words.extend(blockWords)
block = block.next()
return words
[docs] def getSelectedText(self):
"""
This method returns the document text under cursor.
:return: Text under cursor. ( QString )
"""
return self.textCursor().selectedText()
[docs] def getWordUnderCursorLegacy(self):
"""
This method returns the document word under cursor ( Using Qt legacy "QTextCursor.WordUnderCursor" ).
:return: Word under cursor. ( QString )
"""
cursor = self.textCursor()
cursor.select(QTextCursor.WordUnderCursor)
return cursor.selectedText()
[docs] def getWordUnderCursor(self):
"""
This method returns the document word under cursor.
:return: Word under cursor. ( QString )
"""
if not re.match(r"^\w+$", foundations.strings.encode(self.getPreviousCharacter())):
return QString()
cursor = self.textCursor()
cursor.movePosition(QTextCursor.PreviousWord, QTextCursor.MoveAnchor)
cursor.movePosition(QTextCursor.EndOfWord, QTextCursor.KeepAnchor)
return cursor.selectedText()
[docs] def getPartialWordUnderCursor(self):
"""
This method returns the document partial word under cursor ( From word start to cursor position ).
:return: Partial word under cursor. ( QString )
"""
if not re.match(r"^\w+$", foundations.strings.encode(self.getPreviousCharacter())):
return QString()
cursor = self.textCursor()
position = cursor.position()
cursor.movePosition(QTextCursor.PreviousWord, QTextCursor.KeepAnchor)
return cursor.selectedText()
[docs] def isModified(self):
"""
This method returns if the document is modified.
:return: Document modified state. ( Boolean )
"""
return self.document().isModified()
[docs] def setModified(self, state):
"""
This method sets the document modified state.
:param state: Modified state. ( Boolean )
:return: Method success. ( Boolean )
"""
self.document().setModified(state)
return True
[docs] def isEmpty(self):
"""
This method returns if the document is empty.
:return: Document empty state. ( Boolean )
"""
return self.document().isEmpty()
#*** Sphinx: Decorator commented for auto-documentation purpose. @editBlock
[docs] def setContent(self, content):
"""
This method sets document with given content while providing undo capability.
:param content: Content to set. ( List )
:return: Method success. ( Boolean )
"""
cursor = self.textCursor()
cursor.movePosition(QTextCursor.Start, QTextCursor.MoveAnchor)
cursor.movePosition(QTextCursor.End, QTextCursor.KeepAnchor)
cursor.removeSelectedText()
for line in content:
self.moveCursor(QTextCursor.End)
self.insertPlainText(line)
return True
[docs] def delete(self):
"""
This method deletes the document text under cursor.
:return: Method success. ( Boolean )
"""
self.textCursor().removeSelectedText()
return True
#*** Sphinx: Decorator commented for auto-documentation purpose. @editBlock
[docs] def deleteLines(self):
"""
This method deletes the document lines under cursor.
:return: Method success. ( Boolean )
"""
cursor = self.textCursor()
self.__selectTextUnderCursorBlocks(cursor)
cursor.removeSelectedText()
cursor.deleteChar()
return True
#*** Sphinx: Decorator commented for auto-documentation purpose. @editBlock
[docs] def duplicateLines(self):
"""
This method duplicates the document lines under cursor.
:return: Method success. ( Boolean )
"""
cursor = self.textCursor()
self.__selectTextUnderCursorBlocks(cursor)
text = cursor.selectedText()
cursor.setPosition(cursor.block().next().position())
cursor.position() == cursor.document().firstBlock().position() and cursor.setPosition(
cursor.document().lastBlock().position())
startPosition = cursor.position()
cursor.insertText(text)
endPosition = cursor.position()
cursor.insertText(QChar(QChar.ParagraphSeparator))
cursor.setPosition(startPosition, QTextCursor.MoveAnchor)
cursor.setPosition(endPosition, QTextCursor.KeepAnchor)
self.setTextCursor(cursor)
return True
#*** Sphinx: Decorator commented for auto-documentation purpose. @editBlock
[docs] def moveLines(self, direction=QTextCursor.Up):
"""
This method moves the document lines under cursor.
:param direction: Move direction ( QTextCursor.Down / QTextCursor.Up ). ( QTextCursor.MoveOperation )
:return: Method success. ( Boolean )
"""
cursor = self.textCursor()
if (direction == QTextCursor.Up and cursor.block() == cursor.document().firstBlock()) or \
(direction == QTextCursor.Down and cursor.block() == cursor.document().lastBlock()):
return False
self.__selectTextUnderCursorBlocks(cursor)
text = cursor.selectedText()
cursor.removeSelectedText()
cursor.deleteChar()
cursor.setPosition(cursor.block().next().position() if direction == QTextCursor.Down else \
cursor.block().previous().position())
if cursor.position() == cursor.document().firstBlock().position() and direction == QTextCursor.Down:
cursor.movePosition(QTextCursor.End)
cursor.insertText(QChar(QChar.ParagraphSeparator))
startPosition = cursor.position()
cursor.insertText(text)
endPosition = cursor.position()
not cursor.atEnd() and cursor.insertText(QChar(QChar.ParagraphSeparator))
cursor.setPosition(startPosition, QTextCursor.MoveAnchor)
cursor.setPosition(endPosition, QTextCursor.KeepAnchor)
self.setTextCursor(cursor)
return True
[docs] def moveLinesUp(self):
"""
This method moves up the document lines under cursor.
:return: Method success. ( Boolean )
"""
return self.moveLines(QTextCursor.Up)
[docs] def moveLinesDown(self):
"""
This method moves down the document lines under cursor.
:return: Method success. ( Boolean )
"""
return self.moveLines(QTextCursor.Down)
#*** Sphinx: Decorator commented for auto-documentation purpose. @centerTextCursor
[docs] def search(self, pattern, **kwargs):
"""
This method searchs given pattern text in the document.
Usage::
>>> scriptEditor = Umbra.componentsManager.getInterface("factory.scriptEditor")
True
>>> codeEditor = scriptEditor.getCurrentEditor()
True
>>> codeEditor.search(searchPattern, caseSensitive=True, wholeWord=True, regularExpressions=True, \
backwardSearch=True, wrapAround=True)
True
:param pattern: Pattern to search for. ( String )
:param \*\*kwargs: Search settings. ( Key / Value pairs )
:return: Method success. ( Boolean )
"""
settings = foundations.dataStructures.Structure(**{"caseSensitive" : False,
"wholeWord" : False,
"regularExpressions" : False,
"backwardSearch" : False,
"wrapAround" : True})
settings.update(kwargs)
self.__searchPattern = pattern
if settings.regularExpressions:
pattern = QRegExp(pattern)
pattern.setCaseSensitivity(Qt.CaseSensitive if settings.caseSensitive else Qt.CaseInsensitive)
flags = QTextDocument.FindFlags()
if settings.caseSensitive:
flags = flags | QTextDocument.FindCaseSensitively
if settings.wholeWord:
flags = flags | QTextDocument.FindWholeWords
if settings.backwardSearch:
flags = flags | QTextDocument.FindBackward
cursor = self.document().find(pattern, self.textCursor(), flags)
if not cursor.isNull():
self.setTextCursor(cursor)
return True
else:
if settings.wrapAround:
self.storeTextCursorAnchor()
cursor = self.textCursor()
if settings.backwardSearch:
cursor.movePosition(QTextCursor.End, QTextCursor.MoveAnchor)
else:
cursor.movePosition(QTextCursor.Start, QTextCursor.MoveAnchor)
self.setTextCursor(cursor)
settings.wrapAround = False
if self.search(pattern, **settings):
return True
else:
self.restoreTextCursorAnchor()
#*** Sphinx: Decorator commented for auto-documentation purpose. @centerTextCursor
[docs] def searchNext(self):
"""
This method searchs the next search pattern in the document.
:return: Method success. ( Boolean )
"""
pattern = self.getSelectedText() or self.__searchPattern
if not pattern:
return False
return self.search(pattern, **{"caseSensitive" : True,
"wholeWord" : False,
"regularExpressions" : False,
"backwardSearch" : False,
"wrapAround" : True})
#*** Sphinx: Decorator commented for auto-documentation purpose. @centerTextCursor
[docs] def searchPrevious(self):
"""
This method searchs the previous search pattern in the document.
:return: Method success. ( Boolean )
"""
pattern = self.getSelectedText() or self.__searchPattern
if not pattern:
return False
return self.search(pattern, **{"caseSensitive" : True,
"wholeWord" : False,
"regularExpressions" : False,
"backwardSearch" : True,
"wrapAround" : True})
#*** Sphinx: Decorator commented for auto-documentation purpose. @centerTextCursor
#*** Sphinx: Decorator commented for auto-documentation purpose. @editBlock
[docs] def replace(self, pattern, replacementPattern, **kwargs):
"""
This method replaces current given pattern occurence in the document with the replacement pattern.
Usage::
>>> scriptEditor = Umbra.componentsManager.getInterface("factory.scriptEditor")
True
>>> codeEditor = scriptEditor.getCurrentEditor()
True
>>> codeEditor.replace(searchPattern, replacementPattern, caseSensitive=True, wholeWord=True, \
regularExpressions=True, backwardSearch=True, wrapAround=True)
True
:param pattern: Pattern to replace. ( String )
:param replacementPattern: Replacement pattern. ( String )
:param \*\*kwargs: Format settings. ( Key / Value pairs )
:return: Method success. ( Boolean )
"""
settings = foundations.dataStructures.Structure(**{"caseSensitive" : False,
"regularExpressions" : False})
settings.update(kwargs)
selectedText = self.getSelectedText()
regex = "^{0}$".format(pattern if settings.regularExpressions else re.escape(foundations.strings.encode(pattern)))
flags = int() if settings.caseSensitive else re.IGNORECASE
if not selectedText or not re.search(regex, selectedText, flags=flags):
self.search(pattern, **kwargs)
return False
cursor = self.textCursor()
metrics = self.getSelectedTextMetrics()
if cursor.isNull():
return False
if not cursor.hasSelection():
return False
cursor.insertText(replacementPattern)
self.patternsReplaced.emit([metrics])
self.search(pattern, **kwargs)
return True
#*** Sphinx: Decorator commented for auto-documentation purpose. @centerTextCursor
#*** Sphinx: Decorator commented for auto-documentation purpose. @anchorTextCursor
#*** Sphinx: Decorator commented for auto-documentation purpose. @editBlock
[docs] def replaceAll(self, pattern, replacementPattern, **kwargs):
"""
| This method replaces every given pattern occurences in the document with the replacement pattern.
.. warning::
Initializing **wrapAround** keyword to **True** leads to infinite recursion loop
if the search pattern and the replacementPattern are the same.
:param pattern: Pattern to replace. ( String )
:param replacementPattern: Replacement pattern. ( String )
:param \*\*kwargs: Format settings. ( Key / Value pairs )
:return: Method success. ( Boolean )
"""
editCursor = self.textCursor()
editCursor.movePosition(QTextCursor.Start, QTextCursor.MoveAnchor)
self.setTextCursor(editCursor)
patternsReplaced = []
while True:
if not self.search(pattern, **kwargs):
break
cursor = self.textCursor()
metrics = self.getSelectedTextMetrics()
if cursor.isNull():
break
if not cursor.hasSelection():
break
cursor.insertText(replacementPattern)
patternsReplaced.append(metrics)
self.patternsReplaced.emit(patternsReplaced)
return True
#*** Sphinx: Decorator commented for auto-documentation purpose. @centerTextCursor
[docs] def gotoLine(self, line):
"""
This method moves the text cursor to given line.
:param line: Line to go to. ( Integer )
:return: Method success. ( Boolean )
"""
cursor = self.textCursor()
cursor.setPosition(self.document().findBlockByNumber(line - 1).position())
self.setTextCursor(cursor)
return True
[docs] def gotoColumn(self, column):
"""
This method moves the text cursor to given column.
:param column: Column to go to. ( Integer )
:return: Method success. ( Boolean )
"""
cursor = self.textCursor()
cursor.setPosition(cursor.block().position() + column)
self.setTextCursor(cursor)
return True
[docs] def gotoPosition(self, position):
"""
This method moves the text cursor to given position.
:param position: Position to go to. ( Integer )
:return: Method success. ( Boolean )
"""
cursor = self.textCursor()
cursor.setPosition(position)
self.setTextCursor(cursor)
return True
[docs] def toggleWordWrap(self):
"""
This method toggles document word wrap.
:return: Method success. ( Boolean )
"""
self.setWordWrapMode(not self.wordWrapMode() and QTextOption.WordWrap or QTextOption.NoWrap)
return True
[docs] def toggleWhiteSpaces(self):
"""
This method toggles document white spaces display.
:return: Method success. ( Boolean )
"""
textOption = self.getDefaultTextOption()
if textOption.flags().__int__():
textOption = QTextOption()
textOption.setTabStop(self.tabStopWidth())
else:
textOption.setFlags(
textOption.flags() | QTextOption.ShowTabsAndSpaces | QTextOption.ShowLineAndParagraphSeparators)
self.setDefaultTextOption(textOption)
return True
[docs] def setFontIncrement(self, value):
"""
This method increments the document font size.
:param value: Font size increment. ( Integer )
:return: Method success. ( Boolean )
"""
font = self.font()
pointSize = font.pointSize() + value
if pointSize < self.__minimumFontPointSize or pointSize > self.__maximumFontPointSize:
return False
font.setPointSize(pointSize)
self.setFont(font)
return True
[docs] def zoomIn(self):
"""
This method increases the document font size.
:return: Method success. ( Boolean )
"""
return self.setFontIncrement(1)
[docs] def zoomOut(self):
"""
This method increases the document font size.
:return: Method success. ( Boolean )
"""
return self.setFontIncrement(-1)
#**********************************************************************************************************************
#*** Sphinx: Statements updated for auto-documentation purpose.
#**********************************************************************************************************************