summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui/painting/qpathclipper/paths.h
blob: 73b41d324a029166c8a880b5323806d75aca1043 (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
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef PATHS_H
#define PATHS_H

#include <QPainterPath>

namespace Paths
{
    QPainterPath rect();
    QPainterPath heart();
    QPainterPath body();
    QPainterPath mailbox();
    QPainterPath deer();
    QPainterPath fire();
    QPainterPath lips();

    QPainterPath bezier1();
    QPainterPath bezier2();
    QPainterPath bezier3();
    QPainterPath bezier4();

    QPainterPath random1();
    QPainterPath random2();

    QPainterPath heart2();
    QPainterPath rect2();
    QPainterPath rect3();
    QPainterPath rect4();
    QPainterPath rect5();
    QPainterPath rect6();

    QPainterPath simpleCurve();
    QPainterPath simpleCurve2();
    QPainterPath simpleCurve3();

    QPainterPath frame1();
    QPainterPath frame2();
    QPainterPath frame3();
    QPainterPath frame4();

    QPainterPath triangle1();
    QPainterPath triangle2();

    QPainterPath node();
    QPainterPath interRect();

    QPainterPath bezierFlower();
    QPainterPath clover();
    QPainterPath ellipses();
    QPainterPath windingFill();
    QPainterPath oddEvenFill();
    QPainterPath squareWithHole();
    QPainterPath circleWithHole();
    QPainterPath bezierQuadrant();
}
#endif