Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
d3c77e33
Commit
d3c77e33
authored
Apr 26, 2011
by
Jean-Baptiste Kempf
Browse files
Qt, fsc: fix opacity when mouseover
And close #4542
parent
02f89b75
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/components/controller.cpp
View file @
d3c77e33
...
...
@@ -743,6 +743,7 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i, QWi
#if HAVE_TRANSPARENCY
p_slowHideTimer
=
new
QTimer
(
this
);
CONNECT
(
p_slowHideTimer
,
timeout
(),
this
,
slowHideFSC
()
);
f_opacity
=
var_InheritFloat
(
p_intf
,
"qt-fs-opacity"
)
#endif
vlc_mutex_init_recursive
(
&
lock
);
...
...
@@ -811,7 +812,7 @@ void FullscreenControllerWidget::showFSC()
}
#if HAVE_TRANSPARENCY
setWindowOpacity
(
var_InheritFloat
(
p_intf
,
"qt-fs-
opacity
"
)
);
setWindowOpacity
(
f_
opacity
);
#endif
#ifdef Q_WS_X11
...
...
@@ -972,7 +973,7 @@ void FullscreenControllerWidget::enterEvent( QEvent *event )
p_hideTimer
->
stop
();
#if HAVE_TRANSPARENCY
p_slowHideTimer
->
stop
();
setWindowOpacity
(
DEFAULT_OPACITY
);
setWindowOpacity
(
f_opacity
);
#endif
event
->
accept
();
}
...
...
modules/gui/qt4/components/controller.hpp
View file @
d3c77e33
...
...
@@ -278,6 +278,7 @@ private:
QTimer
*
p_slowHideTimer
;
bool
b_slow_hide_begin
;
int
i_slow_hide_timeout
;
float
f_opacity
;
#endif
int
i_mouse_last_x
,
i_mouse_last_y
;
...
...
Write
Preview
Supports
Markdown
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