Obsolete Members for QInputDialog

The following members of class QInputDialog are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.

Properties

Public Functions

(obsolete) dumpObjectInfo()
(obsolete) dumpObjectTree()
(obsolete) QWidget *extension() const
(obsolete) bool isEnabledToTLW() const
(obsolete) bool isTopLevel() const
(obsolete) Qt::Orientation orientation() const
(obsolete) void setExtension(QWidget *extension)
(obsolete) void setOrientation(Qt::Orientation orientation)
(obsolete) QWidget *topLevelWidget() const

Public Slots

(obsolete) void showExtension(bool showIt)

Static Public Members

(obsolete) int getInteger(QWidget *parent, const QString &title, const QString &label, int value = 0, int min = -2147483647, int max = 2147483647, int step = 1, bool *ok = nullptr, Qt::WindowFlags flags = Qt::WindowFlags())

Member Function Documentation

[static] int QInputDialog::getInteger(QWidget *parent, const QString &title, const QString &label, int value = 0, int min = -2147483647, int max = 2147483647, int step = 1, bool *ok = nullptr, Qt::WindowFlags flags = Qt::WindowFlags())

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

Static convenience function to get an integer input from the user.

title is the text which is displayed in the title bar of the dialog. label is the text which is shown to the user (it should say what should be entered). value is the default integer which the spinbox will be set to. min and max are the minimum and maximum values the user may choose. step is the amount by which the values change as the user presses the arrow buttons to increment or decrement the value.

If ok is nonnull *ok will be set to true if the user pressed OK and to false if the user pressed Cancel. The dialog's parent is parent. The dialog will be modal and uses the widget flags.

On success, this function returns the integer which has been entered by the user; on failure, it returns the initial value.

Use this static function like this:

    bool ok;
    int i = QInputDialog::getInt(this, tr("QInputDialog::getInteger()"),
                                 tr("Percentage:"), 25, 0, 100, 1, &ok);
    if (ok)
        integerLabel->setText(tr("%1%").arg(i));

See also getText(), getDouble(), getItem(), and getMultiLineText().

© 2021 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.