/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQuick.Dialogs module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, 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.GPL 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. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QQUICKABSTRACTMESSAGEDIALOG_P_H #define QQUICKABSTRACTMESSAGEDIALOG_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include #include #include "qquickabstractdialog_p.h" QT_BEGIN_NAMESPACE class QQuickAbstractMessageDialog : public QQuickAbstractDialog { Q_OBJECT Q_ENUMS(Icon) Q_ENUMS(StandardButton) Q_FLAGS(StandardButtons) Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged) Q_PROPERTY(QString informativeText READ informativeText WRITE setInformativeText NOTIFY informativeTextChanged) Q_PROPERTY(QString detailedText READ detailedText WRITE setDetailedText NOTIFY detailedTextChanged) Q_PROPERTY(Icon icon READ icon WRITE setIcon NOTIFY iconChanged) Q_PROPERTY(QUrl standardIconSource READ standardIconSource NOTIFY iconChanged) Q_PROPERTY(StandardButtons standardButtons READ standardButtons WRITE setStandardButtons NOTIFY standardButtonsChanged) Q_PROPERTY(StandardButton clickedButton READ clickedButton NOTIFY buttonClicked) public: QQuickAbstractMessageDialog(QObject *parent = 0); virtual ~QQuickAbstractMessageDialog(); virtual QString title() const { return m_options->windowTitle(); } QString text() const { return m_options->text(); } QString informativeText() const { return m_options->informativeText(); } QString detailedText() const { return m_options->detailedText(); } enum Icon { NoIcon = QMessageDialogOptions::NoIcon, Information = QMessageDialogOptions::Information, Warning = QMessageDialogOptions::Warning, Critical = QMessageDialogOptions::Critical, Question = QMessageDialogOptions::Question }; Icon icon() const { return static_cast(m_options->icon()); } QUrl standardIconSource(); enum StandardButton { NoButton = QMessageDialogOptions::NoButton, Ok = QMessageDialogOptions::Ok, Save = QMessageDialogOptions::Save, SaveAll = QMessageDialogOptions::SaveAll, Open = QMessageDialogOptions::Open, Yes = QMessageDialogOptions::Yes, YesToAll = QMessageDialogOptions::YesToAll, No = QMessageDialogOptions::No, NoToAll = QMessageDialogOptions::NoToAll, Abort = QMessageDialogOptions::Abort, Retry = QMessageDialogOptions::Retry, Ignore = QMessageDialogOptions::Ignore, Close = QMessageDialogOptions::Close, Cancel = QMessageDialogOptions::Cancel, Discard = QMessageDialogOptions::Discard, Help = QMessageDialogOptions::Help, Apply = QMessageDialogOptions::Apply, Reset = QMessageDialogOptions::Reset, RestoreDefaults = QMessageDialogOptions::RestoreDefaults }; Q_DECLARE_FLAGS(StandardButtons, StandardButton) StandardButtons standardButtons() const { return static_cast(static_cast(m_options->standardButtons())); } StandardButton clickedButton() const { return m_clickedButton; } public Q_SLOTS: virtual void setVisible(bool v); virtual void setTitle(const QString &arg); void setText(const QString &arg); void setInformativeText(const QString &arg); void setDetailedText(const QString &arg); void setIcon(Icon icon); void setStandardButtons(StandardButtons buttons); void click(StandardButton button); Q_SIGNALS: void textChanged(); void informativeTextChanged(); void detailedTextChanged(); void iconChanged(); void standardButtonsChanged(); void buttonClicked(); void discard(); void help(); void yes(); void no(); void apply(); void reset(); protected: QPlatformMessageDialogHelper *m_dlgHelper; QSharedPointer m_options; StandardButton m_clickedButton; Q_DISABLE_COPY(QQuickAbstractMessageDialog) }; Q_DECLARE_OPERATORS_FOR_FLAGS(QQuickAbstractMessageDialog::StandardButtons) QT_END_NAMESPACE #endif // QQUICKABSTRACTMESSAGEDIALOG_P_H