OSDN Git Service

a34b82b88d0355af2fe07844862b2e71c9760355
[qt-creator-jp/qt-creator-jp.git] / src / libs / utils / detailswidget.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 (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef DETAILSWIDGET_H
35 #define DETAILSWIDGET_H
36
37 #include "utils_global.h"
38
39 #include <QtGui/QWidget>
40
41 QT_BEGIN_NAMESPACE
42 class QPixmap;
43 QT_END_NAMESPACE
44
45 namespace Utils {
46
47 struct DetailsWidgetPrivate;
48 class FadingPanel;
49
50 class QTCREATOR_UTILS_EXPORT DetailsWidget : public QWidget
51 {
52     Q_OBJECT
53     Q_PROPERTY(QString summaryText READ summaryText WRITE setSummaryText DESIGNABLE true)
54     Q_PROPERTY(QString additionalSummaryText READ additionalSummaryText WRITE setAdditionalSummaryText DESIGNABLE true)
55     Q_PROPERTY(bool useCheckBox READ useCheckBox WRITE setUseCheckBox DESIGNABLE true)
56     Q_PROPERTY(bool checked READ isChecked WRITE setChecked DESIGNABLE true)
57     Q_PROPERTY(State state READ state WRITE setState)
58     Q_ENUMS(State)
59
60 public:
61     enum State {
62         Expanded,
63         Collapsed,
64         NoSummary
65     };
66
67     explicit DetailsWidget(QWidget *parent = 0);
68     virtual ~DetailsWidget();
69
70     void setSummaryText(const QString &text);
71     QString summaryText() const;
72
73     void setAdditionalSummaryText(const QString &text);
74     QString additionalSummaryText() const;
75
76     void setState(State state);
77     State state() const;
78
79     void setWidget(QWidget *widget);
80     QWidget *widget() const;
81
82     void setToolWidget(Utils::FadingPanel *widget);
83     QWidget *toolWidget() const;
84
85     void setSummaryFontBold(bool b);
86
87     bool isChecked() const;
88     void setChecked(bool b);
89
90     bool useCheckBox();
91     void setUseCheckBox(bool b);
92     /// Sets an icon, only supported if useCheckBox is true
93     void setIcon(const QIcon &icon);
94
95 signals:
96     void checked(bool);
97 private slots:
98     void setExpanded(bool);
99
100 protected:
101     virtual void paintEvent(QPaintEvent *paintEvent);
102     virtual void enterEvent(QEvent *event);
103     virtual void leaveEvent(QEvent *event);
104
105 private:
106     void updateControls();
107     QPixmap cacheBackground(const QSize &size, bool expanded);
108     void changeHoverState(bool hovered);
109
110     DetailsWidgetPrivate *d;
111     QString m_additionalSummaryText;
112 };
113
114 } // namespace Utils
115
116 #endif // DETAILSWIDGET_H