API reference - Class QInputDialogNotation used in Ruby API documentation Description: Binding of QInputDialog Class hierarchy: QInputDialog » QDialog » QWidget » QObject Sub-classes: InputDialogOption, InputMode
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 QInputDialog_InputMode ptr DoubleInputDescription: Enum constant QInputDialog::DoubleInput [static,const] new QInputDialog_InputMode ptr IntInputDescription: Enum constant QInputDialog::IntInput [static,const] new QInputDialog_InputDialogOption ptr NoButtonsDescription: Enum constant QInputDialog::NoButtons [static,const] new QInputDialog_InputMode ptr TextInputDescription: Enum constant QInputDialog::TextInput [static,const] new QInputDialog_InputDialogOption ptr UseListViewForComboBoxItemsDescription: Enum constant QInputDialog::UseListViewForComboBoxItems 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. [virtual] void acceptDescription: Virtual method void QInputDialog::accept() This method can be reimplemented in a derived class. [event] void acceptedDescription: Signal declaration for QInputDialog::accepted() You can bind a procedure to this signal. [virtual] void actionEvent(QActionEvent ptr arg1)Description: Virtual method void QInputDialog::actionEvent(QActionEvent *) This method can be reimplemented in a derived class. void adjustPosition(QWidget ptr arg1)Description: Method void QInputDialog::adjustPosition(QWidget *) This method is protected and can only be called from inside a derived class. [const] string cancelButtonTextDescription: Method QString QInputDialog::cancelButtonText() Python specific notes:The object exposes a readable attribute 'cancelButtonText'. This is the getter. void cancelButtonText=(string text)Description: Method void QInputDialog::setCancelButtonText(const QString &text) Python specific notes:The object exposes a writable attribute 'cancelButtonText'. This is the setter. [virtual] void changeEvent(QEvent ptr arg1)Description: Virtual method void QInputDialog::changeEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] void childEvent(QChildEvent ptr arg1)Description: Virtual method void QInputDialog::childEvent(QChildEvent *) This method can be reimplemented in a derived class. [virtual] void closeEvent(QCloseEvent ptr arg1)Description: Virtual method void QInputDialog::closeEvent(QCloseEvent *) This method can be reimplemented in a derived class. [const] bool comboBoxEditableDescription: Method bool QInputDialog::isComboBoxEditable() Python specific notes:The object exposes a readable attribute 'comboBoxEditable'. This is the getter. void comboBoxEditable=(bool editable)Description: Method void QInputDialog::setComboBoxEditable(bool editable) Python specific notes:The object exposes a writable attribute 'comboBoxEditable'. This is the setter. [const] string[] comboBoxItemsDescription: Method QStringList QInputDialog::comboBoxItems() Python specific notes:The object exposes a readable attribute 'comboBoxItems'. This is the getter. void comboBoxItems=(string[] items)Description: Method void QInputDialog::setComboBoxItems(const QStringList &items) Python specific notes:The object exposes a writable attribute 'comboBoxItems'. This is the setter. [virtual] void contextMenuEvent(QContextMenuEvent ptr arg1)Description: Virtual method void QInputDialog::contextMenuEvent(QContextMenuEvent *) This method can be reimplemented in a derived class. void createDescription: Ensures the C++ object is created Use of this method is deprecated. Use _create instead [event] void customContextMenuRequested(const QPoint pos)Description: Signal declaration for QInputDialog::customContextMenuRequested(const QPoint &pos) You can bind a procedure to this signal. [virtual] void customEvent(QEvent ptr arg1)Description: Virtual method void QInputDialog::customEvent(QEvent *) This method can be reimplemented in a derived class. 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 QInputDialog::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 QInputDialog::disconnectNotify(const char *signal) This method can be reimplemented in a derived class. [virtual] void done(int result)Description: Virtual method void QInputDialog::done(int result) This method can be reimplemented in a derived class. [const] int doubleDecimalsDescription: Method int QInputDialog::doubleDecimals() Python specific notes:The object exposes a readable attribute 'doubleDecimals'. This is the getter. void doubleDecimals=(int decimals)Description: Method void QInputDialog::setDoubleDecimals(int decimals) Python specific notes:The object exposes a writable attribute 'doubleDecimals'. This is the setter. [const] double doubleMaximumDescription: Method double QInputDialog::doubleMaximum() Python specific notes:The object exposes a readable attribute 'doubleMaximum'. This is the getter. void doubleMaximum=(double max)Description: Method void QInputDialog::setDoubleMaximum(double max) Python specific notes:The object exposes a writable attribute 'doubleMaximum'. This is the setter. [const] double doubleMinimumDescription: Method double QInputDialog::doubleMinimum() Python specific notes:The object exposes a readable attribute 'doubleMinimum'. This is the getter. void doubleMinimum=(double min)Description: Method void QInputDialog::setDoubleMinimum(double min) Python specific notes:The object exposes a writable attribute 'doubleMinimum'. This is the setter. [const] double doubleValueDescription: Method double QInputDialog::doubleValue() Python specific notes:The object exposes a readable attribute 'doubleValue'. This is the getter. void doubleValue=(double value)Description: Method void QInputDialog::setDoubleValue(double value) Python specific notes:The object exposes a writable attribute 'doubleValue'. This is the setter. [event] void doubleValueChanged(double value)Description: Signal declaration for QInputDialog::doubleValueChanged(double value) You can bind a procedure to this signal. [event] void doubleValueSelected(double value)Description: Signal declaration for QInputDialog::doubleValueSelected(double value) You can bind a procedure to this signal. [virtual] void dragEnterEvent(QDragEnterEvent ptr arg1)Description: Virtual method void QInputDialog::dragEnterEvent(QDragEnterEvent *) This method can be reimplemented in a derived class. [virtual] void dragLeaveEvent(QDragLeaveEvent ptr arg1)Description: Virtual method void QInputDialog::dragLeaveEvent(QDragLeaveEvent *) This method can be reimplemented in a derived class. [virtual] void dragMoveEvent(QDragMoveEvent ptr arg1)Description: Virtual method void QInputDialog::dragMoveEvent(QDragMoveEvent *) This method can be reimplemented in a derived class. [virtual] void dropEvent(QDropEvent ptr arg1)Description: Virtual method void QInputDialog::dropEvent(QDropEvent *) This method can be reimplemented in a derived class. [virtual] void enabledChange(bool arg1)Description: Virtual method void QInputDialog::enabledChange(bool) This method can be reimplemented in a derived class. [virtual] void enterEvent(QEvent ptr arg1)Description: Virtual method void QInputDialog::enterEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] bool event(QEvent ptr arg1)Description: Virtual method bool QInputDialog::event(QEvent *) This method can be reimplemented in a derived class. [virtual] bool eventFilter(QObject ptr arg1,QEvent ptr arg2)Description: Virtual method bool QInputDialog::eventFilter(QObject *, QEvent *) This method can be reimplemented in a derived class. [event] void finished(int result)Description: Signal declaration for QInputDialog::finished(int result) You can bind a procedure to this signal. [virtual] void focusInEvent(QFocusEvent ptr arg1)Description: Virtual method void QInputDialog::focusInEvent(QFocusEvent *) This method can be reimplemented in a derived class. bool focusNextChildDescription: Method bool QInputDialog::focusNextChild() This method is protected and can only be called from inside a derived class. [virtual] bool focusNextPrevChild(bool next)Description: Virtual method bool QInputDialog::focusNextPrevChild(bool next) This method can be reimplemented in a derived class. [virtual] void focusOutEvent(QFocusEvent ptr arg1)Description: Virtual method void QInputDialog::focusOutEvent(QFocusEvent *) This method can be reimplemented in a derived class. bool focusPreviousChildDescription: Method bool QInputDialog::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 QInputDialog::fontChange(const QFont &) This method can be reimplemented in a derived class. [static] double getDouble(QWidget ptr parent,string title,string label,double value = 0,double minValue = -2147483647,double maxValue = 2147483647,int decimals = 1,bool ptr ok = 0,const Qt_QFlags_WindowType flags = 0)Description: Static method double QInputDialog::getDouble(QWidget *parent, const QString &title, const QString &label, double value, double minValue, double maxValue, int decimals, bool *ok, QFlags<Qt::WindowType> flags) This method is static and can be called without an instance. [static] int getInt(QWidget ptr parent,string title,string label,int value = 0,int minValue = -2147483647,int maxValue = 2147483647,int step = 1,bool ptr ok = 0,const Qt_QFlags_WindowType flags = 0)Description: Static method int QInputDialog::getInt(QWidget *parent, const QString &title, const QString &label, int value, int minValue, int maxValue, int step, bool *ok, QFlags<Qt::WindowType> flags) This method is static and can be called without an instance. [static] int getInteger(QWidget ptr parent,string title,string label,int value = 0,int minValue = -2147483647,int maxValue = 2147483647,int step = 1,bool ptr ok = 0,const Qt_QFlags_WindowType flags = 0)Description: Static method int QInputDialog::getInteger(QWidget *parent, const QString &title, const QString &label, int value, int minValue, int maxValue, int step, bool *ok, QFlags<Qt::WindowType> flags) This method is static and can be called without an instance. [static] string getItem(QWidget ptr parent,string title,string label,string[] items,int current = 0,bool editable = true,bool ptr ok = 0,const Qt_QFlags_WindowType flags = 0)Description: Static method QString QInputDialog::getItem(QWidget *parent, const QString &title, const QString &label, const QStringList &items, int current, bool editable, bool *ok, QFlags<Qt::WindowType> flags) This method is static and can be called without an instance. [static] string getText(QWidget ptr parent,string title,string label,const QLineEdit_EchoMode echo = QLineEdit::Normal,string text = QString(),bool ptr ok = 0,const Qt_QFlags_WindowType flags = 0)Description: Static method QString QInputDialog::getText(QWidget *parent, const QString &title, const QString &label, QLineEdit::EchoMode echo, const QString &text, bool *ok, QFlags<Qt::WindowType> flags) This method is static and can be called without an instance. [virtual,const] int heightForWidth(int arg1)Description: Virtual method int QInputDialog::heightForWidth(int) This method can be reimplemented in a derived class. [virtual] void hideEvent(QHideEvent ptr arg1)Description: Virtual method void QInputDialog::hideEvent(QHideEvent *) This method can be reimplemented in a derived class. [virtual] void inputMethodEvent(QInputMethodEvent ptr arg1)Description: Virtual method void QInputDialog::inputMethodEvent(QInputMethodEvent *) This method can be reimplemented in a derived class. [virtual,const] QVariant inputMethodQuery(const Qt_InputMethodQuery arg1)Description: Virtual method QVariant QInputDialog::inputMethodQuery(Qt::InputMethodQuery) This method can be reimplemented in a derived class. [const] QInputDialog_InputMode inputModeDescription: Method QInputDialog::InputMode QInputDialog::inputMode() Python specific notes:The object exposes a readable attribute 'inputMode'. This is the getter. void inputMode=(const QInputDialog_InputMode mode)Description: Method void QInputDialog::setInputMode(QInputDialog::InputMode mode) Python specific notes:The object exposes a writable attribute 'inputMode'. This is the setter. [const] int intMaximumDescription: Method int QInputDialog::intMaximum() Python specific notes:The object exposes a readable attribute 'intMaximum'. This is the getter. void intMaximum=(int max)Description: Method void QInputDialog::setIntMaximum(int max) Python specific notes:The object exposes a writable attribute 'intMaximum'. This is the setter. [const] int intMinimumDescription: Method int QInputDialog::intMinimum() Python specific notes:The object exposes a readable attribute 'intMinimum'. This is the getter. void intMinimum=(int min)Description: Method void QInputDialog::setIntMinimum(int min) Python specific notes:The object exposes a writable attribute 'intMinimum'. This is the setter. [const] int intStepDescription: Method int QInputDialog::intStep() Python specific notes:The object exposes a readable attribute 'intStep'. This is the getter. void intStep=(int step)Description: Method void QInputDialog::setIntStep(int step) Python specific notes:The object exposes a writable attribute 'intStep'. This is the setter. [const] int intValueDescription: Method int QInputDialog::intValue() Python specific notes:The object exposes a readable attribute 'intValue'. This is the getter. void intValue=(int value)Description: Method void QInputDialog::setIntValue(int value) Python specific notes:The object exposes a writable attribute 'intValue'. This is the setter. [event] void intValueChanged(int value)Description: Signal declaration for QInputDialog::intValueChanged(int value) You can bind a procedure to this signal. [event] void intValueSelected(int value)Description: Signal declaration for QInputDialog::intValueSelected(int value) You can bind a procedure to this signal. [const] bool isComboBoxEditable?Description: Method bool QInputDialog::isComboBoxEditable() Python specific notes:The object exposes a readable attribute 'comboBoxEditable'. 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 arg1)Description: Virtual method void QInputDialog::keyPressEvent(QKeyEvent *) This method can be reimplemented in a derived class. [virtual] void keyReleaseEvent(QKeyEvent ptr arg1)Description: Virtual method void QInputDialog::keyReleaseEvent(QKeyEvent *) This method can be reimplemented in a derived class. [const] string labelTextDescription: Method QString QInputDialog::labelText() Python specific notes:The object exposes a readable attribute 'labelText'. This is the getter. void labelText=(string text)Description: Method void QInputDialog::setLabelText(const QString &text) Python specific notes:The object exposes a writable attribute 'labelText'. This is the setter. [virtual] void languageChangeDescription: Virtual method void QInputDialog::languageChange() This method can be reimplemented in a derived class. [virtual] void leaveEvent(QEvent ptr arg1)Description: Virtual method void QInputDialog::leaveEvent(QEvent *) This method can be reimplemented in a derived class. [virtual,const] int metric(const QPaintDevice_PaintDeviceMetric arg1)Description: Virtual method int QInputDialog::metric(QPaintDevice::PaintDeviceMetric) This method can be reimplemented in a derived class. [virtual,const] QSize minimumSizeHintDescription: Virtual method QSize QInputDialog::minimumSizeHint() This method can be reimplemented in a derived class. [virtual] void mouseDoubleClickEvent(QMouseEvent ptr arg1)Description: Virtual method void QInputDialog::mouseDoubleClickEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void mouseMoveEvent(QMouseEvent ptr arg1)Description: Virtual method void QInputDialog::mouseMoveEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void mousePressEvent(QMouseEvent ptr arg1)Description: Virtual method void QInputDialog::mousePressEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void mouseReleaseEvent(QMouseEvent ptr arg1)Description: Virtual method void QInputDialog::mouseReleaseEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void moveEvent(QMoveEvent ptr arg1)Description: Virtual method void QInputDialog::moveEvent(QMoveEvent *) This method can be reimplemented in a derived class. [static] new QInputDialog new(QWidget ptr parent = 0,const Qt_QFlags_WindowType flags = 0)Description: Constructor QInputDialog::QInputDialog(QWidget *parent, QFlags<Qt::WindowType> flags) This method creates an object of class QInputDialog. Python specific notes:This method is the default initializer of the object [const] string okButtonTextDescription: Method QString QInputDialog::okButtonText() Python specific notes:The object exposes a readable attribute 'okButtonText'. This is the getter. void okButtonText=(string text)Description: Method void QInputDialog::setOkButtonText(const QString &text) Python specific notes:The object exposes a writable attribute 'okButtonText'. This is the setter. void openDescription: Method void QInputDialog::open() void open(QObject ptr receiver,string member)Description: Method void QInputDialog::open(QObject *receiver, const char *member) [const] QInputDialog_QFlags_InputDialogOption optionsDescription: Method QFlags<QInputDialog::InputDialogOption> QInputDialog::options() Python specific notes:The object exposes a readable attribute 'options'. This is the getter. void options=(const QInputDialog_QFlags_InputDialogOption options)Description: Method void QInputDialog::setOptions(QFlags<QInputDialog::InputDialogOption> options) Python specific notes:The object exposes a writable attribute 'options'. This is the setter. [virtual,const] QPaintEngine ptr paintEngineDescription: Virtual method QPaintEngine *QInputDialog::paintEngine() This method can be reimplemented in a derived class. [virtual] void paintEvent(QPaintEvent ptr arg1)Description: Virtual method void QInputDialog::paintEvent(QPaintEvent *) This method can be reimplemented in a derived class. [virtual] void paletteChange(const QPalette arg1)Description: Virtual method void QInputDialog::paletteChange(const QPalette &) This method can be reimplemented in a derived class. void qt_create(unsigned long arg1 = 0,bool initializeWindow = true,bool destroyOldWindow = true)Description: Method void QInputDialog::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 QInputDialog::destroy(bool destroyWindow, bool destroySubWindows) This method is protected and can only be called from inside a derived class. [const] int receivers(string signal)Description: Method int QInputDialog::receivers(const char *signal) This method is protected and can only be called from inside a derived class. [virtual] void rejectDescription: Virtual method void QInputDialog::reject() This method can be reimplemented in a derived class. [event] void rejectedDescription: Signal declaration for QInputDialog::rejected() You can bind a procedure to this signal. void resetInputContextDescription: Method void QInputDialog::resetInputContext() This method is protected and can only be called from inside a derived class. [virtual] void resizeEvent(QResizeEvent ptr arg1)Description: Virtual method void QInputDialog::resizeEvent(QResizeEvent *) This method can be reimplemented in a derived class. [const] QObject ptr senderDescription: Method QObject *QInputDialog::sender() This method is protected and can only be called from inside a derived class. void setCancelButtonText(string text)Description: Method void QInputDialog::setCancelButtonText(const QString &text) Python specific notes:The object exposes a writable attribute 'cancelButtonText'. This is the setter. void setComboBoxEditable(bool editable)Description: Method void QInputDialog::setComboBoxEditable(bool editable) Python specific notes:The object exposes a writable attribute 'comboBoxEditable'. This is the setter. void setComboBoxItems(string[] items)Description: Method void QInputDialog::setComboBoxItems(const QStringList &items) Python specific notes:The object exposes a writable attribute 'comboBoxItems'. This is the setter. void setDoubleDecimals(int decimals)Description: Method void QInputDialog::setDoubleDecimals(int decimals) Python specific notes:The object exposes a writable attribute 'doubleDecimals'. This is the setter. void setDoubleMaximum(double max)Description: Method void QInputDialog::setDoubleMaximum(double max) Python specific notes:The object exposes a writable attribute 'doubleMaximum'. This is the setter. void setDoubleMinimum(double min)Description: Method void QInputDialog::setDoubleMinimum(double min) Python specific notes:The object exposes a writable attribute 'doubleMinimum'. This is the setter. void setDoubleRange(double min,double max)Description: Method void QInputDialog::setDoubleRange(double min, double max) void setDoubleValue(double value)Description: Method void QInputDialog::setDoubleValue(double value) Python specific notes:The object exposes a writable attribute 'doubleValue'. This is the setter. void setInputMode(const QInputDialog_InputMode mode)Description: Method void QInputDialog::setInputMode(QInputDialog::InputMode mode) Python specific notes:The object exposes a writable attribute 'inputMode'. This is the setter. void setIntMaximum(int max)Description: Method void QInputDialog::setIntMaximum(int max) Python specific notes:The object exposes a writable attribute 'intMaximum'. This is the setter. void setIntMinimum(int min)Description: Method void QInputDialog::setIntMinimum(int min) Python specific notes:The object exposes a writable attribute 'intMinimum'. This is the setter. void setIntRange(int min,int max)Description: Method void QInputDialog::setIntRange(int min, int max) void setIntStep(int step)Description: Method void QInputDialog::setIntStep(int step) Python specific notes:The object exposes a writable attribute 'intStep'. This is the setter. void setIntValue(int value)Description: Method void QInputDialog::setIntValue(int value) Python specific notes:The object exposes a writable attribute 'intValue'. This is the setter. void setLabelText(string text)Description: Method void QInputDialog::setLabelText(const QString &text) Python specific notes:The object exposes a writable attribute 'labelText'. This is the setter. void setOkButtonText(string text)Description: Method void QInputDialog::setOkButtonText(const QString &text) Python specific notes:The object exposes a writable attribute 'okButtonText'. This is the setter. void setOption(const QInputDialog_InputDialogOption option,bool on = true)Description: Method void QInputDialog::setOption(QInputDialog::InputDialogOption option, bool on) void setOptions(const QInputDialog_QFlags_InputDialogOption options)Description: Method void QInputDialog::setOptions(QFlags<QInputDialog::InputDialogOption> options) Python specific notes:The object exposes a writable attribute 'options'. This is the setter. void setTextEchoMode(const QLineEdit_EchoMode mode)Description: Method void QInputDialog::setTextEchoMode(QLineEdit::EchoMode mode) Python specific notes:The object exposes a writable attribute 'textEchoMode'. This is the setter. void setTextValue(string text)Description: Method void QInputDialog::setTextValue(const QString &text) Python specific notes:The object exposes a writable attribute 'textValue'. This is the setter. [virtual] void setVisible(bool visible)Description: Virtual method void QInputDialog::setVisible(bool visible) This method can be reimplemented in a derived class. [virtual] void showEvent(QShowEvent ptr arg1)Description: Virtual method void QInputDialog::showEvent(QShowEvent *) This method can be reimplemented in a derived class. [virtual,const] QSize sizeHintDescription: Virtual method QSize QInputDialog::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 QInputDialog::styleChange(QStyle &) This method can be reimplemented in a derived class. [virtual] void tabletEvent(QTabletEvent ptr arg1)Description: Virtual method void QInputDialog::tabletEvent(QTabletEvent *) This method can be reimplemented in a derived class. [const] bool testOption(const QInputDialog_InputDialogOption option)Description: Method bool QInputDialog::testOption(QInputDialog::InputDialogOption option) [const] QLineEdit_EchoMode textEchoModeDescription: Method QLineEdit::EchoMode QInputDialog::textEchoMode() Python specific notes:The object exposes a readable attribute 'textEchoMode'. This is the getter. void textEchoMode=(const QLineEdit_EchoMode mode)Description: Method void QInputDialog::setTextEchoMode(QLineEdit::EchoMode mode) Python specific notes:The object exposes a writable attribute 'textEchoMode'. This is the setter. [const] string textValueDescription: Method QString QInputDialog::textValue() Python specific notes:The object exposes a readable attribute 'textValue'. This is the getter. void textValue=(string text)Description: Method void QInputDialog::setTextValue(const QString &text) Python specific notes:The object exposes a writable attribute 'textValue'. This is the setter. [event] void textValueChanged(string text)Description: Signal declaration for QInputDialog::textValueChanged(const QString &text) You can bind a procedure to this signal. [event] void textValueSelected(string text)Description: Signal declaration for QInputDialog::textValueSelected(const QString &text) You can bind a procedure to this signal. [virtual] void timerEvent(QTimerEvent ptr arg1)Description: Virtual method void QInputDialog::timerEvent(QTimerEvent *) This method can be reimplemented in a derived class. [static] string tr(string s,string c = 0)Description: Static method QString QInputDialog::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 QInputDialog::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 QInputDialog::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 QInputDialog::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. void updateMicroFocusDescription: Method void QInputDialog::updateMicroFocus() This method is protected and can only be called from inside a derived class. void visible=(bool visible)Description: Method void QInputDialog::setVisible(bool visible) This is a reimplementation of QDialog::setVisible Python specific notes:The object exposes a writable attribute 'visible'. This is the setter. [virtual] void wheelEvent(QWheelEvent ptr arg1)Description: Virtual method void QInputDialog::wheelEvent(QWheelEvent *) This method can be reimplemented in a derived class. [virtual] void windowActivationChange(bool arg1)Description: Virtual method void QInputDialog::windowActivationChange(bool) This method can be reimplemented in a derived class. |