OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / libs / utils / faketooltip.cpp
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 #include "faketooltip.h"
34
35 #include <QtGui/QStyleOption>
36 #include <QtGui/QStylePainter>
37
38 /*!
39     \class Utils::FakeToolTip
40
41     \brief A widget that pretends to be a tooltip.
42
43     By default it has Qt::WA_DeleteOnClose set.
44 */
45
46 namespace Utils {
47
48 FakeToolTip::FakeToolTip(QWidget *parent) :
49     QWidget(parent, Qt::ToolTip | Qt::WindowStaysOnTopHint)
50 {
51     setFocusPolicy(Qt::NoFocus);
52     setAttribute(Qt::WA_DeleteOnClose);
53
54     // Set the window and button text to the tooltip text color, since this
55     // widget draws the background as a tooltip.
56     QPalette p = palette();
57     const QColor toolTipTextColor = p.color(QPalette::Inactive, QPalette::ToolTipText);
58     p.setColor(QPalette::Inactive, QPalette::WindowText, toolTipTextColor);
59     p.setColor(QPalette::Inactive, QPalette::ButtonText, toolTipTextColor);
60     setPalette(p);
61
62     const int margin = 1 + style()->pixelMetric(QStyle::PM_ToolTipLabelFrameWidth, 0, this);
63     setContentsMargins(margin + 1, margin, margin, margin);
64     setWindowOpacity(style()->styleHint(QStyle::SH_ToolTipLabel_Opacity, 0, this) / 255.0);
65 }
66
67 void FakeToolTip::paintEvent(QPaintEvent *)
68 {
69     QStylePainter p(this);
70     QStyleOptionFrame opt;
71     opt.init(this);
72     p.drawPrimitive(QStyle::PE_PanelTipLabel, opt);
73     p.end();
74 }
75
76 void FakeToolTip::resizeEvent(QResizeEvent *)
77 {
78     QStyleHintReturnMask frameMask;
79     QStyleOption option;
80     option.init(this);
81     if (style()->styleHint(QStyle::SH_ToolTip_Mask, &option, this, &frameMask))
82         setMask(frameMask.region);
83 }
84
85 } // namespace Utils