~ubuntu-branches/ubuntu/wily/qtbase-opensource-src/wily

« back to all changes in this revision

Viewing changes to src/widgets/styles/qmacstyle_mac_p.h

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 12:46:17 UTC
  • Revision ID: package-import@ubuntu.com-20130205124617-c8jouts182j002fx
Tags: upstream-5.0.1+dfsg
ImportĀ upstreamĀ versionĀ 5.0.1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the QtGui module of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:LGPL$
 
9
** Commercial License Usage
 
10
** Licensees holding valid commercial Qt licenses may use this file in
 
11
** accordance with the commercial license agreement provided with the
 
12
** Software or, alternatively, in accordance with the terms contained in
 
13
** a written agreement between you and Digia.  For licensing terms and
 
14
** conditions see http://qt.digia.com/licensing.  For further information
 
15
** use the contact form at http://qt.digia.com/contact-us.
 
16
**
 
17
** GNU Lesser General Public License Usage
 
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, Digia gives you certain additional
 
26
** rights.  These rights are described in the Digia Qt LGPL Exception
 
27
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
28
**
 
29
** GNU General Public License Usage
 
30
** Alternatively, this file may be used under the terms of the GNU
 
31
** General Public License version 3.0 as published by the Free Software
 
32
** Foundation and appearing in the file LICENSE.GPL included in the
 
33
** packaging of this file.  Please review the following information to
 
34
** ensure the GNU General Public License version 3.0 requirements will be
 
35
** met: http://www.gnu.org/copyleft/gpl.html.
 
36
**
 
37
**
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
#ifndef QMACSTYLE_MAC_P_H
 
43
#define QMACSTYLE_MAC_P_H
 
44
 
 
45
#include <QtWidgets/qcommonstyle.h>
 
46
 
 
47
QT_BEGIN_HEADER
 
48
 
 
49
QT_BEGIN_NAMESPACE
 
50
 
 
51
 
 
52
#if defined(Q_OS_MAC) && !defined(QT_NO_STYLE_MAC)
 
53
 
 
54
class QPalette;
 
55
 
 
56
class QPushButton;
 
57
class QStyleOptionButton;
 
58
class QMacStylePrivate;
 
59
class QMacStyle : public QCommonStyle
 
60
{
 
61
    Q_OBJECT
 
62
public:
 
63
    QMacStyle();
 
64
    virtual ~QMacStyle();
 
65
 
 
66
    void polish(QWidget *w);
 
67
    void unpolish(QWidget *w);
 
68
 
 
69
    void polish(QApplication*);
 
70
    void unpolish(QApplication*);
 
71
 
 
72
    void polish(QPalette &pal);
 
73
 
 
74
    void drawPrimitive(PrimitiveElement pe, const QStyleOption *opt, QPainter *p,
 
75
                       const QWidget *w = 0) const;
 
76
    void drawControl(ControlElement element, const QStyleOption *opt, QPainter *p,
 
77
                     const QWidget *w = 0) const;
 
78
    QRect subElementRect(SubElement r, const QStyleOption *opt, const QWidget *widget = 0) const;
 
79
    void drawComplexControl(ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p,
 
80
                            const QWidget *w = 0) const;
 
81
    SubControl hitTestComplexControl(ComplexControl cc, const QStyleOptionComplex *opt,
 
82
                               const QPoint &pt, const QWidget *w = 0) const;
 
83
    QRect subControlRect(ComplexControl cc, const QStyleOptionComplex *opt, SubControl sc,
 
84
                         const QWidget *w = 0) const;
 
85
    QSize sizeFromContents(ContentsType ct, const QStyleOption *opt,
 
86
                           const QSize &contentsSize, const QWidget *w = 0) const;
 
87
 
 
88
    int pixelMetric(PixelMetric pm, const QStyleOption *opt = 0, const QWidget *widget = 0) const;
 
89
 
 
90
    QPalette standardPalette() const;
 
91
 
 
92
    virtual int styleHint(StyleHint sh, const QStyleOption *opt = 0, const QWidget *w = 0,
 
93
                          QStyleHintReturn *shret = 0) const;
 
94
 
 
95
    enum FocusRectPolicy { FocusEnabled, FocusDisabled, FocusDefault };
 
96
    static void setFocusRectPolicy(QWidget *w, FocusRectPolicy policy);
 
97
    static FocusRectPolicy focusRectPolicy(const QWidget *w);
 
98
 
 
99
    enum WidgetSizePolicy { SizeSmall, SizeLarge, SizeMini, SizeDefault
 
100
    };
 
101
 
 
102
    static void setWidgetSizePolicy(const QWidget *w, WidgetSizePolicy policy);
 
103
    static WidgetSizePolicy widgetSizePolicy(const QWidget *w, const QStyleOption *opt = 0);
 
104
 
 
105
    QPixmap standardPixmap(StandardPixmap sp, const QStyleOption *opt,
 
106
                           const QWidget *widget = 0) const;
 
107
 
 
108
    QPixmap generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap,
 
109
                                const QStyleOption *opt) const;
 
110
 
 
111
    virtual void drawItemText(QPainter *p, const QRect &r, int flags, const QPalette &pal,
 
112
                              bool enabled, const QString &text, QPalette::ColorRole textRole  = QPalette::NoRole) const;
 
113
 
 
114
    bool event(QEvent *e);
 
115
 
 
116
    QIcon standardIcon(StandardPixmap standardIcon, const QStyleOption *opt = 0,
 
117
                       const QWidget *widget = 0) const;
 
118
    int layoutSpacing(QSizePolicy::ControlType control1, QSizePolicy::ControlType control2,
 
119
                      Qt::Orientation orientation, const QStyleOption *option = 0,
 
120
                      const QWidget *widget = 0) const;
 
121
 
 
122
private:
 
123
    Q_DISABLE_COPY(QMacStyle)
 
124
    Q_DECLARE_PRIVATE(QMacStyle)
 
125
 
 
126
    friend bool qt_mac_buttonIsRenderedFlat(const QPushButton *pushButton, const QStyleOptionButton *option);
 
127
};
 
128
 
 
129
#endif // Q_WS_MAC
 
130
 
 
131
QT_END_NAMESPACE
 
132
 
 
133
QT_END_HEADER
 
134
 
 
135
#endif // QMACSTYLE_MAC_P_H