Class: RubyQt6::QtWidgets::QLineEdit
- Defined in:
- lib/qt6/qtwidgets/qlineedit.rb
Overview
Direct Known Subclasses
Defined Under Namespace
Classes: ActionPosition, EchoMode
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) ⇒ QLineEdit constructor
Constructor Details
#initialize(parent = nil) ⇒ QLineEdit #initialize(text, parent = nil) ⇒ QLineEdit
48 49 50 51 52 53 54 55 56 |
# File 'lib/qt6/qtwidgets/qlineedit.rb', line 48 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 |