aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicknativestyle/items/qquickstyleitemscrollviewcorner.h
blob: 84ab996741be8fde9ffc2c5f70b66bacff6df767 (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
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default

#ifndef QQUICKSTYLEITEMSCROLLVIEWCORNER_H
#define QQUICKSTYLEITEMSCROLLVIEWCORNER_H

#include "qquickstyleitem.h"
#include <QtQuickTemplates2/private/qquickscrollbar_p.h>

QT_BEGIN_NAMESPACE

class QPainter;
class QQuickStyleItemScrollViewCorner : public QQuickStyleItem
{
    Q_OBJECT
    QML_NAMED_ELEMENT(ScrollViewCorner)

protected:
    void paintEvent(QPainter *painter) const override;
    StyleItemGeometry calculateGeometry() override;

private:
    void initStyleOption(QStyleOptionSlider &styleOption) const;
};

QT_END_NAMESPACE

#endif // QQUICKSTYLEITEMSCROLLVIEWCORNER_H