diff --git a/hiro/qt/desktop.cpp b/hiro/qt/desktop.cpp index 33342748f..23ca2bf02 100755 --- a/hiro/qt/desktop.cpp +++ b/hiro/qt/desktop.cpp @@ -3,57 +3,19 @@ namespace hiro { auto pDesktop::size() -> Size { - #if defined(DISPLAY_WINDOWS) - return {GetSystemMetrics(SM_CXVIRTUALSCREEN), GetSystemMetrics(SM_CYVIRTUALSCREEN)}; - #elif defined(DISPLAY_XORG) - auto display = XOpenDisplay(nullptr); - int screen = DefaultScreen(display); - XWindowAttributes attributes; - XGetWindowAttributes(display, RootWindow(display, screen), &attributes); - XCloseDisplay(display); - return {attributes.width, attributes.height}; - #else - //this only returns the geometry of the primary monitor rather than the entire desktop - QRect rect = QApplication::desktop()->screenGeometry(); + QRect rect; + for(QScreen* screen : QApplication::screens()) { + rect = rect.united(screen->geometry()); + } return {rect.width(), rect.height()}; - #endif } auto pDesktop::workspace() -> Geometry { - #if defined(DISPLAY_WINDOWS) - RECT rc; - SystemParametersInfo(SPI_GETWORKAREA, 0, &rc, 0); - return {rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top}; - #elif defined(DISPLAY_XORG) - auto display = XOpenDisplay(nullptr); - int screen = DefaultScreen(display); - - int format; - unsigned char* data = nullptr; - unsigned long items, after; - XlibAtom returnAtom; - - XlibAtom netWorkarea = XInternAtom(display, "_NET_WORKAREA", XlibTrue); - int result = XGetWindowProperty( - display, RootWindow(display, screen), netWorkarea, 0, 4, XlibFalse, - XInternAtom(display, "CARDINAL", XlibTrue), &returnAtom, &format, &items, &after, &data - ); - - XlibAtom cardinal = XInternAtom(display, "CARDINAL", XlibTrue); - if(result == Success && returnAtom == cardinal && format == 32 && items == 4) { - unsigned long* workarea = (unsigned long*)data; - XCloseDisplay(display); - return {(int)workarea[0], (int)workarea[1], (int)workarea[2], (int)workarea[3]}; + QRect rect; + for(QScreen* screen : QApplication::screens()) { + rect = rect.united(screen->geometry()); } - - XCloseDisplay(display); - auto size = Desktop::size(); - return {0, 0, size.width(), size.height()}; - #else - //this only returns the workspace of the primary monitor rather than the entire desktop - QRect rect = QApplication::desktop()->availableGeometry(); return {rect.x(), rect.y(), rect.width(), rect.height()}; - #endif } }