Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
f5ff9ebc
Commit
f5ff9ebc
authored
Jul 13, 2011
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: SeekSlider: fix chapters marks contrast
parent
d9477486
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
modules/gui/qt4/util/input_slider.cpp
modules/gui/qt4/util/input_slider.cpp
+6
-1
No files found.
modules/gui/qt4/util/input_slider.cpp
View file @
f5ff9ebc
...
@@ -397,13 +397,18 @@ void SeekSlider::paintEvent( QPaintEvent *event )
...
@@ -397,13 +397,18 @@ void SeekSlider::paintEvent( QPaintEvent *event )
/* draw chapters tickpoints */
/* draw chapters tickpoints */
if
(
chapters
&&
inputLength
&&
size
().
width
()
)
if
(
chapters
&&
inputLength
&&
size
().
width
()
)
{
{
QColor
background
=
palette
().
color
(
QPalette
::
Active
,
QPalette
::
Background
);
QColor
foreground
=
palette
().
color
(
QPalette
::
Active
,
QPalette
::
WindowText
);
foreground
.
setHsv
(
foreground
.
hue
(),
(
background
.
saturation
()
+
foreground
.
saturation
()
)
/
2
,
(
background
.
value
()
+
foreground
.
value
()
)
/
2
);
if
(
orientation
()
==
Qt
::
Horizontal
)
/* TODO: vertical */
if
(
orientation
()
==
Qt
::
Horizontal
)
/* TODO: vertical */
{
{
QList
<
SeekPoint
>
points
=
chapters
->
getPoints
();
QList
<
SeekPoint
>
points
=
chapters
->
getPoints
();
foreach
(
SeekPoint
point
,
points
)
foreach
(
SeekPoint
point
,
points
)
{
{
int
x
=
point
.
time
/
1000000.0
/
inputLength
*
size
().
width
();
int
x
=
point
.
time
/
1000000.0
/
inputLength
*
size
().
width
();
painter
.
setPen
(
QColor
(
80
,
80
,
80
)
);
painter
.
setPen
(
foreground
);
painter
.
setBrush
(
Qt
::
NoBrush
);
painter
.
setBrush
(
Qt
::
NoBrush
);
painter
.
drawLine
(
x
,
0
,
x
,
CHAPTERSSPOTSIZE
);
painter
.
drawLine
(
x
,
0
,
x
,
CHAPTERSSPOTSIZE
);
painter
.
drawLine
(
x
,
height
(),
x
,
height
()
-
CHAPTERSSPOTSIZE
);
painter
.
drawLine
(
x
,
height
(),
x
,
height
()
-
CHAPTERSSPOTSIZE
);
...
...
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