| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- // qinputdialog.sip generated by MetaSIP
- //
- // This file is part of the QtWidgets Python extension module.
- //
- // Copyright (c) 2026 Riverbank Computing Limited <info@riverbankcomputing.com>
- //
- // This file is part of PyQt6.
- //
- // This file may be used under the terms of the GNU General Public License
- // version 3.0 as published by the Free Software Foundation and appearing in
- // the file LICENSE included in the packaging of this file. Please review the
- // following information to ensure the GNU General Public License version 3.0
- // requirements will be met: http://www.gnu.org/copyleft/gpl.html.
- //
- // If you do not wish to use this file under the terms of the GPL version 3.0
- // then you may purchase a commercial license. For more information contact
- // info@riverbankcomputing.com.
- //
- // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- class QInputDialog : public QDialog
- {
- %TypeHeaderCode
- #include <qinputdialog.h>
- %End
- public:
- enum InputDialogOption /BaseType=Flag/
- {
- NoButtons,
- UseListViewForComboBoxItems,
- UsePlainTextEditForTextInput,
- };
- typedef QFlags<QInputDialog::InputDialogOption> InputDialogOptions;
- enum InputMode
- {
- TextInput,
- IntInput,
- DoubleInput,
- };
- static QString getText(QWidget *parent, const QString &title, const QString &label, QLineEdit::EchoMode echo = QLineEdit::Normal, const QString &text = QString(), bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags(), Qt::InputMethodHints inputMethodHints = Qt::ImhNone) /ReleaseGIL/;
- static int getInt(QWidget *parent, const QString &title, const QString &label, int value = 0, int min = -2147483647, int max = 2147483647, int step = 1, bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags()) /ReleaseGIL/;
- static double getDouble(QWidget *parent, const QString &title, const QString &label, double value = 0, double min = -2147483647, double max = 2147483647, int decimals = 1, bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags(), double step = 1);
- static QString getItem(QWidget *parent, const QString &title, const QString &label, const QStringList &items, int current = 0, bool editable = true, bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags(), Qt::InputMethodHints inputMethodHints = Qt::ImhNone) /ReleaseGIL/;
- static QString getMultiLineText(QWidget *parent, const QString &title, const QString &label, const QString &text = QString(), bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags(), Qt::InputMethodHints inputMethodHints = Qt::ImhNone) /ReleaseGIL/;
- QInputDialog(QWidget *parent /TransferThis/ = 0, Qt::WindowFlags flags = Qt::WindowFlags());
- virtual ~QInputDialog();
- void setInputMode(QInputDialog::InputMode mode);
- QInputDialog::InputMode inputMode() const;
- void setLabelText(const QString &text);
- QString labelText() const;
- void setOption(QInputDialog::InputDialogOption option, bool on = true);
- bool testOption(QInputDialog::InputDialogOption option) const;
- void setOptions(QInputDialog::InputDialogOptions options);
- QInputDialog::InputDialogOptions options() const;
- void setTextValue(const QString &text);
- QString textValue() const;
- void setTextEchoMode(QLineEdit::EchoMode mode);
- QLineEdit::EchoMode textEchoMode() const;
- void setComboBoxEditable(bool editable);
- bool isComboBoxEditable() const;
- void setComboBoxItems(const QStringList &items);
- QStringList comboBoxItems() const;
- void setIntValue(int value);
- int intValue() const;
- void setIntMinimum(int min);
- int intMinimum() const;
- void setIntMaximum(int max);
- int intMaximum() const;
- void setIntRange(int min, int max);
- void setIntStep(int step);
- int intStep() const;
- void setDoubleValue(double value);
- double doubleValue() const;
- void setDoubleMinimum(double min);
- double doubleMinimum() const;
- void setDoubleMaximum(double max);
- double doubleMaximum() const;
- void setDoubleRange(double min, double max);
- void setDoubleDecimals(int decimals);
- int doubleDecimals() const;
- void setOkButtonText(const QString &text);
- QString okButtonText() const;
- void setCancelButtonText(const QString &text);
- QString cancelButtonText() const;
- virtual void open();
- void open(SIP_PYOBJECT slot /TypeHint="PYQT_SLOT"/);
- %MethodCode
- QObject *receiver;
- QByteArray slot_signature;
-
- if ((sipError = pyqt6_qtwidgets_get_connection_parts(a0, sipCpp, "()", false, &receiver, slot_signature)) == sipErrorNone)
- {
- sipCpp->open(receiver, slot_signature.constData());
- }
- else if (sipError == sipErrorContinue)
- {
- sipError = sipBadCallableArg(0, a0);
- }
- %End
- virtual QSize minimumSizeHint() const;
- virtual QSize sizeHint() const;
- virtual void setVisible(bool visible);
- virtual void done(int result);
- signals:
- void textValueChanged(const QString &text);
- void textValueSelected(const QString &text);
- void intValueChanged(int value);
- void intValueSelected(int value);
- void doubleValueChanged(double value);
- void doubleValueSelected(double value);
- public:
- void setDoubleStep(double step);
- double doubleStep() const;
- };
|