Houdini 20.0 Python scripting hou hou.qt

hou.qt.InputField class

A vector of text fields (one to four) that store either integers, floats or strings.

On this page

The input field is designed to look like the Houdini input fields that appear in the Parameters pane. The field supports the MMB click value ladder.

This class inherits from Qt’s QtWidgets.QWidget class.

Enums

Type

This enumeration specifies an input field’s data type.

.IntegerType

Integer data type.

.FloatType

Float data type.

.StringType

String data type.

Signals

valueChanged()

This signal is emitted when the value stored in the input field has changed.

hotkeyInvoked(str)

This signal is emitted when a hotkey is invoked. The first parameter is the hotkey symbol that was invoked.

editingFinished(list)

This signal is emitted when editing of the input field is finished which occurs when the Return or Enter key is pressed or the input field loses focus. The first parameter is the new value added.

ladderChanged()

This signal is emitted when the value stored in the input field has been changed by the ladder.

Methods

hou.qt