aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRainer Hochecker <fernetmenta@online.de>2014-08-31 17:14:58 +0200
committerRainer Hochecker <fernetmenta@online.de>2014-08-31 17:14:58 +0200
commitd6c3ef36f58c5a2fd8c5b95aa9aca1a07a09fc79 (patch)
tree3aa0a379d71833b88fc419e9694c9ebeae56ccee
parentb07a63384b3de9dca3313268fc01efb2b4ef479f (diff)
parent4671c65852d0bd4ce348923c131256c8f982b7ed (diff)
Merge pull request #5277 from FernetMenta/X1114.0a3-Helix
X11: fix window placement on multi-monitor setups
-rw-r--r--xbmc/windowing/X11/WinSystemX11.cpp76
-rw-r--r--xbmc/windowing/X11/WinSystemX11.h1
-rw-r--r--xbmc/windowing/X11/XRandR.cpp2
3 files changed, 53 insertions, 26 deletions
diff --git a/xbmc/windowing/X11/WinSystemX11.cpp b/xbmc/windowing/X11/WinSystemX11.cpp
index 60761ec050..bb30b52be4 100644
--- a/xbmc/windowing/X11/WinSystemX11.cpp
+++ b/xbmc/windowing/X11/WinSystemX11.cpp
@@ -151,7 +151,6 @@ bool CWinSystemX11::DestroyWindow()
CWinEventsX11Imp::Quit();
XUnmapWindow(m_dpy, m_mainWindow);
- XSync(m_dpy,TRUE);
XDestroyWindow(m_dpy, m_glWindow);
XDestroyWindow(m_dpy, m_mainWindow);
m_glWindow = 0;
@@ -208,7 +207,6 @@ bool CWinSystemX11::ResizeWindow(int newWidth, int newHeight, int newLeft, int n
bool CWinSystemX11::SetFullScreen(bool fullScreen, RESOLUTION_INFO& res, bool blankOtherDisplays)
{
-
#if defined(HAS_XRANDR)
XOutput out;
XMode mode;
@@ -248,6 +246,28 @@ bool CWinSystemX11::SetFullScreen(bool fullScreen, RESOLUTION_INFO& res, bool bl
currmode.hz != mode.hz || currmode.id != mode.id)
{
CLog::Log(LOGNOTICE, "CWinSystemX11::SetFullScreen - calling xrandr");
+
+ // remember last position of mouse
+ Window root_return, child_return;
+ int root_x_return, root_y_return;
+ int win_x_return, win_y_return;
+ unsigned int mask_return;
+ bool isInWin = XQueryPointer(m_dpy, m_mainWindow, &root_return, &child_return,
+ &root_x_return, &root_y_return,
+ &win_x_return, &win_y_return,
+ &mask_return);
+
+ if (isInWin)
+ {
+ m_MouseX = win_x_return;
+ m_MouseY = win_y_return;
+ }
+ else
+ {
+ m_MouseX = -1;
+ m_MouseY = -1;
+ }
+
OnLostDevice();
m_bIsInternalXrr = true;
g_xrandr.SetMode(out, mode);
@@ -659,13 +679,13 @@ bool CWinSystemX11::Restore()
bool CWinSystemX11::Hide()
{
XUnmapWindow(m_dpy, m_mainWindow);
- XSync(m_dpy, False);
+ XFlush(m_dpy);
return true;
}
bool CWinSystemX11::Show(bool raise)
{
XMapWindow(m_dpy, m_mainWindow);
- XSync(m_dpy, False);
+ XFlush(m_dpy);
m_minimized = false;
return true;
}
@@ -688,7 +708,6 @@ void CWinSystemX11::NotifyXRREvent()
{
UpdateResolutions();
}
- m_bIsInternalXrr = false;
XOutput *out = g_xrandr.GetOutput(m_userOutput);
XMode mode = g_xrandr.GetCurrentMode(m_userOutput);
@@ -773,16 +792,24 @@ bool CWinSystemX11::SetWindow(int width, int height, bool fullscreen, const std:
{
bool changeWindow = false;
bool changeSize = false;
- bool mouseActive = false;
- float mouseX = 0;
- float mouseY = 0;
- int x0 = 0;
- int y0 = 0;
+ float mouseX = 0.5;
+ float mouseY = 0.5;
+
+ if (!m_mainWindow)
+ {
+ g_Mouse.SetActive(false);
+ }
if (m_mainWindow && ((m_bFullScreen != fullscreen) || m_currentOutput.compare(output) != 0 || m_windowDirty))
{
- mouseActive = g_Mouse.IsActive();
- if (mouseActive)
+ // set mouse to last known position
+ // we can't trust values after an xrr event
+ if (m_bIsInternalXrr && m_MouseX >= 0 && m_MouseY >= 0)
+ {
+ mouseX = (float)m_MouseX/m_nWidth;
+ mouseY = (float)m_MouseY/m_nHeight;
+ }
+ else if (!m_windowDirty)
{
Window root_return, child_return;
int root_x_return, root_y_return;
@@ -792,15 +819,15 @@ bool CWinSystemX11::SetWindow(int width, int height, bool fullscreen, const std:
&root_x_return, &root_y_return,
&win_x_return, &win_y_return,
&mask_return);
+
if (isInWin)
{
mouseX = (float)win_x_return/m_nWidth;
mouseY = (float)win_y_return/m_nHeight;
- g_Mouse.SetActive(false);
}
- else
- mouseActive = false;
}
+
+ g_Mouse.SetActive(false);
OnLostDevice();
DestroyWindow();
m_windowDirty = true;
@@ -825,6 +852,8 @@ bool CWinSystemX11::SetWindow(int width, int height, bool fullscreen, const std:
Colormap cmap;
XSetWindowAttributes swa;
XVisualInfo *vi;
+ int x0 = 0;
+ int y0 = 0;
XOutput *out = g_xrandr.GetOutput(output);
if (!out)
@@ -931,7 +960,6 @@ bool CWinSystemX11::SetWindow(int width, int height, bool fullscreen, const std:
class_hints->res_class = (char*)classString.c_str();
class_hints->res_name = (char*)classString.c_str();
- XSync(m_dpy,False);
XSetWMProperties(m_dpy, m_mainWindow, &windowName, &iconName,
NULL, 0, NULL, wm_hints,
class_hints);
@@ -942,18 +970,15 @@ bool CWinSystemX11::SetWindow(int width, int height, bool fullscreen, const std:
Atom wmDeleteMessage = XInternAtom(m_dpy, "WM_DELETE_WINDOW", False);
XSetWMProtocols(m_dpy, m_mainWindow, &wmDeleteMessage, 1);
}
- XMapRaised(m_dpy, m_glWindow);
- XMapRaised(m_dpy, m_mainWindow);
- if (fullscreen)
- XMoveWindow(m_dpy, m_mainWindow, x0, y0);
+ // placement of window may follow mouse
+ XWarpPointer(m_dpy, None, m_mainWindow, 0, 0, 0, 0, mouseX*width, mouseY*height);
- XSync(m_dpy,TRUE);
+ XMapRaised(m_dpy, m_glWindow);
+ XMapRaised(m_dpy, m_mainWindow);
- if (changeWindow && mouseActive)
- {
- XWarpPointer(m_dpy, None, m_mainWindow, 0, 0, 0, 0, mouseX*width, mouseY*height);
- }
+ // discard events generated by creating the window, i.e. xrr events
+ XSync(m_dpy, TRUE);
CDirtyRegionList dr;
RefreshGlxContext(m_currentOutput.compare(output) != 0);
@@ -962,6 +987,7 @@ bool CWinSystemX11::SetWindow(int width, int height, bool fullscreen, const std:
g_graphicsContext.Flip(dr);
g_Windowing.ResetVSync();
m_windowDirty = false;
+ m_bIsInternalXrr = false;
CSingleLock lock(m_resourceSection);
// tell any shared resources
diff --git a/xbmc/windowing/X11/WinSystemX11.h b/xbmc/windowing/X11/WinSystemX11.h
index 10144e6916..6d0a740b5b 100644
--- a/xbmc/windowing/X11/WinSystemX11.h
+++ b/xbmc/windowing/X11/WinSystemX11.h
@@ -94,6 +94,7 @@ protected:
bool m_windowDirty;
bool m_bIsInternalXrr;
bool m_newGlContext;
+ int m_MouseX, m_MouseY;
private:
bool IsSuitableVisual(XVisualInfo *vInfo);
diff --git a/xbmc/windowing/X11/XRandR.cpp b/xbmc/windowing/X11/XRandR.cpp
index c94f2e3801..4fdaeeba8c 100644
--- a/xbmc/windowing/X11/XRandR.cpp
+++ b/xbmc/windowing/X11/XRandR.cpp
@@ -74,7 +74,7 @@ bool CXRandR::Query(bool force, int screennum, bool ignoreoff)
CStdString cmd;
cmd = getenv("XBMC_BIN_HOME");
cmd += "/xbmc-xrandr";
- cmd = StringUtils::Format("%s -q --screen %d", cmd.c_str(), screennum);
+ cmd = StringUtils::Format("%s -q --screen %d --current", cmd.c_str(), screennum);
FILE* file = popen(cmd.c_str(),"r");
if (!file)