qt5base-lts/tests/auto/gui/painting/qpathclipper/paths.h
Lucie Gérard 05fc3aef53 Use SPDX license identifiers
Replace the current license disclaimer in files by
a SPDX-License-Identifier.
Files that have to be modified by hand are modified.
License files are organized under LICENSES directory.

Task-number: QTBUG-67283
Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
2022-05-16 16:37:38 +02:00

58 lines
1.3 KiB
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#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