Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qsvgglobal.qdoc
Go to the documentation of this file.
1// Copyright (C) 2023 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
3
4/*!
5 \namespace QtSvg
6 \brief The QtSvg namespace contains types used by the svg classes.
7 \inmodule QtSvg
8*/
9
10/*!
11 \enum QtSvg::Option
12 \since 6.7
13
14 This enum holds flags that can be used to enable or disable
15 various features of the parsing and rendering of SVG
16 files. Multiple flags can be combined into the QFlags type
17 QtSvg::Options.
18
19 \value NoOption The null value. This is the default for QtSvg::Options.
20
21 \value Tiny12FeaturesOnly Strictly and exclusively parse only tags that are
22 part of the \l{http://www.w3.org/TR/SVGMobile12}
23 {SVG 1.2 Tiny} Static Feature set.
24
25 \value [since 6.8] AssumeTrustedSource
26 Disable certain checks and restrictions on resource
27 usage etc.
28 \value [since 6.9] DisableSMILAnimations
29 Disable SMIL animations. SMIL animations are animations
30 defined using elements like <animateColor>.
31 \value [since 6.9] DisableCSSAnimations
32 Disable CSS animations defined inside a <style> element.
33 \value [since 6.9] DisableAnimations
34 Disable all animations.
35*/