API reference - Class QTextEditNotation used in Ruby API documentation Description: Binding of QTextEdit Class hierarchy: QTextEdit » QAbstractScrollArea » QFrame » QWidget » QObject Sub-classes: AutoFormattingFlag, LineWrapMode, ExtraSelection
Public constructors
Public methods
Public static methods and constants
Protected methods (static, non-static and constructors)
Deprecated methods (protected, public, static, non-static and constructors)
Detailed description[static,const] new QTextEdit_AutoFormattingFlag ptr AutoAllDescription: Enum constant QTextEdit::AutoAll [static,const] new QTextEdit_AutoFormattingFlag ptr AutoBulletListDescription: Enum constant QTextEdit::AutoBulletList [static,const] new QTextEdit_AutoFormattingFlag ptr AutoNoneDescription: Enum constant QTextEdit::AutoNone [static,const] new QTextEdit_LineWrapMode ptr FixedColumnWidthDescription: Enum constant QTextEdit::FixedColumnWidth [static,const] new QTextEdit_LineWrapMode ptr FixedPixelWidthDescription: Enum constant QTextEdit::FixedPixelWidth [static,const] new QTextEdit_LineWrapMode ptr NoWrapDescription: Enum constant QTextEdit::NoWrap [static,const] new QTextEdit_LineWrapMode ptr WidgetWidthDescription: Enum constant QTextEdit::WidgetWidth void _createDescription: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. void _destroyDescription: Explicitly destroys the object Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, this method will do nothing. [const] bool _destroyed?Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. [const] bool _is_const_object?Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. void _manageDescription: Marks the object as managed by the script side. After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. void _unmanageDescription: Marks the object as no longer owned by the script side. Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. [const] bool acceptRichTextDescription: Method bool QTextEdit::acceptRichText() Python specific notes:The object exposes a readable attribute 'acceptRichText'. This is the getter. void acceptRichText=(bool accept)Description: Method void QTextEdit::setAcceptRichText(bool accept) Python specific notes:The object exposes a writable attribute 'acceptRichText'. This is the setter. [virtual] void actionEvent(QActionEvent ptr arg1)Description: Virtual method void QTextEdit::actionEvent(QActionEvent *) This method can be reimplemented in a derived class. [const] Qt_QFlags_AlignmentFlag alignmentDescription: Method QFlags<Qt::AlignmentFlag> QTextEdit::alignment() Python specific notes:The object exposes a readable attribute 'alignment'. This is the getter. void alignment=(const Qt_QFlags_AlignmentFlag a)Description: Method void QTextEdit::setAlignment(QFlags<Qt::AlignmentFlag> a) Python specific notes:The object exposes a writable attribute 'alignment'. This is the setter. [const] string anchorAt(const QPoint pos)Description: Method QString QTextEdit::anchorAt(const QPoint &pos) void append(string text)Description: Method void QTextEdit::append(const QString &text) [const] QTextEdit_QFlags_AutoFormattingFlag autoFormattingDescription: Method QFlags<QTextEdit::AutoFormattingFlag> QTextEdit::autoFormatting() Python specific notes:The object exposes a readable attribute 'autoFormatting'. This is the getter. void autoFormatting=(const QTextEdit_QFlags_AutoFormattingFlag features)Description: Method void QTextEdit::setAutoFormatting(QFlags<QTextEdit::AutoFormattingFlag> features) Python specific notes:The object exposes a writable attribute 'autoFormatting'. This is the setter. [virtual,const] bool canInsertFromMimeData(const QMimeData ptr source)Description: Virtual method bool QTextEdit::canInsertFromMimeData(const QMimeData *source) This method can be reimplemented in a derived class. [const] bool canPasteDescription: Method bool QTextEdit::canPaste() [virtual] void changeEvent(QEvent ptr e)Description: Virtual method void QTextEdit::changeEvent(QEvent *e) This method can be reimplemented in a derived class. [virtual] void childEvent(QChildEvent ptr arg1)Description: Virtual method void QTextEdit::childEvent(QChildEvent *) This method can be reimplemented in a derived class. void clearDescription: Method void QTextEdit::clear() [virtual] void closeEvent(QCloseEvent ptr arg1)Description: Virtual method void QTextEdit::closeEvent(QCloseEvent *) This method can be reimplemented in a derived class. [virtual] void contextMenuEvent(QContextMenuEvent ptr e)Description: Virtual method void QTextEdit::contextMenuEvent(QContextMenuEvent *e) This method can be reimplemented in a derived class. void copyDescription: Method void QTextEdit::copy() [event] void copyAvailable(bool b)Description: Signal declaration for QTextEdit::copyAvailable(bool b) You can bind a procedure to this signal. void createDescription: Ensures the C++ object is created Use of this method is deprecated. Use _create instead [virtual,const] QMimeData ptr createMimeDataFromSelectionDescription: Virtual method QMimeData *QTextEdit::createMimeDataFromSelection() This method can be reimplemented in a derived class. QMenu ptr createStandardContextMenuDescription: Method QMenu *QTextEdit::createStandardContextMenu() QMenu ptr createStandardContextMenu(const QPoint position)Description: Method QMenu *QTextEdit::createStandardContextMenu(const QPoint &position) [const] QTextCharFormat currentCharFormatDescription: Method QTextCharFormat QTextEdit::currentCharFormat() Python specific notes:The object exposes a readable attribute 'currentCharFormat'. This is the getter. void currentCharFormat=(const QTextCharFormat format)Description: Method void QTextEdit::setCurrentCharFormat(const QTextCharFormat &format) Python specific notes:The object exposes a writable attribute 'currentCharFormat'. This is the setter. [event] void currentCharFormatChanged(const QTextCharFormat format)Description: Signal declaration for QTextEdit::currentCharFormatChanged(const QTextCharFormat &format) You can bind a procedure to this signal. [const] QFont currentFontDescription: Method QFont QTextEdit::currentFont() Python specific notes:The object exposes a readable attribute 'currentFont'. This is the getter. void currentFont=(const QFont f)Description: Method void QTextEdit::setCurrentFont(const QFont &f) Python specific notes:The object exposes a writable attribute 'currentFont'. This is the setter. [const] QTextCursor cursorForPosition(const QPoint pos)Description: Method QTextCursor QTextEdit::cursorForPosition(const QPoint &pos) [event] void cursorPositionChangedDescription: Signal declaration for QTextEdit::cursorPositionChanged() You can bind a procedure to this signal. [const] QRect cursorRect(const QTextCursor cursor)Description: Method QRect QTextEdit::cursorRect(const QTextCursor &cursor) [const] QRect cursorRectDescription: Method QRect QTextEdit::cursorRect() [const] int cursorWidthDescription: Method int QTextEdit::cursorWidth() Python specific notes:The object exposes a readable attribute 'cursorWidth'. This is the getter. void cursorWidth=(int width)Description: Method void QTextEdit::setCursorWidth(int width) Python specific notes:The object exposes a writable attribute 'cursorWidth'. This is the setter. [event] void customContextMenuRequested(const QPoint pos)Description: Signal declaration for QTextEdit::customContextMenuRequested(const QPoint &pos) You can bind a procedure to this signal. [virtual] void customEvent(QEvent ptr arg1)Description: Virtual method void QTextEdit::customEvent(QEvent *) This method can be reimplemented in a derived class. void cutDescription: Method void QTextEdit::cut() void destroyDescription: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead [event] void destroyed(QObject ptr arg1)Description: Signal declaration for QTextEdit::destroyed(QObject *) You can bind a procedure to this signal. [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead [virtual] void disconnectNotify(string signal)Description: Virtual method void QTextEdit::disconnectNotify(const char *signal) This method can be reimplemented in a derived class. [const] QTextDocument ptr documentDescription: Method QTextDocument *QTextEdit::document() Python specific notes:The object exposes a readable attribute 'document'. This is the getter. void document=(QTextDocument ptr document)Description: Method void QTextEdit::setDocument(QTextDocument *document) Python specific notes:The object exposes a writable attribute 'document'. This is the setter. [const] string documentTitleDescription: Method QString QTextEdit::documentTitle() Python specific notes:The object exposes a readable attribute 'documentTitle'. This is the getter. void documentTitle=(string title)Description: Method void QTextEdit::setDocumentTitle(const QString &title) Python specific notes:The object exposes a writable attribute 'documentTitle'. This is the setter. [virtual] void dragEnterEvent(QDragEnterEvent ptr e)Description: Virtual method void QTextEdit::dragEnterEvent(QDragEnterEvent *e) This method can be reimplemented in a derived class. [virtual] void dragLeaveEvent(QDragLeaveEvent ptr e)Description: Virtual method void QTextEdit::dragLeaveEvent(QDragLeaveEvent *e) This method can be reimplemented in a derived class. [virtual] void dragMoveEvent(QDragMoveEvent ptr e)Description: Virtual method void QTextEdit::dragMoveEvent(QDragMoveEvent *e) This method can be reimplemented in a derived class. void drawFrame(QPainter ptr arg1)Description: Method void QTextEdit::drawFrame(QPainter *) This method is protected and can only be called from inside a derived class. [virtual] void dropEvent(QDropEvent ptr e)Description: Virtual method void QTextEdit::dropEvent(QDropEvent *e) This method can be reimplemented in a derived class. [virtual] void enabledChange(bool arg1)Description: Virtual method void QTextEdit::enabledChange(bool) This method can be reimplemented in a derived class. void ensureCursorVisibleDescription: Method void QTextEdit::ensureCursorVisible() [virtual] void enterEvent(QEvent ptr arg1)Description: Virtual method void QTextEdit::enterEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] bool event(QEvent ptr e)Description: Virtual method bool QTextEdit::event(QEvent *e) This method can be reimplemented in a derived class. [virtual] bool eventFilter(QObject ptr arg1,QEvent ptr arg2)Description: Virtual method bool QTextEdit::eventFilter(QObject *, QEvent *) This method can be reimplemented in a derived class. [const] QTextEdit_ExtraSelection[] extraSelectionsDescription: Method QList<QTextEdit::ExtraSelection> QTextEdit::extraSelections() Python specific notes:The object exposes a readable attribute 'extraSelections'. This is the getter. void extraSelections=(QTextEdit_ExtraSelection[] selections)Description: Method void QTextEdit::setExtraSelections(const QList<QTextEdit::ExtraSelection> &selections) Python specific notes:The object exposes a writable attribute 'extraSelections'. This is the setter. bool find(string exp,const QTextDocument_QFlags_FindFlag options = 0)Description: Method bool QTextEdit::find(const QString &exp, QFlags<QTextDocument::FindFlag> options) [virtual] void focusInEvent(QFocusEvent ptr e)Description: Virtual method void QTextEdit::focusInEvent(QFocusEvent *e) This method can be reimplemented in a derived class. bool focusNextChildDescription: Method bool QTextEdit::focusNextChild() This method is protected and can only be called from inside a derived class. [virtual] bool focusNextPrevChild(bool next)Description: Virtual method bool QTextEdit::focusNextPrevChild(bool next) This method can be reimplemented in a derived class. [virtual] void focusOutEvent(QFocusEvent ptr e)Description: Virtual method void QTextEdit::focusOutEvent(QFocusEvent *e) This method can be reimplemented in a derived class. bool focusPreviousChildDescription: Method bool QTextEdit::focusPreviousChild() This method is protected and can only be called from inside a derived class. [virtual] void fontChange(const QFont arg1)Description: Virtual method void QTextEdit::fontChange(const QFont &) This method can be reimplemented in a derived class. [const] string fontFamilyDescription: Method QString QTextEdit::fontFamily() Python specific notes:The object exposes a readable attribute 'fontFamily'. This is the getter. void fontFamily=(string fontFamily)Description: Method void QTextEdit::setFontFamily(const QString &fontFamily) Python specific notes:The object exposes a writable attribute 'fontFamily'. This is the setter. [const] bool fontItalicDescription: Method bool QTextEdit::fontItalic() Python specific notes:The object exposes a readable attribute 'fontItalic'. This is the getter. void fontItalic=(bool b)Description: Method void QTextEdit::setFontItalic(bool b) Python specific notes:The object exposes a writable attribute 'fontItalic'. This is the setter. [const] double fontPointSizeDescription: Method double QTextEdit::fontPointSize() Python specific notes:The object exposes a readable attribute 'fontPointSize'. This is the getter. void fontPointSize=(double s)Description: Method void QTextEdit::setFontPointSize(double s) Python specific notes:The object exposes a writable attribute 'fontPointSize'. This is the setter. [const] bool fontUnderlineDescription: Method bool QTextEdit::fontUnderline() Python specific notes:The object exposes a readable attribute 'fontUnderline'. This is the getter. void fontUnderline=(bool b)Description: Method void QTextEdit::setFontUnderline(bool b) Python specific notes:The object exposes a writable attribute 'fontUnderline'. This is the setter. [const] int fontWeightDescription: Method int QTextEdit::fontWeight() Python specific notes:The object exposes a readable attribute 'fontWeight'. This is the getter. void fontWeight=(int w)Description: Method void QTextEdit::setFontWeight(int w) Python specific notes:The object exposes a writable attribute 'fontWeight'. This is the setter. [virtual,const] int heightForWidth(int arg1)Description: Virtual method int QTextEdit::heightForWidth(int) This method can be reimplemented in a derived class. [virtual] void hideEvent(QHideEvent ptr arg1)Description: Virtual method void QTextEdit::hideEvent(QHideEvent *) This method can be reimplemented in a derived class. void html=(string text)Description: Method void QTextEdit::setHtml(const QString &text) Python specific notes:The object exposes a writable attribute 'html'. This is the setter. [virtual] void inputMethodEvent(QInputMethodEvent ptr arg1)Description: Virtual method void QTextEdit::inputMethodEvent(QInputMethodEvent *) This method can be reimplemented in a derived class. [virtual,const] QVariant inputMethodQuery(const Qt_InputMethodQuery property)Description: Virtual method QVariant QTextEdit::inputMethodQuery(Qt::InputMethodQuery property) This method can be reimplemented in a derived class. [virtual] void insertFromMimeData(const QMimeData ptr source)Description: Virtual method void QTextEdit::insertFromMimeData(const QMimeData *source) This method can be reimplemented in a derived class. void insertHtml(string text)Description: Method void QTextEdit::insertHtml(const QString &text) void insertPlainText(string text)Description: Method void QTextEdit::insertPlainText(const QString &text) [const] bool isReadOnly?Description: Method bool QTextEdit::isReadOnly() Python specific notes:The object exposes a readable attribute 'readOnly'. This is the getter. [const] bool isUndoRedoEnabled?Description: Method bool QTextEdit::isUndoRedoEnabled() Python specific notes:The object exposes a readable attribute 'undoRedoEnabled'. This is the getter. [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference Use of this method is deprecated. Use _is_const_object? instead [virtual] void keyPressEvent(QKeyEvent ptr e)Description: Virtual method void QTextEdit::keyPressEvent(QKeyEvent *e) This method can be reimplemented in a derived class. [virtual] void keyReleaseEvent(QKeyEvent ptr e)Description: Virtual method void QTextEdit::keyReleaseEvent(QKeyEvent *e) This method can be reimplemented in a derived class. [virtual] void languageChangeDescription: Virtual method void QTextEdit::languageChange() This method can be reimplemented in a derived class. [virtual] void leaveEvent(QEvent ptr arg1)Description: Virtual method void QTextEdit::leaveEvent(QEvent *) This method can be reimplemented in a derived class. [const] int lineWrapColumnOrWidthDescription: Method int QTextEdit::lineWrapColumnOrWidth() Python specific notes:The object exposes a readable attribute 'lineWrapColumnOrWidth'. This is the getter. void lineWrapColumnOrWidth=(int w)Description: Method void QTextEdit::setLineWrapColumnOrWidth(int w) Python specific notes:The object exposes a writable attribute 'lineWrapColumnOrWidth'. This is the setter. [const] QTextEdit_LineWrapMode lineWrapModeDescription: Method QTextEdit::LineWrapMode QTextEdit::lineWrapMode() Python specific notes:The object exposes a readable attribute 'lineWrapMode'. This is the getter. void lineWrapMode=(const QTextEdit_LineWrapMode mode)Description: Method void QTextEdit::setLineWrapMode(QTextEdit::LineWrapMode mode) Python specific notes:The object exposes a writable attribute 'lineWrapMode'. This is the setter. [virtual] QVariant loadResource(int type,const QUrl name)Description: Virtual method QVariant QTextEdit::loadResource(int type, const QUrl &name) This method can be reimplemented in a derived class. void mergeCurrentCharFormat(const QTextCharFormat modifier)Description: Method void QTextEdit::mergeCurrentCharFormat(const QTextCharFormat &modifier) [virtual,const] int metric(const QPaintDevice_PaintDeviceMetric arg1)Description: Virtual method int QTextEdit::metric(QPaintDevice::PaintDeviceMetric) This method can be reimplemented in a derived class. [virtual,const] QSize minimumSizeHintDescription: Virtual method QSize QTextEdit::minimumSizeHint() This method can be reimplemented in a derived class. [virtual] void mouseDoubleClickEvent(QMouseEvent ptr e)Description: Virtual method void QTextEdit::mouseDoubleClickEvent(QMouseEvent *e) This method can be reimplemented in a derived class. [virtual] void mouseMoveEvent(QMouseEvent ptr e)Description: Virtual method void QTextEdit::mouseMoveEvent(QMouseEvent *e) This method can be reimplemented in a derived class. [virtual] void mousePressEvent(QMouseEvent ptr e)Description: Virtual method void QTextEdit::mousePressEvent(QMouseEvent *e) This method can be reimplemented in a derived class. [virtual] void mouseReleaseEvent(QMouseEvent ptr e)Description: Virtual method void QTextEdit::mouseReleaseEvent(QMouseEvent *e) This method can be reimplemented in a derived class. void moveCursor(const QTextCursor_MoveOperation operation,const QTextCursor_MoveMode mode = QTextCursor::MoveAnchor)Description: Method void QTextEdit::moveCursor(QTextCursor::MoveOperation operation, QTextCursor::MoveMode mode) [virtual] void moveEvent(QMoveEvent ptr arg1)Description: Virtual method void QTextEdit::moveEvent(QMoveEvent *) This method can be reimplemented in a derived class. [static] new QTextEdit new(QWidget ptr parent = 0)Description: Constructor QTextEdit::QTextEdit(QWidget *parent) This method creates an object of class QTextEdit. Python specific notes:This method is the default initializer of the object [static] new QTextEdit new(string text,QWidget ptr parent = 0)Description: Constructor QTextEdit::QTextEdit(const QString &text, QWidget *parent) This method creates an object of class QTextEdit. Python specific notes:This method is the default initializer of the object [const] bool overwriteModeDescription: Method bool QTextEdit::overwriteMode() Python specific notes:The object exposes a readable attribute 'overwriteMode'. This is the getter. void overwriteMode=(bool overwrite)Description: Method void QTextEdit::setOverwriteMode(bool overwrite) Python specific notes:The object exposes a writable attribute 'overwriteMode'. This is the setter. [virtual,const] QPaintEngine ptr paintEngineDescription: Virtual method QPaintEngine *QTextEdit::paintEngine() This method can be reimplemented in a derived class. [virtual] void paintEvent(QPaintEvent ptr e)Description: Virtual method void QTextEdit::paintEvent(QPaintEvent *e) This method can be reimplemented in a derived class. [virtual] void paletteChange(const QPalette arg1)Description: Virtual method void QTextEdit::paletteChange(const QPalette &) This method can be reimplemented in a derived class. void pasteDescription: Method void QTextEdit::paste() void plainText=(string text)Description: Method void QTextEdit::setPlainText(const QString &text) Python specific notes:The object exposes a writable attribute 'plainText'. This is the setter. [const] void print(QPrinter ptr printer)Description: Method void QTextEdit::print(QPrinter *printer) Python specific notes:This method is available as method 'print_' in Python void qt_create(unsigned long arg1 = 0,bool initializeWindow = true,bool destroyOldWindow = true)Description: Method void QTextEdit::create(WId, bool initializeWindow, bool destroyOldWindow) This method is protected and can only be called from inside a derived class. void qt_destroy(bool destroyWindow = true,bool destroySubWindows = true)Description: Method void QTextEdit::destroy(bool destroyWindow, bool destroySubWindows) This method is protected and can only be called from inside a derived class. [const] bool readOnlyDescription: Method bool QTextEdit::isReadOnly() Python specific notes:The object exposes a readable attribute 'readOnly'. This is the getter. void readOnly=(bool ro)Description: Method void QTextEdit::setReadOnly(bool ro) Python specific notes:The object exposes a writable attribute 'readOnly'. This is the setter. [const] int receivers(string signal)Description: Method int QTextEdit::receivers(const char *signal) This method is protected and can only be called from inside a derived class. void redoDescription: Method void QTextEdit::redo() [event] void redoAvailable(bool b)Description: Signal declaration for QTextEdit::redoAvailable(bool b) You can bind a procedure to this signal. void resetInputContextDescription: Method void QTextEdit::resetInputContext() This method is protected and can only be called from inside a derived class. [virtual] void resizeEvent(QResizeEvent ptr e)Description: Virtual method void QTextEdit::resizeEvent(QResizeEvent *e) This method can be reimplemented in a derived class. [virtual] void scrollContentsBy(int dx,int dy)Description: Virtual method void QTextEdit::scrollContentsBy(int dx, int dy) This method can be reimplemented in a derived class. void scrollToAnchor(string name)Description: Method void QTextEdit::scrollToAnchor(const QString &name) void selectAllDescription: Method void QTextEdit::selectAll() [event] void selectionChangedDescription: Signal declaration for QTextEdit::selectionChanged() You can bind a procedure to this signal. [const] QObject ptr senderDescription: Method QObject *QTextEdit::sender() This method is protected and can only be called from inside a derived class. void setAcceptRichText(bool accept)Description: Method void QTextEdit::setAcceptRichText(bool accept) Python specific notes:The object exposes a writable attribute 'acceptRichText'. This is the setter. void setAlignment(const Qt_QFlags_AlignmentFlag a)Description: Method void QTextEdit::setAlignment(QFlags<Qt::AlignmentFlag> a) Python specific notes:The object exposes a writable attribute 'alignment'. This is the setter. void setAutoFormatting(const QTextEdit_QFlags_AutoFormattingFlag features)Description: Method void QTextEdit::setAutoFormatting(QFlags<QTextEdit::AutoFormattingFlag> features) Python specific notes:The object exposes a writable attribute 'autoFormatting'. This is the setter. void setCurrentCharFormat(const QTextCharFormat format)Description: Method void QTextEdit::setCurrentCharFormat(const QTextCharFormat &format) Python specific notes:The object exposes a writable attribute 'currentCharFormat'. This is the setter. void setCurrentFont(const QFont f)Description: Method void QTextEdit::setCurrentFont(const QFont &f) Python specific notes:The object exposes a writable attribute 'currentFont'. This is the setter. void setCursorWidth(int width)Description: Method void QTextEdit::setCursorWidth(int width) Python specific notes:The object exposes a writable attribute 'cursorWidth'. This is the setter. void setDocument(QTextDocument ptr document)Description: Method void QTextEdit::setDocument(QTextDocument *document) Python specific notes:The object exposes a writable attribute 'document'. This is the setter. void setDocumentTitle(string title)Description: Method void QTextEdit::setDocumentTitle(const QString &title) Python specific notes:The object exposes a writable attribute 'documentTitle'. This is the setter. void setExtraSelections(QTextEdit_ExtraSelection[] selections)Description: Method void QTextEdit::setExtraSelections(const QList<QTextEdit::ExtraSelection> &selections) Python specific notes:The object exposes a writable attribute 'extraSelections'. This is the setter. void setFontFamily(string fontFamily)Description: Method void QTextEdit::setFontFamily(const QString &fontFamily) Python specific notes:The object exposes a writable attribute 'fontFamily'. This is the setter. void setFontItalic(bool b)Description: Method void QTextEdit::setFontItalic(bool b) Python specific notes:The object exposes a writable attribute 'fontItalic'. This is the setter. void setFontPointSize(double s)Description: Method void QTextEdit::setFontPointSize(double s) Python specific notes:The object exposes a writable attribute 'fontPointSize'. This is the setter. void setFontUnderline(bool b)Description: Method void QTextEdit::setFontUnderline(bool b) Python specific notes:The object exposes a writable attribute 'fontUnderline'. This is the setter. void setFontWeight(int w)Description: Method void QTextEdit::setFontWeight(int w) Python specific notes:The object exposes a writable attribute 'fontWeight'. This is the setter. void setHtml(string text)Description: Method void QTextEdit::setHtml(const QString &text) Python specific notes:The object exposes a writable attribute 'html'. This is the setter. void setLineWrapColumnOrWidth(int w)Description: Method void QTextEdit::setLineWrapColumnOrWidth(int w) Python specific notes:The object exposes a writable attribute 'lineWrapColumnOrWidth'. This is the setter. void setLineWrapMode(const QTextEdit_LineWrapMode mode)Description: Method void QTextEdit::setLineWrapMode(QTextEdit::LineWrapMode mode) Python specific notes:The object exposes a writable attribute 'lineWrapMode'. This is the setter. void setOverwriteMode(bool overwrite)Description: Method void QTextEdit::setOverwriteMode(bool overwrite) Python specific notes:The object exposes a writable attribute 'overwriteMode'. This is the setter. void setPlainText(string text)Description: Method void QTextEdit::setPlainText(const QString &text) Python specific notes:The object exposes a writable attribute 'plainText'. This is the setter. void setReadOnly(bool ro)Description: Method void QTextEdit::setReadOnly(bool ro) Python specific notes:The object exposes a writable attribute 'readOnly'. This is the setter. void setTabChangesFocus(bool b)Description: Method void QTextEdit::setTabChangesFocus(bool b) Python specific notes:The object exposes a writable attribute 'tabChangesFocus'. This is the setter. void setTabStopWidth(int width)Description: Method void QTextEdit::setTabStopWidth(int width) Python specific notes:The object exposes a writable attribute 'tabStopWidth'. This is the setter. void setText(string text)Description: Method void QTextEdit::setText(const QString &text) void setTextBackgroundColor(const QColor c)Description: Method void QTextEdit::setTextBackgroundColor(const QColor &c) Python specific notes:The object exposes a writable attribute 'textBackgroundColor'. This is the setter. void setTextColor(const QColor c)Description: Method void QTextEdit::setTextColor(const QColor &c) Python specific notes:The object exposes a writable attribute 'textColor'. This is the setter. void setTextCursor(const QTextCursor cursor)Description: Method void QTextEdit::setTextCursor(const QTextCursor &cursor) Python specific notes:The object exposes a writable attribute 'textCursor'. This is the setter. void setTextInteractionFlags(const Qt_QFlags_TextInteractionFlag flags)Description: Method void QTextEdit::setTextInteractionFlags(QFlags<Qt::TextInteractionFlag> flags) Python specific notes:The object exposes a writable attribute 'textInteractionFlags'. This is the setter. void setUndoRedoEnabled(bool enable)Description: Method void QTextEdit::setUndoRedoEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'undoRedoEnabled'. This is the setter. void setViewportMargins(int left,int top,int right,int bottom)Description: Method void QTextEdit::setViewportMargins(int left, int top, int right, int bottom) This method is protected and can only be called from inside a derived class. void setViewportMargins(const QMargins margins)Description: Method void QTextEdit::setViewportMargins(const QMargins &margins) This method is protected and can only be called from inside a derived class. [virtual] void setVisible(bool visible)Description: Virtual method void QTextEdit::setVisible(bool visible) This method can be reimplemented in a derived class. void setWordWrapMode(const QTextOption_WrapMode policy)Description: Method void QTextEdit::setWordWrapMode(QTextOption::WrapMode policy) Python specific notes:The object exposes a writable attribute 'wordWrapMode'. This is the setter. void setupViewport(QWidget ptr viewport)Description: Method void QTextEdit::setupViewport(QWidget *viewport) This method is protected and can only be called from inside a derived class. [virtual] void showEvent(QShowEvent ptr arg1)Description: Virtual method void QTextEdit::showEvent(QShowEvent *) This method can be reimplemented in a derived class. [virtual,const] QSize sizeHintDescription: Virtual method QSize QTextEdit::sizeHint() This method can be reimplemented in a derived class. [static] QMetaObject staticMetaObjectDescription: Obtains the static MetaObject for this class. [virtual] void styleChange(QStyle arg1)Description: Virtual method void QTextEdit::styleChange(QStyle &) This method can be reimplemented in a derived class. [const] bool tabChangesFocusDescription: Method bool QTextEdit::tabChangesFocus() Python specific notes:The object exposes a readable attribute 'tabChangesFocus'. This is the getter. void tabChangesFocus=(bool b)Description: Method void QTextEdit::setTabChangesFocus(bool b) Python specific notes:The object exposes a writable attribute 'tabChangesFocus'. This is the setter. [const] int tabStopWidthDescription: Method int QTextEdit::tabStopWidth() Python specific notes:The object exposes a readable attribute 'tabStopWidth'. This is the getter. void tabStopWidth=(int width)Description: Method void QTextEdit::setTabStopWidth(int width) Python specific notes:The object exposes a writable attribute 'tabStopWidth'. This is the setter. [virtual] void tabletEvent(QTabletEvent ptr arg1)Description: Virtual method void QTextEdit::tabletEvent(QTabletEvent *) This method can be reimplemented in a derived class. [const] QColor textBackgroundColorDescription: Method QColor QTextEdit::textBackgroundColor() Python specific notes:The object exposes a readable attribute 'textBackgroundColor'. This is the getter. void textBackgroundColor=(const QColor c)Description: Method void QTextEdit::setTextBackgroundColor(const QColor &c) Python specific notes:The object exposes a writable attribute 'textBackgroundColor'. This is the setter. [event] void textChangedDescription: Signal declaration for QTextEdit::textChanged() You can bind a procedure to this signal. [const] QColor textColorDescription: Method QColor QTextEdit::textColor() Python specific notes:The object exposes a readable attribute 'textColor'. This is the getter. void textColor=(const QColor c)Description: Method void QTextEdit::setTextColor(const QColor &c) Python specific notes:The object exposes a writable attribute 'textColor'. This is the setter. [const] QTextCursor textCursorDescription: Method QTextCursor QTextEdit::textCursor() Python specific notes:The object exposes a readable attribute 'textCursor'. This is the getter. void textCursor=(const QTextCursor cursor)Description: Method void QTextEdit::setTextCursor(const QTextCursor &cursor) Python specific notes:The object exposes a writable attribute 'textCursor'. This is the setter. [const] Qt_QFlags_TextInteractionFlag textInteractionFlagsDescription: Method QFlags<Qt::TextInteractionFlag> QTextEdit::textInteractionFlags() Python specific notes:The object exposes a readable attribute 'textInteractionFlags'. This is the getter. void textInteractionFlags=(const Qt_QFlags_TextInteractionFlag flags)Description: Method void QTextEdit::setTextInteractionFlags(QFlags<Qt::TextInteractionFlag> flags) Python specific notes:The object exposes a writable attribute 'textInteractionFlags'. This is the setter. [virtual] void timerEvent(QTimerEvent ptr e)Description: Virtual method void QTextEdit::timerEvent(QTimerEvent *e) This method can be reimplemented in a derived class. [const] string toHtmlDescription: Method QString QTextEdit::toHtml() [const] string toPlainTextDescription: Method QString QTextEdit::toPlainText() [static] string tr(string s,string c = 0)Description: Static method QString QTextEdit::tr(const char *s, const char *c) This method is static and can be called without an instance. [static] string tr(string s,string c,int n)Description: Static method QString QTextEdit::tr(const char *s, const char *c, int n) This method is static and can be called without an instance. [static] string trUtf8(string s,string c = 0)Description: Static method QString QTextEdit::trUtf8(const char *s, const char *c) This method is static and can be called without an instance. [static] string trUtf8(string s,string c,int n)Description: Static method QString QTextEdit::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. void undoDescription: Method void QTextEdit::undo() [event] void undoAvailable(bool b)Description: Signal declaration for QTextEdit::undoAvailable(bool b) You can bind a procedure to this signal. [const] bool undoRedoEnabledDescription: Method bool QTextEdit::isUndoRedoEnabled() Python specific notes:The object exposes a readable attribute 'undoRedoEnabled'. This is the getter. void undoRedoEnabled=(bool enable)Description: Method void QTextEdit::setUndoRedoEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'undoRedoEnabled'. This is the setter. void updateMicroFocusDescription: Method void QTextEdit::updateMicroFocus() This method is protected and can only be called from inside a derived class. [virtual] bool viewportEvent(QEvent ptr arg1)Description: Virtual method bool QTextEdit::viewportEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] void wheelEvent(QWheelEvent ptr e)Description: Virtual method void QTextEdit::wheelEvent(QWheelEvent *e) This method can be reimplemented in a derived class. [virtual] void windowActivationChange(bool arg1)Description: Virtual method void QTextEdit::windowActivationChange(bool) This method can be reimplemented in a derived class. [const] QTextOption_WrapMode wordWrapModeDescription: Method QTextOption::WrapMode QTextEdit::wordWrapMode() Python specific notes:The object exposes a readable attribute 'wordWrapMode'. This is the getter. void wordWrapMode=(const QTextOption_WrapMode policy)Description: Method void QTextEdit::setWordWrapMode(QTextOption::WrapMode policy) Python specific notes:The object exposes a writable attribute 'wordWrapMode'. This is the setter. void zoomIn(int range = 1)Description: Method void QTextEdit::zoomIn(int range) void zoomOut(int range = 1)Description: Method void QTextEdit::zoomOut(int range) |