OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / libs / utils / checkablemessagebox.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #ifndef CHECKABLEMESSAGEBOX_H
34 #define CHECKABLEMESSAGEBOX_H
35
36 #include "utils_global.h"
37
38 #include <QtGui/QDialogButtonBox>
39 #include <QtGui/QMessageBox>
40 #include <QtGui/QDialog>
41
42 namespace Utils {
43
44 struct CheckableMessageBoxPrivate;
45
46 class QTCREATOR_UTILS_EXPORT CheckableMessageBox : public QDialog
47 {
48     Q_OBJECT
49     Q_PROPERTY(QString text READ text WRITE setText)
50     Q_PROPERTY(QPixmap iconPixmap READ iconPixmap WRITE setIconPixmap)
51     Q_PROPERTY(bool isChecked READ isChecked WRITE setChecked)
52     Q_PROPERTY(QString checkBoxText READ checkBoxText WRITE setCheckBoxText)
53     Q_PROPERTY(QDialogButtonBox::StandardButtons buttons READ standardButtons WRITE setStandardButtons)
54     Q_PROPERTY(QDialogButtonBox::StandardButton defaultButton READ defaultButton WRITE setDefaultButton)
55 public:
56     explicit CheckableMessageBox(QWidget *parent);
57     virtual ~CheckableMessageBox();
58
59     static QDialogButtonBox::StandardButton
60         question(QWidget *parent,
61                  const QString &title,
62                  const QString &question,
63                  const QString &checkBoxText,
64                  bool *checkBoxSetting,
65                  QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Yes|QDialogButtonBox::No,
66                  QDialogButtonBox::StandardButton defaultButton = QDialogButtonBox::No);
67
68     QString text() const;
69     void setText(const QString &);
70
71     bool isChecked() const;
72     void setChecked(bool s);
73
74     QString checkBoxText() const;
75     void setCheckBoxText(const QString &);
76
77     bool isCheckBoxVisible() const;
78     void setCheckBoxVisible(bool);
79
80    QDialogButtonBox::StandardButtons standardButtons() const;
81    void setStandardButtons(QDialogButtonBox::StandardButtons s);
82    QPushButton *button(QDialogButtonBox::StandardButton b) const;
83    QPushButton *addButton(const QString &text, QDialogButtonBox::ButtonRole role);
84
85    QDialogButtonBox::StandardButton defaultButton() const;
86    void setDefaultButton(QDialogButtonBox::StandardButton s);
87
88     // see static QMessageBox::standardPixmap()
89     QPixmap iconPixmap() const;
90     void setIconPixmap (const QPixmap &p);
91
92    // Query the result
93    QAbstractButton *clickedButton() const;
94    QDialogButtonBox::StandardButton clickedStandardButton() const;
95
96    // Conversion convenience
97    static QMessageBox::StandardButton dialogButtonBoxToMessageBoxButton(QDialogButtonBox::StandardButton);
98
99 private slots:
100    void slotClicked(QAbstractButton *b);
101
102 private:
103    CheckableMessageBoxPrivate *m_d;
104 };
105
106 } // namespace Utils
107
108 #endif // CHECKABLEMESSAGEBOX_H