/* Copyright 2012-2014 David Robillard Copyright 2013 Robin Gareus Copyright 2011-2012 Ben Loftis, Harrison Consoles Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /** @file pugl_x11.c X11 Pugl Implementation. */ #include #include #include #include #include #include #include #ifdef PUGL_HAVE_GL #include #include #endif #ifdef PUGL_HAVE_CAIRO #include #include #endif #include "pugl/pugl_internal.h" #ifndef DGL_FILE_BROWSER_DISABLED #define SOFD_HAVE_X11 #include "../sofd/libsofd.h" #include "../sofd/libsofd.c" #endif struct PuglInternalsImpl { Display* display; int screen; Window win; XIM xim; XIC xic; #ifdef PUGL_HAVE_CAIRO cairo_t* cr; cairo_surface_t* surface; #endif #ifdef PUGL_HAVE_GL GLXContext ctx; Bool doubleBuffered; #endif }; PuglInternals* puglInitInternals(void) { return (PuglInternals*)calloc(1, sizeof(PuglInternals)); } static XVisualInfo* getVisual(PuglView* view) { PuglInternals* const impl = view->impl; XVisualInfo* vi = NULL; #ifdef PUGL_HAVE_GL if (view->ctx_type == PUGL_GL) { /** Attributes for single-buffered RGBA with at least 4 bits per color and a 16 bit depth buffer. */ int attrListSgl[] = { GLX_RGBA, GLX_RED_SIZE, 4, GLX_GREEN_SIZE, 4, GLX_BLUE_SIZE, 4, GLX_DEPTH_SIZE, 16, GLX_ARB_multisample, 1, None }; /** Attributes for double-buffered RGBA with at least 4 bits per color and a 16 bit depth buffer. */ int attrListDbl[] = { GLX_RGBA, GLX_DOUBLEBUFFER, GLX_RED_SIZE, 4, GLX_GREEN_SIZE, 4, GLX_BLUE_SIZE, 4, GLX_DEPTH_SIZE, 16, GLX_ARB_multisample, 1, None }; /** Attributes for double-buffered RGBA with multi-sampling (antialiasing) */ int attrListDblMS[] = { GLX_RGBA, GLX_DOUBLEBUFFER, GLX_RED_SIZE, 4, GLX_GREEN_SIZE, 4, GLX_BLUE_SIZE, 4, GLX_ALPHA_SIZE, 4, GLX_DEPTH_SIZE, 16, GLX_SAMPLE_BUFFERS, 1, GLX_SAMPLES, 4, None }; impl->doubleBuffered = True; vi = glXChooseVisual(impl->display, impl->screen, attrListDblMS); if (vi == NULL) { vi = glXChooseVisual(impl->display, impl->screen, attrListDbl); PUGL_LOG("multisampling (antialiasing) is not available\n"); } if (vi == NULL) { vi = glXChooseVisual(impl->display, impl->screen, attrListSgl); impl->doubleBuffered = False; PUGL_LOG("singlebuffered rendering will be used, no doublebuffering available\n"); } } #endif #ifdef PUGL_HAVE_CAIRO if (view->ctx_type == PUGL_CAIRO) { XVisualInfo pat; int n; pat.screen = impl->screen; vi = XGetVisualInfo(impl->display, VisualScreenMask, &pat, &n); } #endif return vi; } static bool createContext(PuglView* view, XVisualInfo* vi) { PuglInternals* const impl = view->impl; #ifdef PUGL_HAVE_GL if (view->ctx_type == PUGL_GL) { impl->ctx = glXCreateContext(impl->display, vi, 0, GL_TRUE); return (impl->ctx != NULL); } #endif #ifdef PUGL_HAVE_CAIRO if (view->ctx_type == PUGL_CAIRO) { impl->surface = cairo_xlib_surface_create( impl->display, impl->win, vi->visual, view->width, view->height); if (impl->surface == NULL) { PUGL_LOG("failed to create cairo surface\n"); return false; } impl->cr = cairo_create(impl->surface); if (impl->cr == NULL) { cairo_surface_destroy(impl->surface); impl->surface = NULL; PUGL_LOG("failed to create cairo context\n"); return false; } return true; } #endif return false; } static void destroyContext(PuglView* view) { PuglInternals* const impl = view->impl; #ifdef PUGL_HAVE_GL if (view->ctx_type == PUGL_GL) { glXDestroyContext(impl->display, impl->ctx); impl->ctx = NULL; } #endif #ifdef PUGL_HAVE_CAIRO if (view->ctx_type == PUGL_CAIRO) { cairo_destroy(impl->cr); impl->cr = NULL; cairo_surface_destroy(impl->surface); impl->surface = NULL; } #endif } void puglEnterContext(PuglView* view) { #ifdef PUGL_HAVE_GL if (view->ctx_type == PUGL_GL) { glXMakeCurrent(view->impl->display, view->impl->win, view->impl->ctx); } #endif } void puglLeaveContext(PuglView* view, bool flush) { #ifdef PUGL_HAVE_GL if (view->ctx_type == PUGL_GL) { if (flush) { glFlush(); if (view->impl->doubleBuffered) { glXSwapBuffers(view->impl->display, view->impl->win); } } glXMakeCurrent(view->impl->display, None, NULL); } #endif } int puglCreateWindow(PuglView* view, const char* title) { PuglInternals* const impl = view->impl; impl->display = XOpenDisplay(NULL); impl->screen = DefaultScreen(impl->display); XVisualInfo* const vi = getVisual(view); if (!vi) { XCloseDisplay(impl->display); impl->display = NULL; return 1; } #ifdef PUGL_HAVE_GL int glxMajor, glxMinor; glXQueryVersion(impl->display, &glxMajor, &glxMinor); PUGL_LOGF("GLX Version %d.%d\n", glxMajor, glxMinor); #endif Window xParent = view->parent ? (Window)view->parent : RootWindow(impl->display, impl->screen); Colormap cmap = XCreateColormap( impl->display, xParent, vi->visual, AllocNone); XSetWindowAttributes attr; memset(&attr, 0, sizeof(XSetWindowAttributes)); attr.background_pixel = BlackPixel(impl->display, impl->screen); attr.border_pixel = BlackPixel(impl->display, impl->screen); attr.colormap = cmap; attr.event_mask = (ExposureMask | StructureNotifyMask | EnterWindowMask | LeaveWindowMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | FocusChangeMask); impl->win = XCreateWindow( impl->display, xParent, 0, 0, view->width, view->height, 0, vi->depth, InputOutput, vi->visual, CWBackPixel | CWBorderPixel | CWColormap | CWEventMask, &attr); if (!createContext(view, vi)) { XDestroyWindow(impl->display, impl->win); impl->win = 0; XCloseDisplay(impl->display); impl->display = NULL; return 1; } XSizeHints sizeHints; memset(&sizeHints, 0, sizeof(sizeHints)); if (!view->resizable) { sizeHints.flags = PMinSize|PMaxSize; sizeHints.min_width = view->width; sizeHints.min_height = view->height; sizeHints.max_width = view->width; sizeHints.max_height = view->height; XSetNormalHints(impl->display, impl->win, &sizeHints); } else if (view->min_width > 0 && view->min_height > 0) { sizeHints.flags = PMinSize; sizeHints.min_width = view->min_width; sizeHints.min_height = view->min_height; XSetNormalHints(impl->display, impl->win, &sizeHints); } if (title) { XStoreName(impl->display, impl->win, title); } if (!view->parent) { Atom wmDelete = XInternAtom(impl->display, "WM_DELETE_WINDOW", True); XSetWMProtocols(impl->display, impl->win, &wmDelete, 1); } if (glXIsDirect(impl->display, impl->ctx)) { PUGL_LOG("DRI enabled (to disable, set LIBGL_ALWAYS_INDIRECT=1\n"); } else { PUGL_LOG("No DRI available\n"); } XFree(vi); return PUGL_SUCCESS; } void puglShowWindow(PuglView* view) { XMapRaised(view->impl->display, view->impl->win); } void puglHideWindow(PuglView* view) { XUnmapWindow(view->impl->display, view->impl->win); } void puglDestroy(PuglView* view) { if (!view) { return; } #ifndef DGL_FILE_BROWSER_DISABLED x_fib_close(view->impl->display); #endif destroyContext(view); XDestroyWindow(view->impl->display, view->impl->win); XCloseDisplay(view->impl->display); free(view->impl); free(view); } static void puglReshape(PuglView* view, int width, int height) { puglEnterContext(view); if (view->reshapeFunc) { view->reshapeFunc(view, width, height); } else { puglDefaultReshape(view, width, height); } puglLeaveContext(view, false); view->width = width; view->height = height; } static void puglDisplay(PuglView* view) { puglEnterContext(view); view->redisplay = false; if (view->displayFunc) { view->displayFunc(view); } puglLeaveContext(view, true); } static PuglKey keySymToSpecial(KeySym sym) { switch (sym) { case XK_F1: return PUGL_KEY_F1; case XK_F2: return PUGL_KEY_F2; case XK_F3: return PUGL_KEY_F3; case XK_F4: return PUGL_KEY_F4; case XK_F5: return PUGL_KEY_F5; case XK_F6: return PUGL_KEY_F6; case XK_F7: return PUGL_KEY_F7; case XK_F8: return PUGL_KEY_F8; case XK_F9: return PUGL_KEY_F9; case XK_F10: return PUGL_KEY_F10; case XK_F11: return PUGL_KEY_F11; case XK_F12: return PUGL_KEY_F12; case XK_Left: return PUGL_KEY_LEFT; case XK_Up: return PUGL_KEY_UP; case XK_Right: return PUGL_KEY_RIGHT; case XK_Down: return PUGL_KEY_DOWN; case XK_Page_Up: return PUGL_KEY_PAGE_UP; case XK_Page_Down: return PUGL_KEY_PAGE_DOWN; case XK_Home: return PUGL_KEY_HOME; case XK_End: return PUGL_KEY_END; case XK_Insert: return PUGL_KEY_INSERT; case XK_Shift_L: return PUGL_KEY_SHIFT; case XK_Shift_R: return PUGL_KEY_SHIFT; case XK_Control_L: return PUGL_KEY_CTRL; case XK_Control_R: return PUGL_KEY_CTRL; case XK_Alt_L: return PUGL_KEY_ALT; case XK_Alt_R: return PUGL_KEY_ALT; case XK_Super_L: return PUGL_KEY_SUPER; case XK_Super_R: return PUGL_KEY_SUPER; } return (PuglKey)0; } static void setModifiers(PuglView* view, unsigned xstate, unsigned xtime) { view->event_timestamp_ms = xtime; view->mods = 0; view->mods |= (xstate & ShiftMask) ? PUGL_MOD_SHIFT : 0; view->mods |= (xstate & ControlMask) ? PUGL_MOD_CTRL : 0; view->mods |= (xstate & Mod1Mask) ? PUGL_MOD_ALT : 0; view->mods |= (xstate & Mod4Mask) ? PUGL_MOD_SUPER : 0; } static void dispatchKey(PuglView* view, XEvent* event, bool press) { KeySym sym; char str[5]; PuglKey special; const int n = XLookupString(&event->xkey, str, 4, &sym, NULL); if (sym == XK_Escape && view->closeFunc && !press && !view->parent) { view->closeFunc(view); view->redisplay = false; return; } if (n == 0 && sym == 0) { goto send_event; return; } if (n > 1) { fprintf(stderr, "warning: Unsupported multi-byte key %X\n", (int)sym); goto send_event; return; } special = keySymToSpecial(sym); if (special && view->specialFunc) { if (view->specialFunc(view, press, special) == 0) { return; } } else if (!special && view->keyboardFunc) { if (view->keyboardFunc(view, press, str[0]) == 0) { return; } } send_event: if (view->parent != 0) { event->xkey.time = 0; // purposefully set an invalid time, used for feedback detection on bad hosts event->xany.window = view->parent; XSendEvent(view->impl->display, view->parent, False, NoEventMask, event); } } PuglStatus puglProcessEvents(PuglView* view) { XEvent event; while (XPending(view->impl->display) > 0) { XNextEvent(view->impl->display, &event); #ifndef DGL_FILE_BROWSER_DISABLED if (x_fib_handle_events(view->impl->display, &event)) { const int status = x_fib_status(); if (status > 0) { char* const filename = x_fib_filename(); x_fib_close(view->impl->display); if (view->fileSelectedFunc) { view->fileSelectedFunc(view, filename); } free(filename); } else if (status < 0) { x_fib_close(view->impl->display); if (view->fileSelectedFunc) { view->fileSelectedFunc(view, NULL); } } break; } #endif if (event.xany.window != view->impl->win && (view->parent == 0 || event.xany.window != (Window)view->parent)) { continue; } if ((event.type == KeyPress || event.type == KeyRelease) && event.xkey.time == 0) { continue; } switch (event.type) { case MapNotify: puglReshape(view, view->width, view->height); break; case ConfigureNotify: if ((event.xconfigure.width != view->width) || (event.xconfigure.height != view->height)) { puglReshape(view, event.xconfigure.width, event.xconfigure.height); } break; case Expose: if (event.xexpose.count != 0) { break; } puglDisplay(view); break; case MotionNotify: setModifiers(view, event.xmotion.state, event.xmotion.time); if (view->motionFunc) { view->motionFunc(view, event.xmotion.x, event.xmotion.y); } break; case ButtonPress: setModifiers(view, event.xbutton.state, event.xbutton.time); if (event.xbutton.button >= 4 && event.xbutton.button <= 7) { if (view->scrollFunc) { float dx = 0, dy = 0; switch (event.xbutton.button) { case 4: dy = 1.0f; break; case 5: dy = -1.0f; break; case 6: dx = -1.0f; break; case 7: dx = 1.0f; break; } view->scrollFunc(view, event.xbutton.x, event.xbutton.y, dx, dy); } break; } // nobreak case ButtonRelease: setModifiers(view, event.xbutton.state, event.xbutton.time); if (view->mouseFunc && (event.xbutton.button < 4 || event.xbutton.button > 7)) { view->mouseFunc(view, event.xbutton.button, event.type == ButtonPress, event.xbutton.x, event.xbutton.y); } break; case KeyPress: setModifiers(view, event.xkey.state, event.xkey.time); dispatchKey(view, &event, true); break; case KeyRelease: { setModifiers(view, event.xkey.state, event.xkey.time); bool repeated = false; if (view->ignoreKeyRepeat && XEventsQueued(view->impl->display, QueuedAfterReading)) { XEvent next; XPeekEvent(view->impl->display, &next); if (next.type == KeyPress && next.xkey.time == event.xkey.time && next.xkey.keycode == event.xkey.keycode) { XNextEvent(view->impl->display, &event); repeated = true; } } if (!repeated) { dispatchKey(view, &event, false); } } break; case ClientMessage: { char* type = XGetAtomName(view->impl->display, event.xclient.message_type); if (!strcmp(type, "WM_PROTOCOLS")) { if (view->closeFunc) { view->closeFunc(view); view->redisplay = false; } } XFree(type); } break; #ifdef PUGL_GRAB_FOCUS case EnterNotify: XSetInputFocus(view->impl->display, view->impl->win, RevertToPointerRoot, CurrentTime); break; #endif default: break; } } if (view->redisplay) { puglDisplay(view); } return PUGL_SUCCESS; } void puglPostRedisplay(PuglView* view) { view->redisplay = true; } PuglNativeWindow puglGetNativeWindow(PuglView* view) { return view->impl->win; } void* puglGetContext(PuglView* view) { #ifdef PUGL_HAVE_CAIRO if (view->ctx_type == PUGL_CAIRO) { return view->impl->cr; } #endif return NULL; // may be unused (void)view; }