Qt
6.x
The Qt SDK
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Symbols
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
Loading...
Searching...
No Matches
qpen_p.h
Go to the documentation of this file.
1
// Copyright (C) 2020 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4
#ifndef QPEN_P_H
5
#define QPEN_P_H
6
7
//
8
// W A R N I N G
9
// -------------
10
//
11
// This file is not part of the Qt API. It exists purely as an
12
// implementation detail. This header file may change from version to
13
// version without notice, or even be removed.
14
//
15
// We mean it.
16
//
17
18
#include <QtCore/private/qglobal_p.h>
19
20
QT_BEGIN_NAMESPACE
21
22
class
QPenPrivate
{
23
public
:
24
QPenPrivate
(
const
QBrush
&
brush
,
qreal
width
,
Qt::PenStyle
,
Qt::PenCapStyle
,
25
Qt::PenJoinStyle
_joinStyle);
26
QAtomicInt
ref
;
27
qreal
width
;
28
QBrush
brush
;
29
Qt::PenStyle
style
;
30
Qt::PenCapStyle
capStyle
;
31
Qt::PenJoinStyle
joinStyle
;
32
mutable
QList<qreal>
dashPattern
;
33
qreal
dashOffset
;
34
qreal
miterLimit
;
35
uint
cosmetic
: 1;
36
};
37
38
QT_END_NAMESPACE
39
40
#endif
// QPEN_P_H
QAtomicInt
\inmodule QtCore
Definition
qatomic.h:112
QBrush
\inmodule QtGui
Definition
qbrush.h:30
QList
Definition
qlist.h:74
QPenPrivate
Definition
qpen_p.h:22
QPenPrivate::dashOffset
qreal dashOffset
Definition
qpen_p.h:33
QPenPrivate::width
qreal width
Definition
qpen_p.h:27
QPenPrivate::style
Qt::PenStyle style
Definition
qpen_p.h:29
QPenPrivate::capStyle
Qt::PenCapStyle capStyle
Definition
qpen_p.h:30
QPenPrivate::brush
QBrush brush
Definition
qpen_p.h:28
QPenPrivate::dashPattern
QList< qreal > dashPattern
Definition
qpen_p.h:32
QPenPrivate::ref
QAtomicInt ref
Definition
qpen_p.h:26
QPenPrivate::joinStyle
Qt::PenJoinStyle joinStyle
Definition
qpen_p.h:31
QPenPrivate::cosmetic
uint cosmetic
Definition
qpen_p.h:35
QPenPrivate::miterLimit
qreal miterLimit
Definition
qpen_p.h:34
QT_BEGIN_NAMESPACE
Combined button and popup list for selecting options.
Definition
qstandardpaths_haiku.cpp:21
QT_END_NAMESPACE
Definition
qsharedpointer.cpp:1545
Qt::PenStyle
PenStyle
Definition
qnamespace.h:1085
Qt::PenJoinStyle
PenJoinStyle
Definition
qnamespace.h:1105
Qt::PenCapStyle
PenCapStyle
Definition
qnamespace.h:1098
brush
Definition
brush.cpp:5
width
GLint GLsizei width
Definition
qopengles2ext.h:206
uint
unsigned int uint
Definition
qtypes.h:29
qreal
double qreal
Definition
qtypes.h:92
qtbase
src
gui
painting
qpen_p.h
Generated by
1.9.7