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
977910db
Commit
977910db
authored
Oct 15, 2008
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Calculate fullscreencotnrollers position only when screen has changed
parent
9a51f390
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
20 deletions
+28
-20
modules/gui/qt4/components/controller.cpp
modules/gui/qt4/components/controller.cpp
+27
-20
modules/gui/qt4/components/controller.hpp
modules/gui/qt4/components/controller.hpp
+1
-0
No files found.
modules/gui/qt4/components/controller.cpp
View file @
977910db
...
...
@@ -769,6 +769,7 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i )
b_fullscreen
=
false
;
i_hide_timeout
=
1
;
p_vout
=
NULL
;
i_screennumber
=
-
1
;
setWindowFlags
(
Qt
::
ToolTip
);
setMinimumWidth
(
600
);
...
...
@@ -845,28 +846,34 @@ void FullscreenControllerWidget::showFSC()
adjustSize
();
/* center down */
int
number
=
QApplication
::
desktop
()
->
screenNumber
(
p_intf
->
p_sys
->
p_mi
);
int
totalCount
=
QApplication
::
desktop
()
->
numScreens
();
QRect
screenRes
=
QApplication
::
desktop
()
->
screenGeometry
(
number
);
int
offset_x
=
0
;
int
offset_y
=
0
;
/* Loop all screens to get needed offset_x/y for
* physical screen center.
*/
for
(
int
i
=
0
;
i
<=
totalCount
;
i
++
)
if
(
number
!=
i_screennumber
)
{
QRect
displayRect
=
QApplication
::
desktop
()
->
screenGeometry
(
i
);
if
(
displayRect
.
width
()
+
offset_x
<=
screenRes
.
x
())
{
offset_x
+=
displayRect
.
width
();
}
if
(
displayRect
.
height
()
+
offset_y
<=
screenRes
.
y
())
{
offset_y
+=
displayRect
.
height
();
}
msg_Dbg
(
p_intf
,
"Calculation fullscreen controllers center"
);
/* screen has changed, calculate new position */
i_screennumber
=
number
;
int
totalCount
=
QApplication
::
desktop
()
->
numScreens
();
QRect
screenRes
=
QApplication
::
desktop
()
->
screenGeometry
(
number
);
int
offset_x
=
0
;
int
offset_y
=
0
;
/* Loop all screens to get needed offset_x/y for
* physical screen center.
*/
for
(
int
i
=
0
;
i
<=
totalCount
;
i
++
)
{
QRect
displayRect
=
QApplication
::
desktop
()
->
screenGeometry
(
i
);
if
(
displayRect
.
width
()
+
offset_x
<=
screenRes
.
x
())
{
offset_x
+=
displayRect
.
width
();
}
if
(
displayRect
.
height
()
+
offset_y
<=
screenRes
.
y
())
{
offset_y
+=
displayRect
.
height
();
}
}
QPoint
pos
=
QPoint
(
offset_x
+
(
screenRes
.
width
()
/
2
)
-
(
width
()
/
2
),
offset_y
+
screenRes
.
height
()
-
height
());
move
(
pos
);
}
QPoint
pos
=
QPoint
(
offset_x
+
(
screenRes
.
width
()
/
2
)
-
(
width
()
/
2
),
offset_y
+
screenRes
.
height
()
-
height
());
move
(
pos
);
#ifdef WIN32TRICK
// after quiting and going to fs, we need to call show()
if
(
isHidden
()
)
...
...
modules/gui/qt4/components/controller.hpp
View file @
977910db
...
...
@@ -286,6 +286,7 @@ private:
int
i_mouse_last_x
,
i_mouse_last_y
;
bool
b_mouse_over
;
int
i_screennumber
;
#ifdef WIN32TRICK
bool
b_fscHidden
;
...
...
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