/* RetroArch - A frontend for libretro. * Copyright (C) 2010-2012 - Hans-Kristian Arntzen * Copyright (C) 2011-2012 - Daniel De Matteis * * RetroArch is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Found- * ation, either version 3 of the License, or (at your option) any later version. * * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with RetroArch. * If not, see . */ #include "x11_common.h" #include #include #include #include "../image.h" #include "../../general.h" void x11_hide_mouse(Display *dpy, Window win) { Cursor no_ptr; Pixmap bm_no; XColor black, dummy; Colormap colormap; static char bm_no_data[] = {0, 0, 0, 0, 0, 0, 0, 0}; colormap = DefaultColormap(dpy, DefaultScreen(dpy)); if (!XAllocNamedColor(dpy, colormap, "black", &black, &dummy)) return; bm_no = XCreateBitmapFromData(dpy, win, bm_no_data, 8, 8); no_ptr = XCreatePixmapCursor(dpy, bm_no, bm_no, &black, &black, 0, 0); XDefineCursor(dpy, win, no_ptr); XFreeCursor(dpy, no_ptr); if (bm_no != None) XFreePixmap(dpy, bm_no); XFreeColors(dpy, colormap, &black.pixel, 1, 0); } static Atom XA_NET_WM_STATE; static Atom XA_NET_WM_STATE_FULLSCREEN; static Atom XA_NET_MOVERESIZE_WINDOW; static Atom XA_NET_WM_ICON; #define XA_INIT(x) XA##x = XInternAtom(dpy, #x, False) #define _NET_WM_STATE_ADD 1 #define MOVERESIZE_GRAVITY_CENTER 5 #define MOVERESIZE_X_SHIFT 8 #define MOVERESIZE_Y_SHIFT 9 void x11_windowed_fullscreen(Display *dpy, Window win) { XA_INIT(_NET_WM_STATE); XA_INIT(_NET_WM_STATE_FULLSCREEN); XEvent xev = {0}; xev.xclient.type = ClientMessage; xev.xclient.send_event = True; xev.xclient.message_type = XA_NET_WM_STATE; xev.xclient.window = win; xev.xclient.format = 32; xev.xclient.data.l[0] = _NET_WM_STATE_ADD; xev.xclient.data.l[1] = XA_NET_WM_STATE_FULLSCREEN; XSendEvent(dpy, DefaultRootWindow(dpy), False, SubstructureRedirectMask | SubstructureNotifyMask, &xev); } // Try to be nice to tiling WMs if possible. void x11_move_window(Display *dpy, Window win, int x, int y, unsigned width, unsigned height) { XA_INIT(_NET_MOVERESIZE_WINDOW); XEvent xev = {0}; xev.xclient.type = ClientMessage; xev.xclient.send_event = True; xev.xclient.message_type = XA_NET_MOVERESIZE_WINDOW; xev.xclient.window = win; xev.xclient.format = 32; xev.xclient.data.l[0] = (1 << MOVERESIZE_X_SHIFT) | (1 << MOVERESIZE_Y_SHIFT); xev.xclient.data.l[1] = x; xev.xclient.data.l[2] = y; XSendEvent(dpy, DefaultRootWindow(dpy), False, SubstructureRedirectMask | SubstructureNotifyMask, &xev); } void x11_set_window_icon(Display *dpy, Window win) { XA_INIT(_NET_WM_ICON); const char *path = "/usr/share/icons/retroarch.png"; struct texture_image img; if (texture_image_load(path, &img)) { size_t propsize = img.width * img.height + 2; unsigned long *propdata = (unsigned long*)calloc(sizeof(unsigned long), propsize); // X11 wants a long array for '32-bit' :(. if (!propdata) { free(img.pixels); return; } propdata[0] = img.width; propdata[1] = img.height; unsigned img_size = img.width * img.height; for (unsigned i = 0; i < img_size; i++) propdata[i + 2] = img.pixels[i]; free(img.pixels); RARCH_LOG("[X11]: Setting window icon: %s\n", path); XChangeProperty(dpy, win, XA_NET_WM_ICON, XA_CARDINAL, 32, PropModeReplace, (unsigned char*)propdata, propsize); XFlush(dpy); free(propdata); } else RARCH_ERR("[X11]: Failed to load icon from: %s\n", path); } void x11_suspend_screensaver(Window wnd) { char cmd[64]; snprintf(cmd, sizeof(cmd), "xdg-screensaver suspend %d", (int)wnd); int ret = system(cmd); if (ret != 0) RARCH_WARN("Could not suspend screen saver.\n"); } static bool get_video_mode(Display *dpy, unsigned width, unsigned height, XF86VidModeModeInfo *mode, XF86VidModeModeInfo *desktop_mode) { XF86VidModeModeInfo **modes = NULL; int num_modes = 0; XF86VidModeGetAllModeLines(dpy, DefaultScreen(dpy), &num_modes, &modes); if (!num_modes) { XFree(modes); return false; } *desktop_mode = *modes[0]; bool ret = false; for (int i = 0; i < num_modes; i++) { if (modes[i]->hdisplay == width && modes[i]->vdisplay == height) { *mode = *modes[i]; ret = true; break; } } XFree(modes); return ret; } bool x11_enter_fullscreen(Display *dpy, unsigned width, unsigned height, XF86VidModeModeInfo *desktop_mode) { XF86VidModeModeInfo mode; if (get_video_mode(dpy, width, height, &mode, desktop_mode)) { if (XF86VidModeSwitchToMode(dpy, DefaultScreen(dpy), &mode)) { XF86VidModeSetViewPort(dpy, DefaultScreen(dpy), 0, 0); return true; } else return false; } else return false; } void x11_exit_fullscreen(Display *dpy, XF86VidModeModeInfo *desktop_mode) { XF86VidModeSwitchToMode(dpy, DefaultScreen(dpy), desktop_mode); XF86VidModeSetViewPort(dpy, DefaultScreen(dpy), 0, 0); } #ifdef HAVE_XINERAMA static XineramaScreenInfo *x11_query_screens(Display *dpy, int *num_screens) { int major, minor; if (!XineramaQueryExtension(dpy, &major, &minor)) return false; XineramaQueryVersion(dpy, &major, &minor); RARCH_LOG("[X11]: Xinerama version: %d.%d.\n", major, minor); if (!XineramaIsActive(dpy)) return false; return XineramaQueryScreens(dpy, num_screens); } bool x11_get_xinerama_coord(Display *dpy, int screen, int *x, int *y, unsigned *w, unsigned *h) { bool ret = false; int num_screens = 0; XineramaScreenInfo *info = x11_query_screens(dpy, &num_screens); RARCH_LOG("[X11]: Xinerama screens: %d.\n", num_screens); for (int i = 0; i < num_screens; i++) { if (info[i].screen_number == screen) { *x = info[i].x_org; *y = info[i].y_org; *w = info[i].width; *h = info[i].height; ret = true; break; } } XFree(info); return ret; } unsigned x11_get_xinerama_monitor(Display *dpy, int x, int y, int w, int h) { unsigned monitor = 0; int largest_area = 0; int num_screens = 0; XineramaScreenInfo *info = x11_query_screens(dpy, &num_screens); RARCH_LOG("[X11]: Xinerama screens: %d.\n", num_screens); for (int i = 0; i < num_screens; i++) { int max_lx = max(x, info[i].x_org); int min_rx = min(x + w, info[i].x_org + info[i].width); int max_ty = max(y, info[i].y_org); int min_by = min(y + h, info[i].y_org + info[i].height); int len_x = min_rx - max_lx; int len_y = min_by - max_ty; if (len_x < 0 || len_y < 0) // The whole window is outside the screen. continue; int area = len_x * len_y; if (area > largest_area) { monitor = i; largest_area = area; } } XFree(info); return monitor; } #endif