| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- // qmessagebox.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 QMessageBox : public QDialog
- {
- %TypeHeaderCode
- #include <qmessagebox.h>
- %End
- public:
- enum ButtonRole
- {
- InvalidRole,
- AcceptRole,
- RejectRole,
- DestructiveRole,
- ActionRole,
- HelpRole,
- YesRole,
- NoRole,
- ResetRole,
- ApplyRole,
- };
- enum Icon
- {
- NoIcon,
- Information,
- Warning,
- Critical,
- Question,
- };
- enum StandardButton /BaseType=IntFlag/
- {
- NoButton,
- Ok,
- Save,
- SaveAll,
- Open,
- Yes,
- YesToAll,
- No,
- NoToAll,
- Abort,
- Retry,
- Ignore,
- Close,
- Cancel,
- Discard,
- Help,
- Apply,
- Reset,
- RestoreDefaults,
- FirstButton,
- LastButton,
- YesAll,
- NoAll,
- Default,
- Escape,
- FlagMask,
- ButtonMask,
- };
- typedef QFlags<QMessageBox::StandardButton> StandardButtons;
- typedef QMessageBox::StandardButton Button;
- explicit QMessageBox(QWidget *parent /TransferThis/ = 0);
- QMessageBox(QMessageBox::Icon icon, const QString &title, const QString &text, QMessageBox::StandardButtons buttons = QMessageBox::NoButton, QWidget *parent /TransferThis/ = 0, Qt::WindowFlags flags = Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint);
- virtual ~QMessageBox();
- QString text() const;
- void setText(const QString &);
- QMessageBox::Icon icon() const;
- void setIcon(QMessageBox::Icon);
- QPixmap iconPixmap() const;
- void setIconPixmap(const QPixmap &);
- Qt::TextFormat textFormat() const;
- void setTextFormat(Qt::TextFormat);
- static QMessageBox::StandardButton information(QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons = QMessageBox::Ok, QMessageBox::StandardButton defaultButton = QMessageBox::NoButton) /ReleaseGIL/;
- static QMessageBox::StandardButton question(QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons = QMessageBox::StandardButtons(QMessageBox::Yes | QMessageBox::No), QMessageBox::StandardButton defaultButton = QMessageBox::NoButton) /ReleaseGIL/;
- static QMessageBox::StandardButton warning(QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons = QMessageBox::Ok, QMessageBox::StandardButton defaultButton = QMessageBox::NoButton) /ReleaseGIL/;
- static QMessageBox::StandardButton critical(QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons = QMessageBox::Ok, QMessageBox::StandardButton defaultButton = QMessageBox::NoButton) /ReleaseGIL/;
- static void about(QWidget *parent, const QString &caption, const QString &text) /ReleaseGIL/;
- static void aboutQt(QWidget *parent, const QString &title = QString()) /ReleaseGIL/;
- static QPixmap standardIcon(QMessageBox::Icon icon);
- protected:
- virtual bool event(QEvent *e);
- virtual void resizeEvent(QResizeEvent *);
- virtual void showEvent(QShowEvent *);
- virtual void closeEvent(QCloseEvent *);
- virtual void keyPressEvent(QKeyEvent *);
- virtual void changeEvent(QEvent *);
- public:
- void addButton(QAbstractButton *button /Transfer/, QMessageBox::ButtonRole role);
- QPushButton *addButton(const QString &text, QMessageBox::ButtonRole role) /Transfer/;
- QPushButton *addButton(QMessageBox::StandardButton button) /Transfer/;
- void removeButton(QAbstractButton *button /TransferBack/);
- void setStandardButtons(QMessageBox::StandardButtons buttons);
- QMessageBox::StandardButtons standardButtons() const;
- QMessageBox::StandardButton standardButton(QAbstractButton *button) const;
- QAbstractButton *button(QMessageBox::StandardButton which) const;
- QPushButton *defaultButton() const;
- void setDefaultButton(QPushButton *button /KeepReference/);
- void setDefaultButton(QMessageBox::StandardButton button);
- QAbstractButton *escapeButton() const;
- void setEscapeButton(QAbstractButton *button /KeepReference/);
- void setEscapeButton(QMessageBox::StandardButton button);
- QAbstractButton *clickedButton() const;
- QString informativeText() const;
- void setInformativeText(const QString &text);
- QString detailedText() const;
- void setDetailedText(const QString &text);
- void setWindowTitle(const QString &title);
- void setWindowModality(Qt::WindowModality windowModality);
- 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
- QList<QAbstractButton *> buttons() const;
- QMessageBox::ButtonRole buttonRole(QAbstractButton *button) const;
- signals:
- void buttonClicked(QAbstractButton *button);
- public:
- void setTextInteractionFlags(Qt::TextInteractionFlags flags);
- Qt::TextInteractionFlags textInteractionFlags() const;
- void setCheckBox(QCheckBox *cb);
- QCheckBox *checkBox() const;
- %If (Qt_6_6_0 -)
- enum class Option
- {
- DontUseNativeDialog,
- };
- %End
- %If (Qt_6_6_0 -)
- typedef QFlags<QMessageBox::Option> Options;
- %End
- %If (Qt_6_6_0 -)
- void setOption(QMessageBox::Option option, bool on = true);
- %End
- %If (Qt_6_6_0 -)
- bool testOption(QMessageBox::Option option) const;
- %End
- %If (Qt_6_6_0 -)
- void setOptions(QMessageBox::Options options);
- %End
- %If (Qt_6_6_0 -)
- QMessageBox::Options options() const;
- %End
- };
|