Notation used in Ruby API documentation
Module: QtGui
Description: Binding of QInputMethod
Class hierarchy: QInputMethod » QObject
Sub-classes: Action, QFlags_Action
[const] | QInputMethod ptr | _const_cast | Returns a non-const reference to self. | |
void | _create | Ensures the C++ object is created | ||
[const] | bool | _destroyed? | Returns a value indicating whether the object was already destroyed | |
[const] | bool | _is_const_object? | Returns a value indicating whether the reference is a const reference | |
void | _manage | Marks the object as managed by the script side. | ||
void | _unmanage | Marks the object as no longer owned by the script side. | ||
[const] | QRectF | anchorRectangle | Method QRectF QInputMethod::anchorRectangle() | |
[signal] | void | anchorRectangleChanged | Signal declaration for QInputMethod::anchorRectangleChanged() | |
[const] | bool | animating | Method bool QInputMethod::isAnimating() | |
[signal] | void | animatingChanged | Signal declaration for QInputMethod::animatingChanged() | |
void | commit | Method void QInputMethod::commit() | ||
[const] | QRectF | cursorRectangle | Method QRectF QInputMethod::cursorRectangle() | |
[signal] | void | cursorRectangleChanged | Signal declaration for QInputMethod::cursorRectangleChanged() | |
[signal] | void | destroyed | (QObject ptr arg1) | Signal declaration for QInputMethod::destroyed(QObject *) |
void | hide | Method void QInputMethod::hide() | ||
[const] | Qt_LayoutDirection | inputDirection | Method Qt::LayoutDirection QInputMethod::inputDirection() | |
[signal] | void | inputDirectionChanged | (const Qt_LayoutDirection newDirection) | Signal declaration for QInputMethod::inputDirectionChanged(Qt::LayoutDirection newDirection) |
[const] | QRectF | inputItemClipRectangle | Method QRectF QInputMethod::inputItemClipRectangle() | |
[signal] | void | inputItemClipRectangleChanged | Signal declaration for QInputMethod::inputItemClipRectangleChanged() | |
[const] | QRectF | inputItemRectangle | Method QRectF QInputMethod::inputItemRectangle() | |
void | inputItemRectangle= | (const QRectF rect) | Method void QInputMethod::setInputItemRectangle(const QRectF &rect) | |
[const] | QTransform | inputItemTransform | Method QTransform QInputMethod::inputItemTransform() | |
void | inputItemTransform= | (const QTransform transform) | Method void QInputMethod::setInputItemTransform(const QTransform &transform) | |
void | invokeAction | (const QInputMethod_Action a, int cursorPosition) | Method void QInputMethod::invokeAction(QInputMethod::Action a, int cursorPosition) | |
[const] | bool | isAnimating? | Method bool QInputMethod::isAnimating() | |
[const] | bool | isVisible? | Method bool QInputMethod::isVisible() | |
[const] | QRectF | keyboardRectangle | Method QRectF QInputMethod::keyboardRectangle() | |
[signal] | void | keyboardRectangleChanged | Signal declaration for QInputMethod::keyboardRectangleChanged() | |
[const] | QLocale | locale | Method QLocale QInputMethod::locale() | |
[signal] | void | localeChanged | Signal declaration for QInputMethod::localeChanged() | |
[signal] | void | objectNameChanged | (string objectName) | Signal declaration for QInputMethod::objectNameChanged(const QString &objectName) |
void | reset | Method void QInputMethod::reset() | ||
void | setInputItemRectangle | (const QRectF rect) | Method void QInputMethod::setInputItemRectangle(const QRectF &rect) | |
void | setInputItemTransform | (const QTransform transform) | Method void QInputMethod::setInputItemTransform(const QTransform &transform) | |
void | setVisible | (bool visible) | Method void QInputMethod::setVisible(bool visible) | |
void | show | Method void QInputMethod::show() | ||
void | update | (Qt_QFlags_InputMethodQuery queries) | Method void QInputMethod::update(QFlags<Qt::InputMethodQuery> queries) | |
[const] | bool | visible | Method bool QInputMethod::isVisible() | |
[signal] | void | visibleChanged | Signal declaration for QInputMethod::visibleChanged() |
[static,const] | QInputMethod_Action | Click | Enum constant QInputMethod::Click | |
[static,const] | QInputMethod_Action | ContextMenu | Enum constant QInputMethod::ContextMenu | |
variant | queryFocusObject | (const Qt_InputMethodQuery query, variant argument) | Static method QVariant QInputMethod::queryFocusObject(Qt::InputMethodQuery query, QVariant argument) | |
QMetaObject | staticMetaObject | Obtains the static MetaObject for this class. | ||
string | tr | (string s, string c = nullptr, int n = -1) | Static method QString QInputMethod::tr(const char *s, const char *c, int n) | |
string | trUtf8 | (string s, string c = nullptr, int n = -1) | Static method QString QInputMethod::trUtf8(const char *s, const char *c, int n) |
Click | Signature: [static,const] QInputMethod_Action Click Description: Enum constant QInputMethod::Click Python specific notes: |
ContextMenu | Signature: [static,const] QInputMethod_Action ContextMenu Description: Enum constant QInputMethod::ContextMenu Python specific notes: |
_const_cast | Signature: [const] QInputMethod ptr _const_cast Description: Returns a non-const reference to self. Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects. This method has been introduced in version 0.29.6. |
_create | Signature: void _create Description: 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. |
_destroyed? | Signature: [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. |
_is_const_object? | Signature: [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. |
_manage | Signature: void _manage Description: 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. |
_unmanage | Signature: void _unmanage Description: 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. |
anchorRectangle | Signature: [const] QRectF anchorRectangle Description: Method QRectF QInputMethod::anchorRectangle() Python specific notes: |
anchorRectangleChanged | Signature: [signal] void anchorRectangleChanged Description: Signal declaration for QInputMethod::anchorRectangleChanged() You can bind a procedure to this signal. Python specific notes: |
animating | Signature: [const] bool animating Description: Method bool QInputMethod::isAnimating() Python specific notes: |
animatingChanged | Signature: [signal] void animatingChanged Description: Signal declaration for QInputMethod::animatingChanged() You can bind a procedure to this signal. Python specific notes: |
commit | Signature: void commit Description: Method void QInputMethod::commit() |
cursorRectangle | Signature: [const] QRectF cursorRectangle Description: Method QRectF QInputMethod::cursorRectangle() Python specific notes: |
cursorRectangleChanged | Signature: [signal] void cursorRectangleChanged Description: Signal declaration for QInputMethod::cursorRectangleChanged() You can bind a procedure to this signal. Python specific notes: |
destroyed | Signature: [signal] void destroyed (QObject ptr arg1) Description: Signal declaration for QInputMethod::destroyed(QObject *) You can bind a procedure to this signal. Python specific notes: |
hide | Signature: void hide Description: Method void QInputMethod::hide() |
inputDirection | Signature: [const] Qt_LayoutDirection inputDirection Description: Method Qt::LayoutDirection QInputMethod::inputDirection() Python specific notes: |
inputDirectionChanged | Signature: [signal] void inputDirectionChanged (const Qt_LayoutDirection newDirection) Description: Signal declaration for QInputMethod::inputDirectionChanged(Qt::LayoutDirection newDirection) You can bind a procedure to this signal. Python specific notes: |
inputItemClipRectangle | Signature: [const] QRectF inputItemClipRectangle Description: Method QRectF QInputMethod::inputItemClipRectangle() Python specific notes: |
inputItemClipRectangleChanged | Signature: [signal] void inputItemClipRectangleChanged Description: Signal declaration for QInputMethod::inputItemClipRectangleChanged() You can bind a procedure to this signal. Python specific notes: |
inputItemRectangle | Signature: [const] QRectF inputItemRectangle Description: Method QRectF QInputMethod::inputItemRectangle() Python specific notes: |
inputItemRectangle= | Signature: void inputItemRectangle= (const QRectF rect) Description: Method void QInputMethod::setInputItemRectangle(const QRectF &rect) Python specific notes: |
inputItemTransform | Signature: [const] QTransform inputItemTransform Description: Method QTransform QInputMethod::inputItemTransform() Python specific notes: |
inputItemTransform= | Signature: void inputItemTransform= (const QTransform transform) Description: Method void QInputMethod::setInputItemTransform(const QTransform &transform) Python specific notes: |
invokeAction | Signature: void invokeAction (const QInputMethod_Action a, int cursorPosition) Description: Method void QInputMethod::invokeAction(QInputMethod::Action a, int cursorPosition) |
isAnimating? | Signature: [const] bool isAnimating? Description: Method bool QInputMethod::isAnimating() Python specific notes: |
isVisible? | Signature: [const] bool isVisible? Description: Method bool QInputMethod::isVisible() Python specific notes: |
keyboardRectangle | Signature: [const] QRectF keyboardRectangle Description: Method QRectF QInputMethod::keyboardRectangle() Python specific notes: |
keyboardRectangleChanged | Signature: [signal] void keyboardRectangleChanged Description: Signal declaration for QInputMethod::keyboardRectangleChanged() You can bind a procedure to this signal. Python specific notes: |
locale | Signature: [const] QLocale locale Description: Method QLocale QInputMethod::locale() Python specific notes: |
localeChanged | Signature: [signal] void localeChanged Description: Signal declaration for QInputMethod::localeChanged() You can bind a procedure to this signal. Python specific notes: |
objectNameChanged | Signature: [signal] void objectNameChanged (string objectName) Description: Signal declaration for QInputMethod::objectNameChanged(const QString &objectName) You can bind a procedure to this signal. Python specific notes: |
queryFocusObject | Signature: [static] variant queryFocusObject (const Qt_InputMethodQuery query, variant argument) Description: Static method QVariant QInputMethod::queryFocusObject(Qt::InputMethodQuery query, QVariant argument) This method is static and can be called without an instance. |
reset | Signature: void reset Description: Method void QInputMethod::reset() |
setInputItemRectangle | Signature: void setInputItemRectangle (const QRectF rect) Description: Method void QInputMethod::setInputItemRectangle(const QRectF &rect) Python specific notes: |
setInputItemTransform | Signature: void setInputItemTransform (const QTransform transform) Description: Method void QInputMethod::setInputItemTransform(const QTransform &transform) Python specific notes: |
setVisible | Signature: void setVisible (bool visible) Description: Method void QInputMethod::setVisible(bool visible) |
show | Signature: void show Description: Method void QInputMethod::show() |
staticMetaObject | Signature: [static] QMetaObject staticMetaObject Description: Obtains the static MetaObject for this class. |
tr | Signature: [static] string tr (string s, string c = nullptr, int n = -1) Description: Static method QString QInputMethod::tr(const char *s, const char *c, int n) This method is static and can be called without an instance. |
trUtf8 | Signature: [static] string trUtf8 (string s, string c = nullptr, int n = -1) Description: Static method QString QInputMethod::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. |
update | Signature: void update (Qt_QFlags_InputMethodQuery queries) Description: Method void QInputMethod::update(QFlags<Qt::InputMethodQuery> queries) |
visible | Signature: [const] bool visible Description: Method bool QInputMethod::isVisible() Python specific notes: |
visibleChanged | Signature: [signal] void visibleChanged Description: Signal declaration for QInputMethod::visibleChanged() You can bind a procedure to this signal. Python specific notes: |