Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
d9fed02a
Commit
d9fed02a
authored
Jan 29, 2010
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4: show more clearly current item in iconview
parent
9406b4cc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
modules/gui/qt4/components/playlist/icon_view.cpp
modules/gui/qt4/components/playlist/icon_view.cpp
+11
-1
No files found.
modules/gui/qt4/components/playlist/icon_view.cpp
View file @
d9fed02a
...
@@ -105,7 +105,17 @@ void PlListViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewIt
...
@@ -105,7 +105,17 @@ void PlListViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewIt
QPainter
*
pixpainter
=
new
QPainter
(
&
pix
);
QPainter
*
pixpainter
=
new
QPainter
(
&
pix
);
pixpainter
->
setRenderHints
(
pixpainter
->
setRenderHints
(
QPainter
::
Antialiasing
|
QPainter
::
SmoothPixmapTransform
);
QPainter
::
Antialiasing
|
QPainter
::
SmoothPixmapTransform
|
QPainter
::
TextAntialiasing
);
if
(
index
.
data
(
PLModel
::
IsCurrentRole
).
toInt
()
>
0
)
{
pixpainter
->
save
();
pixpainter
->
setOpacity
(
0.2
);
pixpainter
->
setBrush
(
QBrush
(
Qt
::
gray
)
);
pixpainter
->
drawRoundedRect
(
0
,
-
1
,
RECT_SIZE
,
RECT_SIZE
+
1
,
ART_RADIUS
,
ART_RADIUS
);
pixpainter
->
restore
();
}
// Draw the drop shadow
// Draw the drop shadow
pixpainter
->
save
();
pixpainter
->
save
();
...
...
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