summaryrefslogtreecommitdiffstats
path: root/src/widgets/doc/snippets/code/doc_src_qt4-styles.cpp
blob: 3620c261a52e4fbe085c947eb49c6a5c45d9863c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
const QStyleOptionFocusRect *focusRectOption =
        qstyleoption_cast<const QStyleOptionFocusRect *>(option);
if (focusRectOption) {
    ...
}
//! [0]


//! [1]
void MyWidget::paintEvent(QPaintEvent *event)
{
    QPainter painter(this);
    ...

    QStyleOptionFocusRect option(1);
    option.init(this);
    option.backgroundColor = palette().color(QPalette::Window);

    style().drawPrimitive(QStyle::PE_FrameFocusRect, &option, &painter,
                          this);
}
//! [1]


//! [2]
void drawControl(ControlElement element,
                 QPainter *painter,
                 const QWidget *widget,
                 const QRect &rect,
                 const QColorGroup &colorGroup,
                 SFlags how = Style_Default,
                 const QStyleOption &option = QStyleOption::Default) const;
//! [2]


//! [3]
void drawControl(ControlElement element,
                 const QStyleOption *option,
                 QPainter *painter,
                 const QWidget *widget = nullptr) const;
//! [3]