Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Graphics
Okular
Commits
78d983ee
Commit
78d983ee
authored
Sep 24, 2020
by
Albert Astals Cid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drawRoundRect -> drawRoundedRect
parent
5eef3e50
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
generators/dvi/special.cpp
generators/dvi/special.cpp
+1
-1
ui/pageviewutils.cpp
ui/pageviewutils.cpp
+2
-2
ui/side_reviews.cpp
ui/side_reviews.cpp
+1
-1
No files found.
generators/dvi/special.cpp
View file @
78d983ee
...
...
@@ -410,7 +410,7 @@ void dviRenderer::epsf_special(const QString &cp)
else
foreGroundPainter
->
setBrush
(
Qt
::
red
);
foreGroundPainter
->
setPen
(
Qt
::
black
);
foreGroundPainter
->
drawRoundRect
(
bbox
,
2
,
2
);
foreGroundPainter
->
drawRound
ed
Rect
(
bbox
,
2
,
2
);
QFont
f
=
foreGroundPainter
->
font
();
f
.
setPointSize
(
8
);
foreGroundPainter
->
setFont
(
f
);
...
...
ui/pageviewutils.cpp
View file @
78d983ee
...
...
@@ -343,7 +343,7 @@ void PageViewMessage::paintEvent(QPaintEvent * /* e */)
}
int
textXOffset
=
0
,
// add 2 to account for the reduced drawRoundRect later
// add 2 to account for the reduced drawRound
ed
Rect later
textYOffset
=
(
geometry
().
height
()
-
textRect
.
height
()
-
detailsRect
.
height
()
-
m_lineSpacing
+
2
)
/
2
,
iconXOffset
=
0
,
iconYOffset
=
!
m_symbol
.
isNull
()
?
(
geometry
().
height
()
-
m_symbol
.
height
())
/
2
:
0
,
shadowOffset
=
1
;
if
(
layoutDirection
()
==
Qt
::
RightToLeft
)
...
...
@@ -357,7 +357,7 @@ void PageViewMessage::paintEvent(QPaintEvent * /* e */)
painter
.
setPen
(
Qt
::
black
);
painter
.
setBrush
(
palette
().
color
(
QPalette
::
Window
));
painter
.
translate
(
0.5
,
0.5
);
painter
.
drawRoundRect
(
1
,
1
,
width
()
-
2
,
height
()
-
2
,
1600
/
width
(),
1600
/
height
());
painter
.
drawRound
ed
Rect
(
1
,
1
,
width
()
-
2
,
height
()
-
2
,
1600
.0
/
width
(),
1600
.0
/
height
());
// draw icon if present
if
(
!
m_symbol
.
isNull
())
...
...
ui/side_reviews.cpp
View file @
78d983ee
...
...
@@ -75,7 +75,7 @@ protected:
p
.
setBrush
(
palette
().
window
());
p
.
translate
(
0.5
,
0.5
);
p
.
drawRoundRect
(
15
,
15
,
w
,
h
,
(
8
*
200
)
/
w
,
(
8
*
200
)
/
h
);
p
.
drawRound
ed
Rect
(
15
,
15
,
w
,
h
,
(
8
*
200
.0
)
/
w
,
(
8
*
200
.0
)
/
h
);
p
.
translate
(
20
,
20
);
document
.
drawContents
(
&
p
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment