Class: RubyQt6::QtWidgets::QTextEdit
- Inherits:
-
QAbstractScrollArea
- Object
- RubyQt6::QtCore::QObject
- QWidget
- QFrame
- QAbstractScrollArea
- RubyQt6::QtWidgets::QTextEdit
- Defined in:
- lib/qt6/qtwidgets/qtextedit.rb
Overview
Direct Known Subclasses
Defined Under Namespace
Classes: AutoFormatting, AutoFormattingFlag, LineWrapMode
Constant Summary collapse
- INITIALIZE_ARG_ERROR_MESSAGE =
"Could not resolve method call for #{name}#initialize\n" \ " 2 overload(s) were evaluated based on the types of Ruby parameters provided:\n" \ " initialize(QWidget)\n" \ " initialize(QString, QWidget)\n"
Instance Method Summary collapse
- #initialize(*args) ⇒ QTextEdit constructor
Constructor Details
#initialize(parent = nil) ⇒ QTextEdit #initialize(text, parent = nil) ⇒ QTextEdit
70 71 72 73 74 75 76 77 78 |
# File 'lib/qt6/qtwidgets/qtextedit.rb', line 70 def initialize(*args) parent = T.(args, -1) case args.size when 0 then _initialize(T.to_qstr(""), parent) when 1 then _initialize(T.to_qstr(args[-1]), parent) else raise ArgumentError, INITIALIZE_ARG_ERROR_MESSAGE end _take_ownership_from_ruby(self) end |