API reference - Class QMessageBoxNotation used in Ruby API documentation Description: Binding of QMessageBox Class hierarchy: QMessageBox » QDialog » QWidget » QObject Sub-classes: ButtonRole, Icon, StandardButton
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 QMessageBox_StandardButton ptr AbortDescription: Enum constant QMessageBox::Abort [static,const] new QMessageBox_ButtonRole ptr AcceptRoleDescription: Enum constant QMessageBox::AcceptRole [static,const] new QMessageBox_ButtonRole ptr ActionRoleDescription: Enum constant QMessageBox::ActionRole [static,const] new QMessageBox_StandardButton ptr ApplyDescription: Enum constant QMessageBox::Apply [static,const] new QMessageBox_ButtonRole ptr ApplyRoleDescription: Enum constant QMessageBox::ApplyRole [static,const] new QMessageBox_StandardButton ptr ButtonMaskDescription: Enum constant QMessageBox::ButtonMask [static,const] new QMessageBox_StandardButton ptr CancelDescription: Enum constant QMessageBox::Cancel [static,const] new QMessageBox_StandardButton ptr CloseDescription: Enum constant QMessageBox::Close [static,const] new QMessageBox_Icon ptr CriticalDescription: Enum constant QMessageBox::Critical [static,const] new QMessageBox_StandardButton ptr DefaultDescription: Enum constant QMessageBox::Default [static,const] new QMessageBox_ButtonRole ptr DestructiveRoleDescription: Enum constant QMessageBox::DestructiveRole [static,const] new QMessageBox_StandardButton ptr DiscardDescription: Enum constant QMessageBox::Discard [static,const] new QMessageBox_StandardButton ptr EscapeDescription: Enum constant QMessageBox::Escape [static,const] new QMessageBox_StandardButton ptr FirstButtonDescription: Enum constant QMessageBox::FirstButton [static,const] new QMessageBox_StandardButton ptr FlagMaskDescription: Enum constant QMessageBox::FlagMask [static,const] new QMessageBox_StandardButton ptr HelpDescription: Enum constant QMessageBox::Help [static,const] new QMessageBox_ButtonRole ptr HelpRoleDescription: Enum constant QMessageBox::HelpRole [static,const] new QMessageBox_StandardButton ptr IgnoreDescription: Enum constant QMessageBox::Ignore [static,const] new QMessageBox_Icon ptr InformationDescription: Enum constant QMessageBox::Information [static,const] new QMessageBox_ButtonRole ptr InvalidRoleDescription: Enum constant QMessageBox::InvalidRole [static,const] new QMessageBox_StandardButton ptr LastButtonDescription: Enum constant QMessageBox::LastButton [static,const] new QMessageBox_ButtonRole ptr NRolesDescription: Enum constant QMessageBox::NRoles [static,const] new QMessageBox_StandardButton ptr NoDescription: Enum constant QMessageBox::No [static,const] new QMessageBox_StandardButton ptr NoAllDescription: Enum constant QMessageBox::NoAll [static,const] new QMessageBox_StandardButton ptr NoButtonDescription: Enum constant QMessageBox::NoButton [static,const] new QMessageBox_Icon ptr NoIconDescription: Enum constant QMessageBox::NoIcon [static,const] new QMessageBox_ButtonRole ptr NoRoleDescription: Enum constant QMessageBox::NoRole [static,const] new QMessageBox_StandardButton ptr NoToAllDescription: Enum constant QMessageBox::NoToAll [static,const] new QMessageBox_StandardButton ptr OkDescription: Enum constant QMessageBox::Ok [static,const] new QMessageBox_StandardButton ptr OpenDescription: Enum constant QMessageBox::Open [static,const] new QMessageBox_Icon ptr QuestionDescription: Enum constant QMessageBox::Question [static,const] new QMessageBox_ButtonRole ptr RejectRoleDescription: Enum constant QMessageBox::RejectRole [static,const] new QMessageBox_StandardButton ptr ResetDescription: Enum constant QMessageBox::Reset [static,const] new QMessageBox_ButtonRole ptr ResetRoleDescription: Enum constant QMessageBox::ResetRole [static,const] new QMessageBox_StandardButton ptr RestoreDefaultsDescription: Enum constant QMessageBox::RestoreDefaults [static,const] new QMessageBox_StandardButton ptr RetryDescription: Enum constant QMessageBox::Retry [static,const] new QMessageBox_StandardButton ptr SaveDescription: Enum constant QMessageBox::Save [static,const] new QMessageBox_StandardButton ptr SaveAllDescription: Enum constant QMessageBox::SaveAll [static,const] new QMessageBox_Icon ptr WarningDescription: Enum constant QMessageBox::Warning [static,const] new QMessageBox_StandardButton ptr YesDescription: Enum constant QMessageBox::Yes [static,const] new QMessageBox_StandardButton ptr YesAllDescription: Enum constant QMessageBox::YesAll [static,const] new QMessageBox_ButtonRole ptr YesRoleDescription: Enum constant QMessageBox::YesRole [static,const] new QMessageBox_StandardButton ptr YesToAllDescription: Enum constant QMessageBox::YesToAll 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. [static] void about(QWidget ptr parent,string title,string text)Description: Static method void QMessageBox::about(QWidget *parent, const QString &title, const QString &text) This method is static and can be called without an instance. [static] void aboutQt(QWidget ptr parent,string title = QString())Description: Static method void QMessageBox::aboutQt(QWidget *parent, const QString &title) This method is static and can be called without an instance. [virtual] void acceptDescription: Virtual method void QMessageBox::accept() This method can be reimplemented in a derived class. [event] void acceptedDescription: Signal declaration for QMessageBox::accepted() You can bind a procedure to this signal. [virtual] void actionEvent(QActionEvent ptr arg1)Description: Virtual method void QMessageBox::actionEvent(QActionEvent *) This method can be reimplemented in a derived class. void addButton(QAbstractButton ptr button,const QMessageBox_ButtonRole role)Description: Method void QMessageBox::addButton(QAbstractButton *button, QMessageBox::ButtonRole role) QPushButton ptr addButton(string text,const QMessageBox_ButtonRole role)Description: Method QPushButton *QMessageBox::addButton(const QString &text, QMessageBox::ButtonRole role) QPushButton ptr addButton(const QMessageBox_StandardButton button)Description: Method QPushButton *QMessageBox::addButton(QMessageBox::StandardButton button) void adjustPosition(QWidget ptr arg1)Description: Method void QMessageBox::adjustPosition(QWidget *) This method is protected and can only be called from inside a derived class. [const] QAbstractButton ptr button(const QMessageBox_StandardButton which)Description: Method QAbstractButton *QMessageBox::button(QMessageBox::StandardButton which) [event] void buttonClicked(QAbstractButton ptr button)Description: Signal declaration for QMessageBox::buttonClicked(QAbstractButton *button) You can bind a procedure to this signal. [const] QMessageBox_ButtonRole buttonRole(QAbstractButton ptr button)Description: Method QMessageBox::ButtonRole QMessageBox::buttonRole(QAbstractButton *button) [const] string buttonText(int button)Description: Method QString QMessageBox::buttonText(int button) [const] QAbstractButton ptr[] buttonsDescription: Method QList<QAbstractButton *> QMessageBox::buttons() [virtual] void changeEvent(QEvent ptr event)Description: Virtual method void QMessageBox::changeEvent(QEvent *event) This method can be reimplemented in a derived class. [virtual] void childEvent(QChildEvent ptr arg1)Description: Virtual method void QMessageBox::childEvent(QChildEvent *) This method can be reimplemented in a derived class. [const] QAbstractButton ptr clickedButtonDescription: Method QAbstractButton *QMessageBox::clickedButton() [virtual] void closeEvent(QCloseEvent ptr event)Description: Virtual method void QMessageBox::closeEvent(QCloseEvent *event) This method can be reimplemented in a derived class. [virtual] void contextMenuEvent(QContextMenuEvent ptr arg1)Description: Virtual method void QMessageBox::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 [static] QMessageBox_StandardButton critical(QWidget ptr parent,string title,string text,const QMessageBox_QFlags_StandardButton buttons = QMessageBox::Ok,const QMessageBox_StandardButton defaultButton = QMessageBox::NoButton)Description: Static method QMessageBox::StandardButton QMessageBox::critical(QWidget *parent, const QString &title, const QString &text, QFlags<QMessageBox::StandardButton> buttons, QMessageBox::StandardButton defaultButton) This method is static and can be called without an instance. [event] void customContextMenuRequested(const QPoint pos)Description: Signal declaration for QMessageBox::customContextMenuRequested(const QPoint &pos) You can bind a procedure to this signal. [virtual] void customEvent(QEvent ptr arg1)Description: Virtual method void QMessageBox::customEvent(QEvent *) This method can be reimplemented in a derived class. [const] QPushButton ptr defaultButtonDescription: Method QPushButton *QMessageBox::defaultButton() Python specific notes:The object exposes a readable attribute 'defaultButton'. This is the getter. void defaultButton=(QPushButton ptr button)Description: Method void QMessageBox::setDefaultButton(QPushButton *button) Python specific notes:The object exposes a writable attribute 'defaultButton'. This is the setter. void defaultButton=(const QMessageBox_StandardButton button)Description: Method void QMessageBox::setDefaultButton(QMessageBox::StandardButton button) Python specific notes:The object exposes a writable attribute 'defaultButton'. This is the setter. 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 QMessageBox::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 [const] string detailedTextDescription: Method QString QMessageBox::detailedText() Python specific notes:The object exposes a readable attribute 'detailedText'. This is the getter. void detailedText=(string text)Description: Method void QMessageBox::setDetailedText(const QString &text) Python specific notes:The object exposes a writable attribute 'detailedText'. This is the setter. [virtual] void disconnectNotify(string signal)Description: Virtual method void QMessageBox::disconnectNotify(const char *signal) This method can be reimplemented in a derived class. [virtual] void done(int arg1)Description: Virtual method void QMessageBox::done(int) This method can be reimplemented in a derived class. [virtual] void dragEnterEvent(QDragEnterEvent ptr arg1)Description: Virtual method void QMessageBox::dragEnterEvent(QDragEnterEvent *) This method can be reimplemented in a derived class. [virtual] void dragLeaveEvent(QDragLeaveEvent ptr arg1)Description: Virtual method void QMessageBox::dragLeaveEvent(QDragLeaveEvent *) This method can be reimplemented in a derived class. [virtual] void dragMoveEvent(QDragMoveEvent ptr arg1)Description: Virtual method void QMessageBox::dragMoveEvent(QDragMoveEvent *) This method can be reimplemented in a derived class. [virtual] void dropEvent(QDropEvent ptr arg1)Description: Virtual method void QMessageBox::dropEvent(QDropEvent *) This method can be reimplemented in a derived class. [virtual] void enabledChange(bool arg1)Description: Virtual method void QMessageBox::enabledChange(bool) This method can be reimplemented in a derived class. [virtual] void enterEvent(QEvent ptr arg1)Description: Virtual method void QMessageBox::enterEvent(QEvent *) This method can be reimplemented in a derived class. [const] QAbstractButton ptr escapeButtonDescription: Method QAbstractButton *QMessageBox::escapeButton() Python specific notes:The object exposes a readable attribute 'escapeButton'. This is the getter. void escapeButton=(QAbstractButton ptr button)Description: Method void QMessageBox::setEscapeButton(QAbstractButton *button) Python specific notes:The object exposes a writable attribute 'escapeButton'. This is the setter. void escapeButton=(const QMessageBox_StandardButton button)Description: Method void QMessageBox::setEscapeButton(QMessageBox::StandardButton button) Python specific notes:The object exposes a writable attribute 'escapeButton'. This is the setter. [virtual] bool event(QEvent ptr e)Description: Virtual method bool QMessageBox::event(QEvent *e) This method can be reimplemented in a derived class. [virtual] bool eventFilter(QObject ptr arg1,QEvent ptr arg2)Description: Virtual method bool QMessageBox::eventFilter(QObject *, QEvent *) This method can be reimplemented in a derived class. [event] void finished(int result)Description: Signal declaration for QMessageBox::finished(int result) You can bind a procedure to this signal. [virtual] void focusInEvent(QFocusEvent ptr arg1)Description: Virtual method void QMessageBox::focusInEvent(QFocusEvent *) This method can be reimplemented in a derived class. bool focusNextChildDescription: Method bool QMessageBox::focusNextChild() This method is protected and can only be called from inside a derived class. [virtual] bool focusNextPrevChild(bool next)Description: Virtual method bool QMessageBox::focusNextPrevChild(bool next) This method can be reimplemented in a derived class. [virtual] void focusOutEvent(QFocusEvent ptr arg1)Description: Virtual method void QMessageBox::focusOutEvent(QFocusEvent *) This method can be reimplemented in a derived class. bool focusPreviousChildDescription: Method bool QMessageBox::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 QMessageBox::fontChange(const QFont &) This method can be reimplemented in a derived class. [virtual,const] int heightForWidth(int arg1)Description: Virtual method int QMessageBox::heightForWidth(int) This method can be reimplemented in a derived class. [virtual] void hideEvent(QHideEvent ptr arg1)Description: Virtual method void QMessageBox::hideEvent(QHideEvent *) This method can be reimplemented in a derived class. [const] QMessageBox_Icon iconDescription: Method QMessageBox::Icon QMessageBox::icon() Python specific notes:The object exposes a readable attribute 'icon'. This is the getter. void icon=(const QMessageBox_Icon arg1)Description: Method void QMessageBox::setIcon(QMessageBox::Icon) Python specific notes:The object exposes a writable attribute 'icon'. This is the setter. [const] QPixmap iconPixmapDescription: Method QPixmap QMessageBox::iconPixmap() Python specific notes:The object exposes a readable attribute 'iconPixmap'. This is the getter. void iconPixmap=(const QPixmap pixmap)Description: Method void QMessageBox::setIconPixmap(const QPixmap &pixmap) Python specific notes:The object exposes a writable attribute 'iconPixmap'. This is the setter. [static] QMessageBox_StandardButton information(QWidget ptr parent,string title,string text,const QMessageBox_QFlags_StandardButton buttons = QMessageBox::Ok,const QMessageBox_StandardButton defaultButton = QMessageBox::NoButton)Description: Static method QMessageBox::StandardButton QMessageBox::information(QWidget *parent, const QString &title, const QString &text, QFlags<QMessageBox::StandardButton> buttons, QMessageBox::StandardButton defaultButton) This method is static and can be called without an instance. [const] string informativeTextDescription: Method QString QMessageBox::informativeText() Python specific notes:The object exposes a readable attribute 'informativeText'. This is the getter. void informativeText=(string text)Description: Method void QMessageBox::setInformativeText(const QString &text) Python specific notes:The object exposes a writable attribute 'informativeText'. This is the setter. [virtual] void inputMethodEvent(QInputMethodEvent ptr arg1)Description: Virtual method void QMessageBox::inputMethodEvent(QInputMethodEvent *) This method can be reimplemented in a derived class. [virtual,const] QVariant inputMethodQuery(const Qt_InputMethodQuery arg1)Description: Virtual method QVariant QMessageBox::inputMethodQuery(Qt::InputMethodQuery) This method can be reimplemented in a derived class. [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 event)Description: Virtual method void QMessageBox::keyPressEvent(QKeyEvent *event) This method can be reimplemented in a derived class. [virtual] void keyReleaseEvent(QKeyEvent ptr arg1)Description: Virtual method void QMessageBox::keyReleaseEvent(QKeyEvent *) This method can be reimplemented in a derived class. [virtual] void languageChangeDescription: Virtual method void QMessageBox::languageChange() This method can be reimplemented in a derived class. [virtual] void leaveEvent(QEvent ptr arg1)Description: Virtual method void QMessageBox::leaveEvent(QEvent *) This method can be reimplemented in a derived class. [virtual,const] int metric(const QPaintDevice_PaintDeviceMetric arg1)Description: Virtual method int QMessageBox::metric(QPaintDevice::PaintDeviceMetric) This method can be reimplemented in a derived class. [virtual,const] QSize minimumSizeHintDescription: Virtual method QSize QMessageBox::minimumSizeHint() This method can be reimplemented in a derived class. [virtual] void mouseDoubleClickEvent(QMouseEvent ptr arg1)Description: Virtual method void QMessageBox::mouseDoubleClickEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void mouseMoveEvent(QMouseEvent ptr arg1)Description: Virtual method void QMessageBox::mouseMoveEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void mousePressEvent(QMouseEvent ptr arg1)Description: Virtual method void QMessageBox::mousePressEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void mouseReleaseEvent(QMouseEvent ptr arg1)Description: Virtual method void QMessageBox::mouseReleaseEvent(QMouseEvent *) This method can be reimplemented in a derived class. [virtual] void moveEvent(QMoveEvent ptr arg1)Description: Virtual method void QMessageBox::moveEvent(QMoveEvent *) This method can be reimplemented in a derived class. [static] new QMessageBox new(QWidget ptr parent = 0)Description: Constructor QMessageBox::QMessageBox(QWidget *parent) This method creates an object of class QMessageBox. Python specific notes:This method is the default initializer of the object [static] new QMessageBox new(const QMessageBox_Icon icon,string title,string text,const QMessageBox_QFlags_StandardButton buttons = QMessageBox::NoButton,QWidget ptr parent = 0,const Qt_QFlags_WindowType flags = Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint)Description: Constructor QMessageBox::QMessageBox(QMessageBox::Icon icon, const QString &title, const QString &text, QFlags<QMessageBox::StandardButton> buttons, QWidget *parent, QFlags<Qt::WindowType> flags) This method creates an object of class QMessageBox. Python specific notes:This method is the default initializer of the object [static] new QMessageBox new(string title,string text,const QMessageBox_Icon icon,int button0,int button1,int button2,QWidget ptr parent = 0,const Qt_QFlags_WindowType f = Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint)Description: Constructor QMessageBox::QMessageBox(const QString &title, const QString &text, QMessageBox::Icon icon, int button0, int button1, int button2, QWidget *parent, QFlags<Qt::WindowType> f) This method creates an object of class QMessageBox. Python specific notes:This method is the default initializer of the object void openDescription: Method void QMessageBox::open() void open(QObject ptr receiver,string member)Description: Method void QMessageBox::open(QObject *receiver, const char *member) [virtual,const] QPaintEngine ptr paintEngineDescription: Virtual method QPaintEngine *QMessageBox::paintEngine() This method can be reimplemented in a derived class. [virtual] void paintEvent(QPaintEvent ptr arg1)Description: Virtual method void QMessageBox::paintEvent(QPaintEvent *) This method can be reimplemented in a derived class. [virtual] void paletteChange(const QPalette arg1)Description: Virtual method void QMessageBox::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 QMessageBox::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 QMessageBox::destroy(bool destroyWindow, bool destroySubWindows) This method is protected and can only be called from inside a derived class. [static] QMessageBox_StandardButton question(QWidget ptr parent,string title,string text,const QMessageBox_QFlags_StandardButton buttons = QMessageBox::Ok,const QMessageBox_StandardButton defaultButton = QMessageBox::NoButton)Description: Static method QMessageBox::StandardButton QMessageBox::question(QWidget *parent, const QString &title, const QString &text, QFlags<QMessageBox::StandardButton> buttons, QMessageBox::StandardButton defaultButton) This method is static and can be called without an instance. [const] int receivers(string signal)Description: Method int QMessageBox::receivers(const char *signal) This method is protected and can only be called from inside a derived class. [virtual] void rejectDescription: Virtual method void QMessageBox::reject() This method can be reimplemented in a derived class. [event] void rejectedDescription: Signal declaration for QMessageBox::rejected() You can bind a procedure to this signal. void removeButton(QAbstractButton ptr button)Description: Method void QMessageBox::removeButton(QAbstractButton *button) void resetInputContextDescription: Method void QMessageBox::resetInputContext() This method is protected and can only be called from inside a derived class. [virtual] void resizeEvent(QResizeEvent ptr event)Description: Virtual method void QMessageBox::resizeEvent(QResizeEvent *event) This method can be reimplemented in a derived class. [const] QObject ptr senderDescription: Method QObject *QMessageBox::sender() This method is protected and can only be called from inside a derived class. void setButtonText(int button,string text)Description: Method void QMessageBox::setButtonText(int button, const QString &text) void setDefaultButton(QPushButton ptr button)Description: Method void QMessageBox::setDefaultButton(QPushButton *button) Python specific notes:The object exposes a writable attribute 'defaultButton'. This is the setter. void setDefaultButton(const QMessageBox_StandardButton button)Description: Method void QMessageBox::setDefaultButton(QMessageBox::StandardButton button) Python specific notes:The object exposes a writable attribute 'defaultButton'. This is the setter. void setDetailedText(string text)Description: Method void QMessageBox::setDetailedText(const QString &text) Python specific notes:The object exposes a writable attribute 'detailedText'. This is the setter. void setEscapeButton(QAbstractButton ptr button)Description: Method void QMessageBox::setEscapeButton(QAbstractButton *button) Python specific notes:The object exposes a writable attribute 'escapeButton'. This is the setter. void setEscapeButton(const QMessageBox_StandardButton button)Description: Method void QMessageBox::setEscapeButton(QMessageBox::StandardButton button) Python specific notes:The object exposes a writable attribute 'escapeButton'. This is the setter. void setIcon(const QMessageBox_Icon arg1)Description: Method void QMessageBox::setIcon(QMessageBox::Icon) Python specific notes:The object exposes a writable attribute 'icon'. This is the setter. void setIconPixmap(const QPixmap pixmap)Description: Method void QMessageBox::setIconPixmap(const QPixmap &pixmap) Python specific notes:The object exposes a writable attribute 'iconPixmap'. This is the setter. void setInformativeText(string text)Description: Method void QMessageBox::setInformativeText(const QString &text) Python specific notes:The object exposes a writable attribute 'informativeText'. This is the setter. void setStandardButtons(const QMessageBox_QFlags_StandardButton buttons)Description: Method void QMessageBox::setStandardButtons(QFlags<QMessageBox::StandardButton> buttons) Python specific notes:The object exposes a writable attribute 'standardButtons'. This is the setter. void setText(string text)Description: Method void QMessageBox::setText(const QString &text) Python specific notes:The object exposes a writable attribute 'text'. This is the setter. void setTextFormat(const Qt_TextFormat format)Description: Method void QMessageBox::setTextFormat(Qt::TextFormat format) Python specific notes:The object exposes a writable attribute 'textFormat'. This is the setter. [virtual] void setVisible(bool visible)Description: Virtual method void QMessageBox::setVisible(bool visible) This method can be reimplemented in a derived class. void setWindowModality(const Qt_WindowModality windowModality)Description: Method void QMessageBox::setWindowModality(Qt::WindowModality windowModality) Python specific notes:The object exposes a writable attribute 'windowModality'. This is the setter. void setWindowTitle(string title)Description: Method void QMessageBox::setWindowTitle(const QString &title) Python specific notes:The object exposes a writable attribute 'windowTitle'. This is the setter. [virtual] void showEvent(QShowEvent ptr event)Description: Virtual method void QMessageBox::showEvent(QShowEvent *event) This method can be reimplemented in a derived class. [virtual,const] QSize sizeHintDescription: Virtual method QSize QMessageBox::sizeHint() This method can be reimplemented in a derived class. [const] QMessageBox_StandardButton standardButton(QAbstractButton ptr button)Description: Method QMessageBox::StandardButton QMessageBox::standardButton(QAbstractButton *button) [const] QMessageBox_QFlags_StandardButton standardButtonsDescription: Method QFlags<QMessageBox::StandardButton> QMessageBox::standardButtons() Python specific notes:The object exposes a readable attribute 'standardButtons'. This is the getter. void standardButtons=(const QMessageBox_QFlags_StandardButton buttons)Description: Method void QMessageBox::setStandardButtons(QFlags<QMessageBox::StandardButton> buttons) Python specific notes:The object exposes a writable attribute 'standardButtons'. This is the setter. [static] QMetaObject staticMetaObjectDescription: Obtains the static MetaObject for this class. [virtual] void styleChange(QStyle arg1)Description: Virtual method void QMessageBox::styleChange(QStyle &) This method can be reimplemented in a derived class. [virtual] void tabletEvent(QTabletEvent ptr arg1)Description: Virtual method void QMessageBox::tabletEvent(QTabletEvent *) This method can be reimplemented in a derived class. [const] string textDescription: Method QString QMessageBox::text() Python specific notes:The object exposes a readable attribute 'text'. This is the getter. void text=(string text)Description: Method void QMessageBox::setText(const QString &text) Python specific notes:The object exposes a writable attribute 'text'. This is the setter. [const] Qt_TextFormat textFormatDescription: Method Qt::TextFormat QMessageBox::textFormat() Python specific notes:The object exposes a readable attribute 'textFormat'. This is the getter. void textFormat=(const Qt_TextFormat format)Description: Method void QMessageBox::setTextFormat(Qt::TextFormat format) Python specific notes:The object exposes a writable attribute 'textFormat'. This is the setter. [virtual] void timerEvent(QTimerEvent ptr arg1)Description: Virtual method void QMessageBox::timerEvent(QTimerEvent *) This method can be reimplemented in a derived class. [static] string tr(string s,string c = 0)Description: Static method QString QMessageBox::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 QMessageBox::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 QMessageBox::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 QMessageBox::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. void updateMicroFocusDescription: Method void QMessageBox::updateMicroFocus() This method is protected and can only be called from inside a derived class. [static] QMessageBox_StandardButton warning(QWidget ptr parent,string title,string text,const QMessageBox_QFlags_StandardButton buttons = QMessageBox::Ok,const QMessageBox_StandardButton defaultButton = QMessageBox::NoButton)Description: Static method QMessageBox::StandardButton QMessageBox::warning(QWidget *parent, const QString &title, const QString &text, QFlags<QMessageBox::StandardButton> buttons, QMessageBox::StandardButton defaultButton) This method is static and can be called without an instance. [virtual] void wheelEvent(QWheelEvent ptr arg1)Description: Virtual method void QMessageBox::wheelEvent(QWheelEvent *) This method can be reimplemented in a derived class. [virtual] void windowActivationChange(bool arg1)Description: Virtual method void QMessageBox::windowActivationChange(bool) This method can be reimplemented in a derived class. void windowModality=(const Qt_WindowModality windowModality)Description: Method void QMessageBox::setWindowModality(Qt::WindowModality windowModality) Python specific notes:The object exposes a writable attribute 'windowModality'. This is the setter. void windowTitle=(string title)Description: Method void QMessageBox::setWindowTitle(const QString &title) Python specific notes:The object exposes a writable attribute 'windowTitle'. This is the setter. |