|
- /*
- ==============================================================================
-
- This file is part of the JUCE library - "Jules' Utility Class Extensions"
- Copyright 2004-10 by Raw Material Software Ltd.
-
- ------------------------------------------------------------------------------
-
- JUCE can be redistributed and/or modified under the terms of the GNU General
- Public License (Version 2), as published by the Free Software Foundation.
- A copy of the license is included in the JUCE distribution, or can be found
- online at www.gnu.org/licenses.
-
- JUCE 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.
-
- ------------------------------------------------------------------------------
-
- To release a closed-source product which uses JUCE, commercial licenses are
- available: visit www.rawmaterialsoftware.com/juce for more information.
-
- ==============================================================================
- */
-
- // (This file gets included by juce_linux_NativeCode.cpp, rather than being
- // compiled on its own).
- #if JUCE_INCLUDED_FILE
-
- //==============================================================================
- // These are defined in juce_linux_Messaging.cpp
- extern Display* display;
- extern XContext windowHandleXContext;
-
- //==============================================================================
- namespace Atoms
- {
- enum ProtocolItems
- {
- TAKE_FOCUS = 0,
- DELETE_WINDOW = 1,
- PING = 2
- };
-
- static Atom Protocols, ProtocolList[3], ChangeState, State,
- ActiveWin, Pid, WindowType, WindowState,
- XdndAware, XdndEnter, XdndLeave, XdndPosition, XdndStatus,
- XdndDrop, XdndFinished, XdndSelection, XdndTypeList, XdndActionList,
- XdndActionDescription, XdndActionCopy,
- allowedActions[5],
- allowedMimeTypes[2];
-
- const unsigned long DndVersion = 3;
-
- //==============================================================================
- static void initialiseAtoms()
- {
- static bool atomsInitialised = false;
-
- if (! atomsInitialised)
- {
- atomsInitialised = true;
-
- Protocols = XInternAtom (display, "WM_PROTOCOLS", True);
- ProtocolList [TAKE_FOCUS] = XInternAtom (display, "WM_TAKE_FOCUS", True);
- ProtocolList [DELETE_WINDOW] = XInternAtom (display, "WM_DELETE_WINDOW", True);
- ProtocolList [PING] = XInternAtom (display, "_NET_WM_PING", True);
- ChangeState = XInternAtom (display, "WM_CHANGE_STATE", True);
- State = XInternAtom (display, "WM_STATE", True);
- ActiveWin = XInternAtom (display, "_NET_ACTIVE_WINDOW", False);
- Pid = XInternAtom (display, "_NET_WM_PID", False);
- WindowType = XInternAtom (display, "_NET_WM_WINDOW_TYPE", True);
- WindowState = XInternAtom (display, "_NET_WM_STATE", True);
-
- XdndAware = XInternAtom (display, "XdndAware", False);
- XdndEnter = XInternAtom (display, "XdndEnter", False);
- XdndLeave = XInternAtom (display, "XdndLeave", False);
- XdndPosition = XInternAtom (display, "XdndPosition", False);
- XdndStatus = XInternAtom (display, "XdndStatus", False);
- XdndDrop = XInternAtom (display, "XdndDrop", False);
- XdndFinished = XInternAtom (display, "XdndFinished", False);
- XdndSelection = XInternAtom (display, "XdndSelection", False);
-
- XdndTypeList = XInternAtom (display, "XdndTypeList", False);
- XdndActionList = XInternAtom (display, "XdndActionList", False);
- XdndActionCopy = XInternAtom (display, "XdndActionCopy", False);
- XdndActionDescription = XInternAtom (display, "XdndActionDescription", False);
-
- allowedMimeTypes[0] = XInternAtom (display, "text/plain", False);
- allowedMimeTypes[1] = XInternAtom (display, "text/uri-list", False);
-
- allowedActions[0] = XInternAtom (display, "XdndActionMove", False);
- allowedActions[1] = XdndActionCopy;
- allowedActions[2] = XInternAtom (display, "XdndActionLink", False);
- allowedActions[3] = XInternAtom (display, "XdndActionAsk", False);
- allowedActions[4] = XInternAtom (display, "XdndActionPrivate", False);
- }
- }
- }
-
- //==============================================================================
- namespace Keys
- {
- enum MouseButtons
- {
- NoButton = 0,
- LeftButton = 1,
- MiddleButton = 2,
- RightButton = 3,
- WheelUp = 4,
- WheelDown = 5
- };
-
- static int AltMask = 0;
- static int NumLockMask = 0;
- static bool numLock = false;
- static bool capsLock = false;
- static char keyStates [32];
- static const int extendedKeyModifier = 0x10000000;
- }
-
- bool KeyPress::isKeyCurrentlyDown (const int keyCode)
- {
- int keysym;
-
- if (keyCode & Keys::extendedKeyModifier)
- {
- keysym = 0xff00 | (keyCode & 0xff);
- }
- else
- {
- keysym = keyCode;
-
- if (keysym == (XK_Tab & 0xff)
- || keysym == (XK_Return & 0xff)
- || keysym == (XK_Escape & 0xff)
- || keysym == (XK_BackSpace & 0xff))
- {
- keysym |= 0xff00;
- }
- }
-
- ScopedXLock xlock;
-
- const int keycode = XKeysymToKeycode (display, keysym);
-
- const int keybyte = keycode >> 3;
- const int keybit = (1 << (keycode & 7));
- return (Keys::keyStates [keybyte] & keybit) != 0;
- }
-
- //==============================================================================
- #if JUCE_USE_XSHM
- namespace XSHMHelpers
- {
- static int trappedErrorCode = 0;
- extern "C" int errorTrapHandler (Display*, XErrorEvent* err)
- {
- trappedErrorCode = err->error_code;
- return 0;
- }
-
- static bool isShmAvailable() throw()
- {
- static bool isChecked = false;
- static bool isAvailable = false;
-
- if (! isChecked)
- {
- isChecked = true;
- int major, minor;
- Bool pixmaps;
-
- ScopedXLock xlock;
-
- if (XShmQueryVersion (display, &major, &minor, &pixmaps))
- {
- trappedErrorCode = 0;
- XErrorHandler oldHandler = XSetErrorHandler (errorTrapHandler);
-
- XShmSegmentInfo segmentInfo;
- zerostruct (segmentInfo);
- XImage* xImage = XShmCreateImage (display, DefaultVisual (display, DefaultScreen (display)),
- 24, ZPixmap, 0, &segmentInfo, 50, 50);
-
- if ((segmentInfo.shmid = shmget (IPC_PRIVATE,
- xImage->bytes_per_line * xImage->height,
- IPC_CREAT | 0777)) >= 0)
- {
- segmentInfo.shmaddr = (char*) shmat (segmentInfo.shmid, 0, 0);
-
- if (segmentInfo.shmaddr != (void*) -1)
- {
- segmentInfo.readOnly = False;
- xImage->data = segmentInfo.shmaddr;
- XSync (display, False);
-
- if (XShmAttach (display, &segmentInfo) != 0)
- {
- XSync (display, False);
- XShmDetach (display, &segmentInfo);
-
- isAvailable = true;
- }
- }
-
- XFlush (display);
- XDestroyImage (xImage);
-
- shmdt (segmentInfo.shmaddr);
- }
-
- shmctl (segmentInfo.shmid, IPC_RMID, 0);
-
- XSetErrorHandler (oldHandler);
- if (trappedErrorCode != 0)
- isAvailable = false;
- }
- }
-
- return isAvailable;
- }
- }
- #endif
-
- //==============================================================================
- #if JUCE_USE_XRENDER
- namespace XRender
- {
- typedef Status (*tXRenderQueryVersion) (Display*, int*, int*);
- typedef XRenderPictFormat* (*tXrenderFindStandardFormat) (Display*, int);
- typedef XRenderPictFormat* (*tXRenderFindFormat) (Display*, unsigned long, XRenderPictFormat*, int);
- typedef XRenderPictFormat* (*tXRenderFindVisualFormat) (Display*, Visual*);
-
- static tXRenderQueryVersion xRenderQueryVersion = 0;
- static tXrenderFindStandardFormat xRenderFindStandardFormat = 0;
- static tXRenderFindFormat xRenderFindFormat = 0;
- static tXRenderFindVisualFormat xRenderFindVisualFormat = 0;
-
- static bool isAvailable()
- {
- static bool hasLoaded = false;
-
- if (! hasLoaded)
- {
- ScopedXLock xlock;
- hasLoaded = true;
-
- void* h = dlopen ("libXrender.so", RTLD_GLOBAL | RTLD_NOW);
-
- if (h != 0)
- {
- xRenderQueryVersion = (tXRenderQueryVersion) dlsym (h, "XRenderQueryVersion");
- xRenderFindStandardFormat = (tXrenderFindStandardFormat) dlsym (h, "XrenderFindStandardFormat");
- xRenderFindFormat = (tXRenderFindFormat) dlsym (h, "XRenderFindFormat");
- xRenderFindVisualFormat = (tXRenderFindVisualFormat) dlsym (h, "XRenderFindVisualFormat");
- }
-
- if (xRenderQueryVersion != 0
- && xRenderFindStandardFormat != 0
- && xRenderFindFormat != 0
- && xRenderFindVisualFormat != 0)
- {
- int major, minor;
- if (xRenderQueryVersion (display, &major, &minor))
- return true;
- }
-
- xRenderQueryVersion = 0;
- }
-
- return xRenderQueryVersion != 0;
- }
-
- static XRenderPictFormat* findPictureFormat()
- {
- ScopedXLock xlock;
-
- XRenderPictFormat* pictFormat = 0;
-
- if (isAvailable())
- {
- pictFormat = xRenderFindStandardFormat (display, PictStandardARGB32);
-
- if (pictFormat == 0)
- {
- XRenderPictFormat desiredFormat;
- desiredFormat.type = PictTypeDirect;
- desiredFormat.depth = 32;
-
- desiredFormat.direct.alphaMask = 0xff;
- desiredFormat.direct.redMask = 0xff;
- desiredFormat.direct.greenMask = 0xff;
- desiredFormat.direct.blueMask = 0xff;
-
- desiredFormat.direct.alpha = 24;
- desiredFormat.direct.red = 16;
- desiredFormat.direct.green = 8;
- desiredFormat.direct.blue = 0;
-
- pictFormat = xRenderFindFormat (display,
- PictFormatType | PictFormatDepth
- | PictFormatRedMask | PictFormatRed
- | PictFormatGreenMask | PictFormatGreen
- | PictFormatBlueMask | PictFormatBlue
- | PictFormatAlphaMask | PictFormatAlpha,
- &desiredFormat,
- 0);
- }
- }
-
- return pictFormat;
- }
- }
- #endif
-
- //==============================================================================
- namespace Visuals
- {
- static Visual* findVisualWithDepth (const int desiredDepth) throw()
- {
- ScopedXLock xlock;
-
- Visual* visual = 0;
- int numVisuals = 0;
- long desiredMask = VisualNoMask;
- XVisualInfo desiredVisual;
-
- desiredVisual.screen = DefaultScreen (display);
- desiredVisual.depth = desiredDepth;
-
- desiredMask = VisualScreenMask | VisualDepthMask;
-
- if (desiredDepth == 32)
- {
- desiredVisual.c_class = TrueColor;
- desiredVisual.red_mask = 0x00FF0000;
- desiredVisual.green_mask = 0x0000FF00;
- desiredVisual.blue_mask = 0x000000FF;
- desiredVisual.bits_per_rgb = 8;
-
- desiredMask |= VisualClassMask;
- desiredMask |= VisualRedMaskMask;
- desiredMask |= VisualGreenMaskMask;
- desiredMask |= VisualBlueMaskMask;
- desiredMask |= VisualBitsPerRGBMask;
- }
-
- XVisualInfo* xvinfos = XGetVisualInfo (display,
- desiredMask,
- &desiredVisual,
- &numVisuals);
-
- if (xvinfos != 0)
- {
- for (int i = 0; i < numVisuals; i++)
- {
- if (xvinfos[i].depth == desiredDepth)
- {
- visual = xvinfos[i].visual;
- break;
- }
- }
-
- XFree (xvinfos);
- }
-
- return visual;
- }
-
- static Visual* findVisualFormat (const int desiredDepth, int& matchedDepth) throw()
- {
- Visual* visual = 0;
-
- if (desiredDepth == 32)
- {
- #if JUCE_USE_XSHM
- if (XSHMHelpers::isShmAvailable())
- {
- #if JUCE_USE_XRENDER
- if (XRender::isAvailable())
- {
- XRenderPictFormat* pictFormat = XRender::findPictureFormat();
-
- if (pictFormat != 0)
- {
- int numVisuals = 0;
- XVisualInfo desiredVisual;
- desiredVisual.screen = DefaultScreen (display);
- desiredVisual.depth = 32;
- desiredVisual.bits_per_rgb = 8;
-
- XVisualInfo* xvinfos = XGetVisualInfo (display,
- VisualScreenMask | VisualDepthMask | VisualBitsPerRGBMask,
- &desiredVisual, &numVisuals);
- if (xvinfos != 0)
- {
- for (int i = 0; i < numVisuals; ++i)
- {
- XRenderPictFormat* pictVisualFormat = XRender::xRenderFindVisualFormat (display, xvinfos[i].visual);
-
- if (pictVisualFormat != 0
- && pictVisualFormat->type == PictTypeDirect
- && pictVisualFormat->direct.alphaMask)
- {
- visual = xvinfos[i].visual;
- matchedDepth = 32;
- break;
- }
- }
-
- XFree (xvinfos);
- }
- }
- }
- #endif
- if (visual == 0)
- {
- visual = findVisualWithDepth (32);
- if (visual != 0)
- matchedDepth = 32;
- }
- }
- #endif
- }
-
- if (visual == 0 && desiredDepth >= 24)
- {
- visual = findVisualWithDepth (24);
- if (visual != 0)
- matchedDepth = 24;
- }
-
- if (visual == 0 && desiredDepth >= 16)
- {
- visual = findVisualWithDepth (16);
- if (visual != 0)
- matchedDepth = 16;
- }
-
- return visual;
- }
- }
-
- //==============================================================================
- class XBitmapImage : public Image::SharedImage
- {
- public:
- //==============================================================================
- XBitmapImage (const Image::PixelFormat format_, const int w, const int h,
- const bool clearImage, const int imageDepth_, Visual* visual)
- : Image::SharedImage (format_, w, h),
- imageDepth (imageDepth_),
- gc (None)
- {
- jassert (format_ == Image::RGB || format_ == Image::ARGB);
-
- pixelStride = (format_ == Image::RGB) ? 3 : 4;
- lineStride = ((w * pixelStride + 3) & ~3);
-
- ScopedXLock xlock;
-
- #if JUCE_USE_XSHM
- usingXShm = false;
-
- if ((imageDepth > 16) && XSHMHelpers::isShmAvailable())
- {
- zerostruct (segmentInfo);
-
- segmentInfo.shmid = -1;
- segmentInfo.shmaddr = (char *) -1;
- segmentInfo.readOnly = False;
-
- xImage = XShmCreateImage (display, visual, imageDepth, ZPixmap, 0, &segmentInfo, w, h);
-
- if (xImage != 0)
- {
- if ((segmentInfo.shmid = shmget (IPC_PRIVATE,
- xImage->bytes_per_line * xImage->height,
- IPC_CREAT | 0777)) >= 0)
- {
- if (segmentInfo.shmid != -1)
- {
- segmentInfo.shmaddr = (char*) shmat (segmentInfo.shmid, 0, 0);
-
- if (segmentInfo.shmaddr != (void*) -1)
- {
- segmentInfo.readOnly = False;
-
- xImage->data = segmentInfo.shmaddr;
- imageData = (uint8*) segmentInfo.shmaddr;
-
- if (XShmAttach (display, &segmentInfo) != 0)
- usingXShm = true;
- else
- jassertfalse;
- }
- else
- {
- shmctl (segmentInfo.shmid, IPC_RMID, 0);
- }
- }
- }
- }
- }
-
- if (! usingXShm)
- #endif
- {
- imageDataAllocated.malloc (lineStride * h);
- imageData = imageDataAllocated;
-
- if (format_ == Image::ARGB && clearImage)
- zeromem (imageData, h * lineStride);
-
- xImage = (XImage*) juce_calloc (sizeof (XImage));
-
- xImage->width = w;
- xImage->height = h;
- xImage->xoffset = 0;
- xImage->format = ZPixmap;
- xImage->data = (char*) imageData;
- xImage->byte_order = ImageByteOrder (display);
- xImage->bitmap_unit = BitmapUnit (display);
- xImage->bitmap_bit_order = BitmapBitOrder (display);
- xImage->bitmap_pad = 32;
- xImage->depth = pixelStride * 8;
- xImage->bytes_per_line = lineStride;
- xImage->bits_per_pixel = pixelStride * 8;
- xImage->red_mask = 0x00FF0000;
- xImage->green_mask = 0x0000FF00;
- xImage->blue_mask = 0x000000FF;
-
- if (imageDepth == 16)
- {
- const int pixelStride = 2;
- const int lineStride = ((w * pixelStride + 3) & ~3);
-
- imageData16Bit.malloc (lineStride * h);
- xImage->data = imageData16Bit;
- xImage->bitmap_pad = 16;
- xImage->depth = pixelStride * 8;
- xImage->bytes_per_line = lineStride;
- xImage->bits_per_pixel = pixelStride * 8;
- xImage->red_mask = visual->red_mask;
- xImage->green_mask = visual->green_mask;
- xImage->blue_mask = visual->blue_mask;
- }
-
- if (! XInitImage (xImage))
- jassertfalse;
- }
- }
-
- ~XBitmapImage()
- {
- ScopedXLock xlock;
-
- if (gc != None)
- XFreeGC (display, gc);
-
- #if JUCE_USE_XSHM
- if (usingXShm)
- {
- XShmDetach (display, &segmentInfo);
-
- XFlush (display);
- XDestroyImage (xImage);
-
- shmdt (segmentInfo.shmaddr);
- shmctl (segmentInfo.shmid, IPC_RMID, 0);
- }
- else
- #endif
- {
- xImage->data = 0;
- XDestroyImage (xImage);
- }
- }
-
- Image::ImageType getType() const { return Image::NativeImage; }
-
- LowLevelGraphicsContext* createLowLevelContext()
- {
- return new LowLevelGraphicsSoftwareRenderer (Image (this));
- }
-
- SharedImage* clone()
- {
- jassertfalse;
- return 0;
- }
-
- void blitToWindow (Window window, int dx, int dy, int dw, int dh, int sx, int sy)
- {
- ScopedXLock xlock;
-
- if (gc == None)
- {
- XGCValues gcvalues;
- gcvalues.foreground = None;
- gcvalues.background = None;
- gcvalues.function = GXcopy;
- gcvalues.plane_mask = AllPlanes;
- gcvalues.clip_mask = None;
- gcvalues.graphics_exposures = False;
-
- gc = XCreateGC (display, window,
- GCBackground | GCForeground | GCFunction | GCPlaneMask | GCClipMask | GCGraphicsExposures,
- &gcvalues);
- }
-
- if (imageDepth == 16)
- {
- const uint32 rMask = xImage->red_mask;
- const uint32 rShiftL = jmax (0, getShiftNeeded (rMask));
- const uint32 rShiftR = jmax (0, -getShiftNeeded (rMask));
- const uint32 gMask = xImage->green_mask;
- const uint32 gShiftL = jmax (0, getShiftNeeded (gMask));
- const uint32 gShiftR = jmax (0, -getShiftNeeded (gMask));
- const uint32 bMask = xImage->blue_mask;
- const uint32 bShiftL = jmax (0, getShiftNeeded (bMask));
- const uint32 bShiftR = jmax (0, -getShiftNeeded (bMask));
-
- const Image::BitmapData srcData (Image (this), false);
-
- for (int y = sy; y < sy + dh; ++y)
- {
- const uint8* p = srcData.getPixelPointer (sx, y);
-
- for (int x = sx; x < sx + dw; ++x)
- {
- const PixelRGB* const pixel = (const PixelRGB*) p;
- p += srcData.pixelStride;
-
- XPutPixel (xImage, x, y,
- (((((uint32) pixel->getRed()) << rShiftL) >> rShiftR) & rMask)
- | (((((uint32) pixel->getGreen()) << gShiftL) >> gShiftR) & gMask)
- | (((((uint32) pixel->getBlue()) << bShiftL) >> bShiftR) & bMask));
- }
- }
- }
-
- // blit results to screen.
- #if JUCE_USE_XSHM
- if (usingXShm)
- XShmPutImage (display, (::Drawable) window, gc, xImage, sx, sy, dx, dy, dw, dh, True);
- else
- #endif
- XPutImage (display, (::Drawable) window, gc, xImage, sx, sy, dx, dy, dw, dh);
- }
-
- //==============================================================================
- juce_UseDebuggingNewOperator
-
- private:
- XImage* xImage;
- const int imageDepth;
- HeapBlock <uint8> imageDataAllocated;
- HeapBlock <char> imageData16Bit;
-
- GC gc;
-
- #if JUCE_USE_XSHM
- XShmSegmentInfo segmentInfo;
- bool usingXShm;
- #endif
-
- static int getShiftNeeded (const uint32 mask) throw()
- {
- for (int i = 32; --i >= 0;)
- if (((mask >> i) & 1) != 0)
- return i - 7;
-
- jassertfalse;
- return 0;
- }
- };
-
-
- //==============================================================================
- class LinuxComponentPeer : public ComponentPeer
- {
- public:
- //==============================================================================
- LinuxComponentPeer (Component* const component, const int windowStyleFlags)
- : ComponentPeer (component, windowStyleFlags),
- windowH (0),
- parentWindow (0),
- wx (0),
- wy (0),
- ww (0),
- wh (0),
- fullScreen (false),
- mapped (false),
- visual (0),
- depth (0)
- {
- // it's dangerous to create a window on a thread other than the message thread..
- jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager());
-
- repainter = new LinuxRepaintManager (this);
-
- createWindow();
-
- setTitle (component->getName());
- }
-
- ~LinuxComponentPeer()
- {
- // it's dangerous to delete a window on a thread other than the message thread..
- jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager());
-
- deleteIconPixmaps();
-
- destroyWindow();
-
- windowH = 0;
- }
-
- //==============================================================================
- void* getNativeHandle() const
- {
- return (void*) windowH;
- }
-
- static LinuxComponentPeer* getPeerFor (Window windowHandle) throw()
- {
- XPointer peer = 0;
-
- ScopedXLock xlock;
- if (! XFindContext (display, (XID) windowHandle, windowHandleXContext, &peer))
- {
- if (peer != 0 && ! ComponentPeer::isValidPeer ((LinuxComponentPeer*) peer))
- peer = 0;
- }
-
- return (LinuxComponentPeer*) peer;
- }
-
- void setVisible (bool shouldBeVisible)
- {
- ScopedXLock xlock;
- if (shouldBeVisible)
- XMapWindow (display, windowH);
- else
- XUnmapWindow (display, windowH);
- }
-
- void setTitle (const String& title)
- {
- setWindowTitle (windowH, title);
- }
-
- void setPosition (int x, int y)
- {
- setBounds (x, y, ww, wh, false);
- }
-
- void setSize (int w, int h)
- {
- setBounds (wx, wy, w, h, false);
- }
-
- void setBounds (int x, int y, int w, int h, bool isNowFullScreen)
- {
- fullScreen = isNowFullScreen;
-
- if (windowH != 0)
- {
- Component::SafePointer<Component> deletionChecker (component);
-
- wx = x;
- wy = y;
- ww = jmax (1, w);
- wh = jmax (1, h);
-
- ScopedXLock xlock;
-
- // Make sure the Window manager does what we want
- XSizeHints* hints = XAllocSizeHints();
- hints->flags = USSize | USPosition;
- hints->width = ww;
- hints->height = wh;
- hints->x = wx;
- hints->y = wy;
-
- if ((getStyleFlags() & (windowHasTitleBar | windowIsResizable)) == windowHasTitleBar)
- {
- hints->min_width = hints->max_width = hints->width;
- hints->min_height = hints->max_height = hints->height;
- hints->flags |= PMinSize | PMaxSize;
- }
-
- XSetWMNormalHints (display, windowH, hints);
- XFree (hints);
-
- XMoveResizeWindow (display, windowH,
- wx - windowBorder.getLeft(),
- wy - windowBorder.getTop(), ww, wh);
-
- if (deletionChecker != 0)
- {
- updateBorderSize();
- handleMovedOrResized();
- }
- }
- }
-
- const Rectangle<int> getBounds() const { return Rectangle<int> (wx, wy, ww, wh); }
- const Point<int> getScreenPosition() const { return Point<int> (wx, wy); }
-
- const Point<int> localToGlobal (const Point<int>& relativePosition)
- {
- return relativePosition + getScreenPosition();
- }
-
- const Point<int> globalToLocal (const Point<int>& screenPosition)
- {
- return screenPosition - getScreenPosition();
- }
-
- void setAlpha (float newAlpha)
- {
- //xxx todo!
- }
-
- void setMinimised (bool shouldBeMinimised)
- {
- if (shouldBeMinimised)
- {
- Window root = RootWindow (display, DefaultScreen (display));
-
- XClientMessageEvent clientMsg;
- clientMsg.display = display;
- clientMsg.window = windowH;
- clientMsg.type = ClientMessage;
- clientMsg.format = 32;
- clientMsg.message_type = Atoms::ChangeState;
- clientMsg.data.l[0] = IconicState;
-
- ScopedXLock xlock;
- XSendEvent (display, root, false, SubstructureRedirectMask | SubstructureNotifyMask, (XEvent*) &clientMsg);
- }
- else
- {
- setVisible (true);
- }
- }
-
- bool isMinimised() const
- {
- bool minimised = false;
-
- unsigned char* stateProp;
- unsigned long nitems, bytesLeft;
- Atom actualType;
- int actualFormat;
-
- ScopedXLock xlock;
- if (XGetWindowProperty (display, windowH, Atoms::State, 0, 64, False,
- Atoms::State, &actualType, &actualFormat, &nitems, &bytesLeft,
- &stateProp) == Success
- && actualType == Atoms::State
- && actualFormat == 32
- && nitems > 0)
- {
- if (((unsigned long*) stateProp)[0] == IconicState)
- minimised = true;
-
- XFree (stateProp);
- }
-
- return minimised;
- }
-
- void setFullScreen (const bool shouldBeFullScreen)
- {
- Rectangle<int> r (lastNonFullscreenBounds); // (get a copy of this before de-minimising)
-
- setMinimised (false);
-
- if (fullScreen != shouldBeFullScreen)
- {
- if (shouldBeFullScreen)
- r = Desktop::getInstance().getMainMonitorArea();
-
- if (! r.isEmpty())
- setBounds (r.getX(), r.getY(), r.getWidth(), r.getHeight(), shouldBeFullScreen);
-
- getComponent()->repaint();
- }
- }
-
- bool isFullScreen() const
- {
- return fullScreen;
- }
-
- bool isChildWindowOf (Window possibleParent) const
- {
- Window* windowList = 0;
- uint32 windowListSize = 0;
- Window parent, root;
-
- ScopedXLock xlock;
- if (XQueryTree (display, windowH, &root, &parent, &windowList, &windowListSize) != 0)
- {
- if (windowList != 0)
- XFree (windowList);
-
- return parent == possibleParent;
- }
-
- return false;
- }
-
- bool isFrontWindow() const
- {
- Window* windowList = 0;
- uint32 windowListSize = 0;
- bool result = false;
-
- ScopedXLock xlock;
- Window parent, root = RootWindow (display, DefaultScreen (display));
-
- if (XQueryTree (display, root, &root, &parent, &windowList, &windowListSize) != 0)
- {
- for (int i = windowListSize; --i >= 0;)
- {
- LinuxComponentPeer* const peer = LinuxComponentPeer::getPeerFor (windowList[i]);
-
- if (peer != 0)
- {
- result = (peer == this);
- break;
- }
- }
- }
-
- if (windowList != 0)
- XFree (windowList);
-
- return result;
- }
-
- bool contains (const Point<int>& position, bool trueIfInAChildWindow) const
- {
- if (((unsigned int) position.getX()) >= (unsigned int) ww
- || ((unsigned int) position.getY()) >= (unsigned int) wh)
- return false;
-
- for (int i = Desktop::getInstance().getNumComponents(); --i >= 0;)
- {
- Component* const c = Desktop::getInstance().getComponent (i);
-
- if (c == getComponent())
- break;
-
- if (c->contains (position + Point<int> (wx, wy) - c->getScreenPosition()))
- return false;
- }
-
- if (trueIfInAChildWindow)
- return true;
-
- ::Window root, child;
- unsigned int bw, depth;
- int wx, wy, w, h;
-
- ScopedXLock xlock;
- if (! XGetGeometry (display, (::Drawable) windowH, &root,
- &wx, &wy, (unsigned int*) &w, (unsigned int*) &h,
- &bw, &depth))
- {
- return false;
- }
-
- if (! XTranslateCoordinates (display, windowH, windowH, position.getX(), position.getY(), &wx, &wy, &child))
- return false;
-
- return child == None;
- }
-
- const BorderSize getFrameSize() const
- {
- return BorderSize();
- }
-
- bool setAlwaysOnTop (bool alwaysOnTop)
- {
- return false;
- }
-
- void toFront (bool makeActive)
- {
- if (makeActive)
- {
- setVisible (true);
- grabFocus();
- }
-
- XEvent ev;
- ev.xclient.type = ClientMessage;
- ev.xclient.serial = 0;
- ev.xclient.send_event = True;
- ev.xclient.message_type = Atoms::ActiveWin;
- ev.xclient.window = windowH;
- ev.xclient.format = 32;
- ev.xclient.data.l[0] = 2;
- ev.xclient.data.l[1] = CurrentTime;
- ev.xclient.data.l[2] = 0;
- ev.xclient.data.l[3] = 0;
- ev.xclient.data.l[4] = 0;
-
- {
- ScopedXLock xlock;
- XSendEvent (display, RootWindow (display, DefaultScreen (display)),
- False, SubstructureRedirectMask | SubstructureNotifyMask, &ev);
-
- XWindowAttributes attr;
- XGetWindowAttributes (display, windowH, &attr);
-
- if (component->isAlwaysOnTop())
- XRaiseWindow (display, windowH);
-
- XSync (display, False);
- }
-
- handleBroughtToFront();
- }
-
- void toBehind (ComponentPeer* other)
- {
- LinuxComponentPeer* const otherPeer = dynamic_cast <LinuxComponentPeer*> (other);
- jassert (otherPeer != 0); // wrong type of window?
-
- if (otherPeer != 0)
- {
- setMinimised (false);
-
- Window newStack[] = { otherPeer->windowH, windowH };
-
- ScopedXLock xlock;
- XRestackWindows (display, newStack, 2);
- }
- }
-
- bool isFocused() const
- {
- int revert = 0;
- Window focusedWindow = 0;
- ScopedXLock xlock;
- XGetInputFocus (display, &focusedWindow, &revert);
-
- return focusedWindow == windowH;
- }
-
- void grabFocus()
- {
- XWindowAttributes atts;
- ScopedXLock xlock;
-
- if (windowH != 0
- && XGetWindowAttributes (display, windowH, &atts)
- && atts.map_state == IsViewable
- && ! isFocused())
- {
- XSetInputFocus (display, windowH, RevertToParent, CurrentTime);
- isActiveApplication = true;
- }
- }
-
- void textInputRequired (const Point<int>&)
- {
- }
-
- void repaint (const Rectangle<int>& area)
- {
- repainter->repaint (area.getIntersection (getComponent()->getLocalBounds()));
- }
-
- void performAnyPendingRepaintsNow()
- {
- repainter->performAnyPendingRepaintsNow();
- }
-
- static Pixmap juce_createColourPixmapFromImage (Display* display, const Image& image)
- {
- ScopedXLock xlock;
-
- const int width = image.getWidth();
- const int height = image.getHeight();
- HeapBlock <uint32> colour (width * height);
- int index = 0;
-
- for (int y = 0; y < height; ++y)
- for (int x = 0; x < width; ++x)
- colour[index++] = image.getPixelAt (x, y).getARGB();
-
- XImage* ximage = XCreateImage (display, CopyFromParent, 24, ZPixmap,
- 0, reinterpret_cast<char*> (colour.getData()),
- width, height, 32, 0);
-
- Pixmap pixmap = XCreatePixmap (display, DefaultRootWindow (display),
- width, height, 24);
-
- GC gc = XCreateGC (display, pixmap, 0, 0);
- XPutImage (display, pixmap, gc, ximage, 0, 0, 0, 0, width, height);
- XFreeGC (display, gc);
-
- return pixmap;
- }
-
- static Pixmap juce_createMaskPixmapFromImage (Display* display, const Image& image)
- {
- ScopedXLock xlock;
-
- const int width = image.getWidth();
- const int height = image.getHeight();
- const int stride = (width + 7) >> 3;
- HeapBlock <char> mask;
- mask.calloc (stride * height);
- const bool msbfirst = (BitmapBitOrder (display) == MSBFirst);
-
- for (int y = 0; y < height; ++y)
- {
- for (int x = 0; x < width; ++x)
- {
- const char bit = (char) (1 << (msbfirst ? (7 - (x & 7)) : (x & 7)));
- const int offset = y * stride + (x >> 3);
-
- if (image.getPixelAt (x, y).getAlpha() >= 128)
- mask[offset] |= bit;
- }
- }
-
- return XCreatePixmapFromBitmapData (display, DefaultRootWindow (display),
- mask.getData(), width, height, 1, 0, 1);
- }
-
- void setIcon (const Image& newIcon)
- {
- const int dataSize = newIcon.getWidth() * newIcon.getHeight() + 2;
- HeapBlock <unsigned long> data (dataSize);
-
- int index = 0;
- data[index++] = newIcon.getWidth();
- data[index++] = newIcon.getHeight();
-
- for (int y = 0; y < newIcon.getHeight(); ++y)
- for (int x = 0; x < newIcon.getWidth(); ++x)
- data[index++] = newIcon.getPixelAt (x, y).getARGB();
-
- ScopedXLock xlock;
- XChangeProperty (display, windowH,
- XInternAtom (display, "_NET_WM_ICON", False),
- XA_CARDINAL, 32, PropModeReplace,
- reinterpret_cast<unsigned char*> (data.getData()), dataSize);
-
- deleteIconPixmaps();
-
- XWMHints* wmHints = XGetWMHints (display, windowH);
-
- if (wmHints == 0)
- wmHints = XAllocWMHints();
-
- wmHints->flags |= IconPixmapHint | IconMaskHint;
- wmHints->icon_pixmap = juce_createColourPixmapFromImage (display, newIcon);
- wmHints->icon_mask = juce_createMaskPixmapFromImage (display, newIcon);
-
- XSetWMHints (display, windowH, wmHints);
- XFree (wmHints);
-
- XSync (display, False);
- }
-
- void deleteIconPixmaps()
- {
- ScopedXLock xlock;
- XWMHints* wmHints = XGetWMHints (display, windowH);
-
- if (wmHints != 0)
- {
- if ((wmHints->flags & IconPixmapHint) != 0)
- {
- wmHints->flags &= ~IconPixmapHint;
- XFreePixmap (display, wmHints->icon_pixmap);
- }
-
- if ((wmHints->flags & IconMaskHint) != 0)
- {
- wmHints->flags &= ~IconMaskHint;
- XFreePixmap (display, wmHints->icon_mask);
- }
-
- XSetWMHints (display, windowH, wmHints);
- XFree (wmHints);
- }
- }
-
- //==============================================================================
- void handleWindowMessage (XEvent* event)
- {
- switch (event->xany.type)
- {
- case 2: // 'KeyPress'
- {
- ScopedXLock xlock;
- XKeyEvent* const keyEvent = (XKeyEvent*) &event->xkey;
- updateKeyStates (keyEvent->keycode, true);
-
- char utf8 [64];
- zeromem (utf8, sizeof (utf8));
- KeySym sym;
-
- {
- const char* oldLocale = ::setlocale (LC_ALL, 0);
- ::setlocale (LC_ALL, "");
- XLookupString (keyEvent, utf8, sizeof (utf8), &sym, 0);
- ::setlocale (LC_ALL, oldLocale);
- }
-
- const juce_wchar unicodeChar = String::fromUTF8 (utf8, sizeof (utf8) - 1) [0];
- int keyCode = (int) unicodeChar;
-
- if (keyCode < 0x20)
- keyCode = XKeycodeToKeysym (display, keyEvent->keycode, currentModifiers.isShiftDown() ? 1 : 0);
-
- const ModifierKeys oldMods (currentModifiers);
- bool keyPressed = false;
-
- const bool keyDownChange = (sym != NoSymbol) && ! updateKeyModifiersFromSym (sym, true);
-
- if ((sym & 0xff00) == 0xff00)
- {
- // Translate keypad
- if (sym == XK_KP_Divide)
- keyCode = XK_slash;
- else if (sym == XK_KP_Multiply)
- keyCode = XK_asterisk;
- else if (sym == XK_KP_Subtract)
- keyCode = XK_hyphen;
- else if (sym == XK_KP_Add)
- keyCode = XK_plus;
- else if (sym == XK_KP_Enter)
- keyCode = XK_Return;
- else if (sym == XK_KP_Decimal)
- keyCode = Keys::numLock ? XK_period : XK_Delete;
- else if (sym == XK_KP_0)
- keyCode = Keys::numLock ? XK_0 : XK_Insert;
- else if (sym == XK_KP_1)
- keyCode = Keys::numLock ? XK_1 : XK_End;
- else if (sym == XK_KP_2)
- keyCode = Keys::numLock ? XK_2 : XK_Down;
- else if (sym == XK_KP_3)
- keyCode = Keys::numLock ? XK_3 : XK_Page_Down;
- else if (sym == XK_KP_4)
- keyCode = Keys::numLock ? XK_4 : XK_Left;
- else if (sym == XK_KP_5)
- keyCode = XK_5;
- else if (sym == XK_KP_6)
- keyCode = Keys::numLock ? XK_6 : XK_Right;
- else if (sym == XK_KP_7)
- keyCode = Keys::numLock ? XK_7 : XK_Home;
- else if (sym == XK_KP_8)
- keyCode = Keys::numLock ? XK_8 : XK_Up;
- else if (sym == XK_KP_9)
- keyCode = Keys::numLock ? XK_9 : XK_Page_Up;
-
- switch (sym)
- {
- case XK_Left:
- case XK_Right:
- case XK_Up:
- case XK_Down:
- case XK_Page_Up:
- case XK_Page_Down:
- case XK_End:
- case XK_Home:
- case XK_Delete:
- case XK_Insert:
- keyPressed = true;
- keyCode = (sym & 0xff) | Keys::extendedKeyModifier;
- break;
- case XK_Tab:
- case XK_Return:
- case XK_Escape:
- case XK_BackSpace:
- keyPressed = true;
- keyCode &= 0xff;
- break;
- default:
- {
- if (sym >= XK_F1 && sym <= XK_F16)
- {
- keyPressed = true;
- keyCode = (sym & 0xff) | Keys::extendedKeyModifier;
- }
- break;
- }
- }
- }
-
- if (utf8[0] != 0 || ((sym & 0xff00) == 0 && sym >= 8))
- keyPressed = true;
-
- if (oldMods != currentModifiers)
- handleModifierKeysChange();
-
- if (keyDownChange)
- handleKeyUpOrDown (true);
-
- if (keyPressed)
- handleKeyPress (keyCode, unicodeChar);
-
- break;
- }
-
- case KeyRelease:
- {
- const XKeyEvent* const keyEvent = (const XKeyEvent*) &event->xkey;
- updateKeyStates (keyEvent->keycode, false);
- KeySym sym;
-
- {
- ScopedXLock xlock;
- sym = XKeycodeToKeysym (display, keyEvent->keycode, 0);
- }
-
- const ModifierKeys oldMods (currentModifiers);
- const bool keyDownChange = (sym != NoSymbol) && ! updateKeyModifiersFromSym (sym, false);
-
- if (oldMods != currentModifiers)
- handleModifierKeysChange();
-
- if (keyDownChange)
- handleKeyUpOrDown (false);
-
- break;
- }
-
- case ButtonPress:
- {
- const XButtonPressedEvent* const buttonPressEvent = (const XButtonPressedEvent*) &event->xbutton;
- updateKeyModifiers (buttonPressEvent->state);
-
- bool buttonMsg = false;
- const int map = pointerMap [buttonPressEvent->button - Button1];
-
- if (map == Keys::WheelUp || map == Keys::WheelDown)
- {
- handleMouseWheel (0, Point<int> (buttonPressEvent->x, buttonPressEvent->y),
- getEventTime (buttonPressEvent->time), 0, map == Keys::WheelDown ? -84.0f : 84.0f);
- }
- if (map == Keys::LeftButton)
- {
- currentModifiers = currentModifiers.withFlags (ModifierKeys::leftButtonModifier);
- buttonMsg = true;
- }
- else if (map == Keys::RightButton)
- {
- currentModifiers = currentModifiers.withFlags (ModifierKeys::rightButtonModifier);
- buttonMsg = true;
- }
- else if (map == Keys::MiddleButton)
- {
- currentModifiers = currentModifiers.withFlags (ModifierKeys::middleButtonModifier);
- buttonMsg = true;
- }
-
- if (buttonMsg)
- {
- toFront (true);
-
- handleMouseEvent (0, Point<int> (buttonPressEvent->x, buttonPressEvent->y), currentModifiers,
- getEventTime (buttonPressEvent->time));
- }
-
- clearLastMousePos();
- break;
- }
-
- case ButtonRelease:
- {
- const XButtonReleasedEvent* const buttonRelEvent = (const XButtonReleasedEvent*) &event->xbutton;
- updateKeyModifiers (buttonRelEvent->state);
-
- const int map = pointerMap [buttonRelEvent->button - Button1];
-
- if (map == Keys::LeftButton)
- currentModifiers = currentModifiers.withoutFlags (ModifierKeys::leftButtonModifier);
- else if (map == Keys::RightButton)
- currentModifiers = currentModifiers.withoutFlags (ModifierKeys::rightButtonModifier);
- else if (map == Keys::MiddleButton)
- currentModifiers = currentModifiers.withoutFlags (ModifierKeys::middleButtonModifier);
-
- handleMouseEvent (0, Point<int> (buttonRelEvent->x, buttonRelEvent->y), currentModifiers,
- getEventTime (buttonRelEvent->time));
-
- clearLastMousePos();
- break;
- }
-
- case MotionNotify:
- {
- const XPointerMovedEvent* const movedEvent = (const XPointerMovedEvent*) &event->xmotion;
- updateKeyModifiers (movedEvent->state);
-
- const Point<int> mousePos (Desktop::getMousePosition());
-
- if (lastMousePos != mousePos)
- {
- lastMousePos = mousePos;
-
- if (parentWindow != 0 && (styleFlags & windowHasTitleBar) == 0)
- {
- Window wRoot = 0, wParent = 0;
-
- {
- ScopedXLock xlock;
- unsigned int numChildren;
- Window* wChild = 0;
- XQueryTree (display, windowH, &wRoot, &wParent, &wChild, &numChildren);
- }
-
- if (wParent != 0
- && wParent != windowH
- && wParent != wRoot)
- {
- parentWindow = wParent;
- updateBounds();
- }
- else
- {
- parentWindow = 0;
- }
- }
-
- handleMouseEvent (0, mousePos - getScreenPosition(), currentModifiers, getEventTime (movedEvent->time));
- }
-
- break;
- }
-
- case EnterNotify:
- {
- clearLastMousePos();
- const XEnterWindowEvent* const enterEvent = (const XEnterWindowEvent*) &event->xcrossing;
-
- if (! currentModifiers.isAnyMouseButtonDown())
- {
- updateKeyModifiers (enterEvent->state);
- handleMouseEvent (0, Point<int> (enterEvent->x, enterEvent->y), currentModifiers, getEventTime (enterEvent->time));
- }
-
- break;
- }
-
- case LeaveNotify:
- {
- const XLeaveWindowEvent* const leaveEvent = (const XLeaveWindowEvent*) &event->xcrossing;
-
- // Suppress the normal leave if we've got a pointer grab, or if
- // it's a bogus one caused by clicking a mouse button when running
- // in a Window manager
- if (((! currentModifiers.isAnyMouseButtonDown()) && leaveEvent->mode == NotifyNormal)
- || leaveEvent->mode == NotifyUngrab)
- {
- updateKeyModifiers (leaveEvent->state);
- handleMouseEvent (0, Point<int> (leaveEvent->x, leaveEvent->y), currentModifiers, getEventTime (leaveEvent->time));
- }
-
- break;
- }
-
- case FocusIn:
- {
- isActiveApplication = true;
- if (isFocused())
- handleFocusGain();
-
- break;
- }
-
- case FocusOut:
- {
- isActiveApplication = false;
- if (! isFocused())
- handleFocusLoss();
-
- break;
- }
-
- case Expose:
- {
- // Batch together all pending expose events
- XExposeEvent* exposeEvent = (XExposeEvent*) &event->xexpose;
- XEvent nextEvent;
- ScopedXLock xlock;
-
- if (exposeEvent->window != windowH)
- {
- Window child;
- XTranslateCoordinates (display, exposeEvent->window, windowH,
- exposeEvent->x, exposeEvent->y, &exposeEvent->x, &exposeEvent->y,
- &child);
- }
-
- repaint (Rectangle<int> (exposeEvent->x, exposeEvent->y,
- exposeEvent->width, exposeEvent->height));
-
- while (XEventsQueued (display, QueuedAfterFlush) > 0)
- {
- XPeekEvent (display, (XEvent*) &nextEvent);
- if (nextEvent.type != Expose || nextEvent.xany.window != event->xany.window)
- break;
-
- XNextEvent (display, (XEvent*) &nextEvent);
- XExposeEvent* nextExposeEvent = (XExposeEvent*) &nextEvent.xexpose;
- repaint (Rectangle<int> (nextExposeEvent->x, nextExposeEvent->y,
- nextExposeEvent->width, nextExposeEvent->height));
- }
-
- break;
- }
-
- case CirculateNotify:
- case CreateNotify:
- case DestroyNotify:
- // Think we can ignore these
- break;
-
- case ConfigureNotify:
- {
- updateBounds();
- updateBorderSize();
- handleMovedOrResized();
-
- // if the native title bar is dragged, need to tell any active menus, etc.
- if ((styleFlags & windowHasTitleBar) != 0
- && component->isCurrentlyBlockedByAnotherModalComponent())
- {
- Component* const currentModalComp = Component::getCurrentlyModalComponent();
-
- if (currentModalComp != 0)
- currentModalComp->inputAttemptWhenModal();
- }
-
- XConfigureEvent* const confEvent = (XConfigureEvent*) &event->xconfigure;
-
- if (confEvent->window == windowH
- && confEvent->above != 0
- && isFrontWindow())
- {
- handleBroughtToFront();
- }
-
- break;
- }
-
- case ReparentNotify:
- {
- parentWindow = 0;
- Window wRoot = 0;
- Window* wChild = 0;
- unsigned int numChildren;
-
- {
- ScopedXLock xlock;
- XQueryTree (display, windowH, &wRoot, &parentWindow, &wChild, &numChildren);
- }
-
- if (parentWindow == windowH || parentWindow == wRoot)
- parentWindow = 0;
-
- updateBounds();
- updateBorderSize();
- handleMovedOrResized();
- break;
- }
-
- case GravityNotify:
- {
- updateBounds();
- updateBorderSize();
- handleMovedOrResized();
- break;
- }
-
- case MapNotify:
- mapped = true;
- handleBroughtToFront();
- break;
-
- case UnmapNotify:
- mapped = false;
- break;
-
- case MappingNotify:
- {
- XMappingEvent* mappingEvent = (XMappingEvent*) &event->xmapping;
-
- if (mappingEvent->request != MappingPointer)
- {
- // Deal with modifier/keyboard mapping
- ScopedXLock xlock;
- XRefreshKeyboardMapping (mappingEvent);
- updateModifierMappings();
- }
-
- break;
- }
-
- case ClientMessage:
- {
- const XClientMessageEvent* const clientMsg = (const XClientMessageEvent*) &event->xclient;
-
- if (clientMsg->message_type == Atoms::Protocols && clientMsg->format == 32)
- {
- const Atom atom = (Atom) clientMsg->data.l[0];
-
- if (atom == Atoms::ProtocolList [Atoms::PING])
- {
- Window root = RootWindow (display, DefaultScreen (display));
-
- event->xclient.window = root;
-
- XSendEvent (display, root, False, NoEventMask, event);
- XFlush (display);
- }
- else if (atom == Atoms::ProtocolList [Atoms::TAKE_FOCUS])
- {
- XWindowAttributes atts;
-
- ScopedXLock xlock;
- if (clientMsg->window != 0
- && XGetWindowAttributes (display, clientMsg->window, &atts))
- {
- if (atts.map_state == IsViewable)
- XSetInputFocus (display, clientMsg->window, RevertToParent, clientMsg->data.l[1]);
- }
- }
- else if (atom == Atoms::ProtocolList [Atoms::DELETE_WINDOW])
- {
- handleUserClosingWindow();
- }
- }
- else if (clientMsg->message_type == Atoms::XdndEnter)
- {
- handleDragAndDropEnter (clientMsg);
- }
- else if (clientMsg->message_type == Atoms::XdndLeave)
- {
- resetDragAndDrop();
- }
- else if (clientMsg->message_type == Atoms::XdndPosition)
- {
- handleDragAndDropPosition (clientMsg);
- }
- else if (clientMsg->message_type == Atoms::XdndDrop)
- {
- handleDragAndDropDrop (clientMsg);
- }
- else if (clientMsg->message_type == Atoms::XdndStatus)
- {
- handleDragAndDropStatus (clientMsg);
- }
- else if (clientMsg->message_type == Atoms::XdndFinished)
- {
- resetDragAndDrop();
- }
-
- break;
- }
-
- case SelectionNotify:
- handleDragAndDropSelection (event);
- break;
-
- case SelectionClear:
- case SelectionRequest:
- break;
-
- default:
- #if JUCE_USE_XSHM
- {
- ScopedXLock xlock;
- if (event->xany.type == XShmGetEventBase (display))
- repainter->notifyPaintCompleted();
- }
- #endif
- break;
- }
- }
-
- void showMouseCursor (Cursor cursor) throw()
- {
- ScopedXLock xlock;
- XDefineCursor (display, windowH, cursor);
- }
-
- //==============================================================================
- void setTaskBarIcon (const Image& image)
- {
- ScopedXLock xlock;
- taskbarImage = image;
-
- Screen* const screen = XDefaultScreenOfDisplay (display);
- const int screenNumber = XScreenNumberOfScreen (screen);
-
- String screenAtom ("_NET_SYSTEM_TRAY_S");
- screenAtom << screenNumber;
- Atom selectionAtom = XInternAtom (display, screenAtom.toUTF8(), false);
-
- XGrabServer (display);
- Window managerWin = XGetSelectionOwner (display, selectionAtom);
-
- if (managerWin != None)
- XSelectInput (display, managerWin, StructureNotifyMask);
-
- XUngrabServer (display);
- XFlush (display);
-
- if (managerWin != None)
- {
- XEvent ev;
- zerostruct (ev);
- ev.xclient.type = ClientMessage;
- ev.xclient.window = managerWin;
- ev.xclient.message_type = XInternAtom (display, "_NET_SYSTEM_TRAY_OPCODE", False);
- ev.xclient.format = 32;
- ev.xclient.data.l[0] = CurrentTime;
- ev.xclient.data.l[1] = 0 /*SYSTEM_TRAY_REQUEST_DOCK*/;
- ev.xclient.data.l[2] = windowH;
- ev.xclient.data.l[3] = 0;
- ev.xclient.data.l[4] = 0;
-
- XSendEvent (display, managerWin, False, NoEventMask, &ev);
- XSync (display, False);
- }
-
- // For older KDE's ...
- long atomData = 1;
- Atom trayAtom = XInternAtom (display, "KWM_DOCKWINDOW", false);
- XChangeProperty (display, windowH, trayAtom, trayAtom, 32, PropModeReplace, (unsigned char*) &atomData, 1);
-
- // For more recent KDE's...
- trayAtom = XInternAtom (display, "_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR", false);
- XChangeProperty (display, windowH, trayAtom, XA_WINDOW, 32, PropModeReplace, (unsigned char*) &windowH, 1);
-
- // a minimum size must be specified for GNOME and Xfce, otherwise the icon is displayed with a width of 1
- XSizeHints* hints = XAllocSizeHints();
- hints->flags = PMinSize;
- hints->min_width = 22;
- hints->min_height = 22;
- XSetWMNormalHints (display, windowH, hints);
- XFree (hints);
- }
-
- const Image& getTaskbarIcon() const throw() { return taskbarImage; }
-
- //==============================================================================
- juce_UseDebuggingNewOperator
-
- bool dontRepaint;
-
- static ModifierKeys currentModifiers;
- static bool isActiveApplication;
-
- private:
- //==============================================================================
- class LinuxRepaintManager : public Timer
- {
- public:
- LinuxRepaintManager (LinuxComponentPeer* const peer_)
- : peer (peer_),
- lastTimeImageUsed (0)
- {
- #if JUCE_USE_XSHM
- shmCompletedDrawing = true;
-
- useARGBImagesForRendering = XSHMHelpers::isShmAvailable();
-
- if (useARGBImagesForRendering)
- {
- ScopedXLock xlock;
- XShmSegmentInfo segmentinfo;
-
- XImage* const testImage
- = XShmCreateImage (display, DefaultVisual (display, DefaultScreen (display)),
- 24, ZPixmap, 0, &segmentinfo, 64, 64);
-
- useARGBImagesForRendering = (testImage->bits_per_pixel == 32);
- XDestroyImage (testImage);
- }
- #endif
- }
-
- ~LinuxRepaintManager()
- {
- }
-
- void timerCallback()
- {
- #if JUCE_USE_XSHM
- if (! shmCompletedDrawing)
- return;
- #endif
- if (! regionsNeedingRepaint.isEmpty())
- {
- stopTimer();
- performAnyPendingRepaintsNow();
- }
- else if (Time::getApproximateMillisecondCounter() > lastTimeImageUsed + 3000)
- {
- stopTimer();
- image = Image::null;
- }
- }
-
- void repaint (const Rectangle<int>& area)
- {
- if (! isTimerRunning())
- startTimer (repaintTimerPeriod);
-
- regionsNeedingRepaint.add (area);
- }
-
- void performAnyPendingRepaintsNow()
- {
- #if JUCE_USE_XSHM
- if (! shmCompletedDrawing)
- {
- startTimer (repaintTimerPeriod);
- return;
- }
- #endif
-
- peer->clearMaskedRegion();
-
- RectangleList originalRepaintRegion (regionsNeedingRepaint);
- regionsNeedingRepaint.clear();
- const Rectangle<int> totalArea (originalRepaintRegion.getBounds());
-
- if (! totalArea.isEmpty())
- {
- if (image.isNull() || image.getWidth() < totalArea.getWidth()
- || image.getHeight() < totalArea.getHeight())
- {
- #if JUCE_USE_XSHM
- image = Image (new XBitmapImage (useARGBImagesForRendering ? Image::ARGB
- : Image::RGB,
- #else
- image = Image (new XBitmapImage (Image::RGB,
- #endif
- (totalArea.getWidth() + 31) & ~31,
- (totalArea.getHeight() + 31) & ~31,
- false, peer->depth, peer->visual));
- }
-
- startTimer (repaintTimerPeriod);
-
- RectangleList adjustedList (originalRepaintRegion);
- adjustedList.offsetAll (-totalArea.getX(), -totalArea.getY());
- LowLevelGraphicsSoftwareRenderer context (image, -totalArea.getX(), -totalArea.getY(), adjustedList);
-
- if (peer->depth == 32)
- {
- RectangleList::Iterator i (originalRepaintRegion);
-
- while (i.next())
- image.clear (*i.getRectangle() - totalArea.getPosition());
- }
-
- peer->handlePaint (context);
-
- if (! peer->maskedRegion.isEmpty())
- originalRepaintRegion.subtract (peer->maskedRegion);
-
- for (RectangleList::Iterator i (originalRepaintRegion); i.next();)
- {
- #if JUCE_USE_XSHM
- shmCompletedDrawing = false;
- #endif
- const Rectangle<int>& r = *i.getRectangle();
-
- static_cast<XBitmapImage*> (image.getSharedImage())
- ->blitToWindow (peer->windowH,
- r.getX(), r.getY(), r.getWidth(), r.getHeight(),
- r.getX() - totalArea.getX(), r.getY() - totalArea.getY());
- }
- }
-
- lastTimeImageUsed = Time::getApproximateMillisecondCounter();
- startTimer (repaintTimerPeriod);
- }
-
- #if JUCE_USE_XSHM
- void notifyPaintCompleted() { shmCompletedDrawing = true; }
- #endif
-
- private:
- enum { repaintTimerPeriod = 1000 / 100 };
-
- LinuxComponentPeer* const peer;
- Image image;
- uint32 lastTimeImageUsed;
- RectangleList regionsNeedingRepaint;
-
- #if JUCE_USE_XSHM
- bool useARGBImagesForRendering, shmCompletedDrawing;
- #endif
- LinuxRepaintManager (const LinuxRepaintManager&);
- LinuxRepaintManager& operator= (const LinuxRepaintManager&);
- };
-
- ScopedPointer <LinuxRepaintManager> repainter;
-
- friend class LinuxRepaintManager;
- Window windowH, parentWindow;
- int wx, wy, ww, wh;
- Image taskbarImage;
- bool fullScreen, mapped;
- Visual* visual;
- int depth;
- BorderSize windowBorder;
-
- struct MotifWmHints
- {
- unsigned long flags;
- unsigned long functions;
- unsigned long decorations;
- long input_mode;
- unsigned long status;
- };
-
- static void updateKeyStates (const int keycode, const bool press) throw()
- {
- const int keybyte = keycode >> 3;
- const int keybit = (1 << (keycode & 7));
-
- if (press)
- Keys::keyStates [keybyte] |= keybit;
- else
- Keys::keyStates [keybyte] &= ~keybit;
- }
-
- static void updateKeyModifiers (const int status) throw()
- {
- int keyMods = 0;
-
- if (status & ShiftMask) keyMods |= ModifierKeys::shiftModifier;
- if (status & ControlMask) keyMods |= ModifierKeys::ctrlModifier;
- if (status & Keys::AltMask) keyMods |= ModifierKeys::altModifier;
-
- currentModifiers = currentModifiers.withOnlyMouseButtons().withFlags (keyMods);
-
- Keys::numLock = ((status & Keys::NumLockMask) != 0);
- Keys::capsLock = ((status & LockMask) != 0);
- }
-
- static bool updateKeyModifiersFromSym (KeySym sym, const bool press) throw()
- {
- int modifier = 0;
- bool isModifier = true;
-
- switch (sym)
- {
- case XK_Shift_L:
- case XK_Shift_R:
- modifier = ModifierKeys::shiftModifier;
- break;
-
- case XK_Control_L:
- case XK_Control_R:
- modifier = ModifierKeys::ctrlModifier;
- break;
-
- case XK_Alt_L:
- case XK_Alt_R:
- modifier = ModifierKeys::altModifier;
- break;
-
- case XK_Num_Lock:
- if (press)
- Keys::numLock = ! Keys::numLock;
-
- break;
-
- case XK_Caps_Lock:
- if (press)
- Keys::capsLock = ! Keys::capsLock;
-
- break;
-
- case XK_Scroll_Lock:
- break;
-
- default:
- isModifier = false;
- break;
- }
-
- if (modifier != 0)
- {
- if (press)
- currentModifiers = currentModifiers.withFlags (modifier);
- else
- currentModifiers = currentModifiers.withoutFlags (modifier);
- }
-
- return isModifier;
- }
-
- // Alt and Num lock are not defined by standard X
- // modifier constants: check what they're mapped to
- static void updateModifierMappings() throw()
- {
- ScopedXLock xlock;
- const int altLeftCode = XKeysymToKeycode (display, XK_Alt_L);
- const int numLockCode = XKeysymToKeycode (display, XK_Num_Lock);
-
- Keys::AltMask = 0;
- Keys::NumLockMask = 0;
-
- XModifierKeymap* mapping = XGetModifierMapping (display);
-
- if (mapping)
- {
- for (int i = 0; i < 8; i++)
- {
- if (mapping->modifiermap [i << 1] == altLeftCode)
- Keys::AltMask = 1 << i;
- else if (mapping->modifiermap [i << 1] == numLockCode)
- Keys::NumLockMask = 1 << i;
- }
-
- XFreeModifiermap (mapping);
- }
- }
-
- //==============================================================================
- void removeWindowDecorations (Window wndH)
- {
- Atom hints = XInternAtom (display, "_MOTIF_WM_HINTS", True);
-
- if (hints != None)
- {
- MotifWmHints motifHints;
- zerostruct (motifHints);
- motifHints.flags = 2; /* MWM_HINTS_DECORATIONS */
- motifHints.decorations = 0;
-
- ScopedXLock xlock;
- XChangeProperty (display, wndH, hints, hints, 32, PropModeReplace,
- (unsigned char*) &motifHints, 4);
- }
-
- hints = XInternAtom (display, "_WIN_HINTS", True);
-
- if (hints != None)
- {
- long gnomeHints = 0;
-
- ScopedXLock xlock;
- XChangeProperty (display, wndH, hints, hints, 32, PropModeReplace,
- (unsigned char*) &gnomeHints, 1);
- }
-
- hints = XInternAtom (display, "KWM_WIN_DECORATION", True);
-
- if (hints != None)
- {
- long kwmHints = 2; /*KDE_tinyDecoration*/
-
- ScopedXLock xlock;
- XChangeProperty (display, wndH, hints, hints, 32, PropModeReplace,
- (unsigned char*) &kwmHints, 1);
- }
- }
-
- void addWindowButtons (Window wndH)
- {
- ScopedXLock xlock;
- Atom hints = XInternAtom (display, "_MOTIF_WM_HINTS", True);
-
- if (hints != None)
- {
- MotifWmHints motifHints;
- zerostruct (motifHints);
-
- motifHints.flags = 1 | 2; /* MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS */
- motifHints.decorations = 2 /* MWM_DECOR_BORDER */ | 8 /* MWM_DECOR_TITLE */ | 16; /* MWM_DECOR_MENU */
-
- motifHints.functions = 4 /* MWM_FUNC_MOVE */;
-
- if ((styleFlags & windowHasCloseButton) != 0)
- motifHints.functions |= 32; /* MWM_FUNC_CLOSE */
-
- if ((styleFlags & windowHasMinimiseButton) != 0)
- {
- motifHints.functions |= 8; /* MWM_FUNC_MINIMIZE */
- motifHints.decorations |= 0x20; /* MWM_DECOR_MINIMIZE */
- }
-
- if ((styleFlags & windowHasMaximiseButton) != 0)
- {
- motifHints.functions |= 0x10; /* MWM_FUNC_MAXIMIZE */
- motifHints.decorations |= 0x40; /* MWM_DECOR_MAXIMIZE */
- }
-
- if ((styleFlags & windowIsResizable) != 0)
- {
- motifHints.functions |= 2; /* MWM_FUNC_RESIZE */
- motifHints.decorations |= 0x4; /* MWM_DECOR_RESIZEH */
- }
-
- XChangeProperty (display, wndH, hints, hints, 32, 0, (unsigned char*) &motifHints, 5);
- }
-
- hints = XInternAtom (display, "_NET_WM_ALLOWED_ACTIONS", True);
-
- if (hints != None)
- {
- int netHints [6];
- int num = 0;
-
- if ((styleFlags & windowIsResizable) != 0)
- netHints [num++] = XInternAtom (display, "_NET_WM_ACTION_RESIZE", True);
-
- if ((styleFlags & windowHasMaximiseButton) != 0)
- netHints [num++] = XInternAtom (display, "_NET_WM_ACTION_FULLSCREEN", True);
-
- if ((styleFlags & windowHasMinimiseButton) != 0)
- netHints [num++] = XInternAtom (display, "_NET_WM_ACTION_MINIMIZE", True);
-
- if ((styleFlags & windowHasCloseButton) != 0)
- netHints [num++] = XInternAtom (display, "_NET_WM_ACTION_CLOSE", True);
-
- XChangeProperty (display, wndH, hints, XA_ATOM, 32, PropModeReplace, (unsigned char*) &netHints, num);
- }
- }
-
- void setWindowType()
- {
- int netHints [2];
- int numHints = 0;
-
- if ((styleFlags & windowIsTemporary) != 0
- || ((styleFlags & windowHasDropShadow) == 0 && Desktop::canUseSemiTransparentWindows()))
- netHints [numHints++] = XInternAtom (display, "_NET_WM_WINDOW_TYPE_COMBO", True);
- else
- netHints [numHints++] = XInternAtom (display, "_NET_WM_WINDOW_TYPE_NORMAL", True);
-
- netHints[numHints++] = XInternAtom (display, "_KDE_NET_WM_WINDOW_TYPE_OVERRIDE", True);
-
- XChangeProperty (display, windowH, Atoms::WindowType, XA_ATOM, 32, PropModeReplace,
- (unsigned char*) &netHints, numHints);
-
- numHints = 0;
-
- if ((styleFlags & windowAppearsOnTaskbar) == 0)
- netHints [numHints++] = XInternAtom (display, "_NET_WM_STATE_SKIP_TASKBAR", True);
-
- if (component->isAlwaysOnTop())
- netHints [numHints++] = XInternAtom (display, "_NET_WM_STATE_ABOVE", True);
-
- if (numHints > 0)
- XChangeProperty (display, windowH, Atoms::WindowState, XA_ATOM, 32, PropModeReplace,
- (unsigned char*) &netHints, numHints);
- }
-
- void createWindow()
- {
- ScopedXLock xlock;
- Atoms::initialiseAtoms();
- resetDragAndDrop();
-
- // Get defaults for various properties
- const int screen = DefaultScreen (display);
- Window root = RootWindow (display, screen);
-
- // Try to obtain a 32-bit visual or fallback to 24 or 16
- visual = Visuals::findVisualFormat ((styleFlags & windowIsSemiTransparent) ? 32 : 24, depth);
-
- if (visual == 0)
- {
- Logger::outputDebugString ("ERROR: System doesn't support 32, 24 or 16 bit RGB display.\n");
- Process::terminate();
- }
-
- // Create and install a colormap suitable fr our visual
- Colormap colormap = XCreateColormap (display, root, visual, AllocNone);
- XInstallColormap (display, colormap);
-
- // Set up the window attributes
- XSetWindowAttributes swa;
- swa.border_pixel = 0;
- swa.background_pixmap = None;
- swa.colormap = colormap;
- swa.event_mask = getAllEventsMask();
-
- windowH = XCreateWindow (display, root,
- 0, 0, 1, 1,
- 0, depth, InputOutput, visual,
- CWBorderPixel | CWColormap | CWBackPixmap | CWEventMask,
- &swa);
-
- XGrabButton (display, AnyButton, AnyModifier, windowH, False,
- ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
- GrabModeAsync, GrabModeAsync, None, None);
-
- // Set the window context to identify the window handle object
- if (XSaveContext (display, (XID) windowH, windowHandleXContext, (XPointer) this))
- {
- // Failed
- jassertfalse;
- Logger::outputDebugString ("Failed to create context information for window.\n");
- XDestroyWindow (display, windowH);
- windowH = 0;
- return;
- }
-
- // Set window manager hints
- XWMHints* wmHints = XAllocWMHints();
- wmHints->flags = InputHint | StateHint;
- wmHints->input = True; // Locally active input model
- wmHints->initial_state = NormalState;
- XSetWMHints (display, windowH, wmHints);
- XFree (wmHints);
-
- // Set the window type
- setWindowType();
-
- // Define decoration
- if ((styleFlags & windowHasTitleBar) == 0)
- removeWindowDecorations (windowH);
- else
- addWindowButtons (windowH);
-
- // Set window name
- setWindowTitle (windowH, getComponent()->getName());
-
- // Associate the PID, allowing to be shut down when something goes wrong
- unsigned long pid = getpid();
- XChangeProperty (display, windowH, Atoms::Pid, XA_CARDINAL, 32, PropModeReplace,
- (unsigned char*) &pid, 1);
-
- // Set window manager protocols
- XChangeProperty (display, windowH, Atoms::Protocols, XA_ATOM, 32, PropModeReplace,
- (unsigned char*) Atoms::ProtocolList, 2);
-
- // Set drag and drop flags
- XChangeProperty (display, windowH, Atoms::XdndTypeList, XA_ATOM, 32, PropModeReplace,
- (const unsigned char*) Atoms::allowedMimeTypes, numElementsInArray (Atoms::allowedMimeTypes));
-
- XChangeProperty (display, windowH, Atoms::XdndActionList, XA_ATOM, 32, PropModeReplace,
- (const unsigned char*) Atoms::allowedActions, numElementsInArray (Atoms::allowedActions));
-
- XChangeProperty (display, windowH, Atoms::XdndActionDescription, XA_STRING, 8, PropModeReplace,
- (const unsigned char*) "", 0);
-
- unsigned long dndVersion = Atoms::DndVersion;
- XChangeProperty (display, windowH, Atoms::XdndAware, XA_ATOM, 32, PropModeReplace,
- (const unsigned char*) &dndVersion, 1);
-
- // Initialise the pointer and keyboard mapping
- // This is not the same as the logical pointer mapping the X server uses:
- // we don't mess with this.
- static bool mappingInitialised = false;
-
- if (! mappingInitialised)
- {
- mappingInitialised = true;
-
- const int numButtons = XGetPointerMapping (display, 0, 0);
-
- if (numButtons == 2)
- {
- pointerMap[0] = Keys::LeftButton;
- pointerMap[1] = Keys::RightButton;
- pointerMap[2] = pointerMap[3] = pointerMap[4] = Keys::NoButton;
- }
- else if (numButtons >= 3)
- {
- pointerMap[0] = Keys::LeftButton;
- pointerMap[1] = Keys::MiddleButton;
- pointerMap[2] = Keys::RightButton;
-
- if (numButtons >= 5)
- {
- pointerMap[3] = Keys::WheelUp;
- pointerMap[4] = Keys::WheelDown;
- }
- }
-
- updateModifierMappings();
- }
- }
-
- void destroyWindow()
- {
- ScopedXLock xlock;
-
- XPointer handlePointer;
- if (! XFindContext (display, (XID) windowH, windowHandleXContext, &handlePointer))
- XDeleteContext (display, (XID) windowH, windowHandleXContext);
-
- XDestroyWindow (display, windowH);
-
- // Wait for it to complete and then remove any events for this
- // window from the event queue.
- XSync (display, false);
-
- XEvent event;
- while (XCheckWindowEvent (display, windowH, getAllEventsMask(), &event) == True)
- {}
- }
-
- static int getAllEventsMask() throw()
- {
- return NoEventMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask
- | EnterWindowMask | LeaveWindowMask | PointerMotionMask | KeymapStateMask
- | ExposureMask | StructureNotifyMask | FocusChangeMask;
- }
-
- static int64 getEventTime (::Time t)
- {
- static int64 eventTimeOffset = 0x12345678;
- const int64 thisMessageTime = t;
-
- if (eventTimeOffset == 0x12345678)
- eventTimeOffset = Time::currentTimeMillis() - thisMessageTime;
-
- return eventTimeOffset + thisMessageTime;
- }
-
- static void setWindowTitle (Window xwin, const String& title)
- {
- XTextProperty nameProperty;
- char* strings[] = { const_cast <char*> (title.toUTF8()) };
- ScopedXLock xlock;
-
- if (XStringListToTextProperty (strings, 1, &nameProperty))
- {
- XSetWMName (display, xwin, &nameProperty);
- XSetWMIconName (display, xwin, &nameProperty);
-
- XFree (nameProperty.value);
- }
- }
-
- void updateBorderSize()
- {
- if ((styleFlags & windowHasTitleBar) == 0)
- {
- windowBorder = BorderSize (0);
- }
- else if (windowBorder.getTopAndBottom() == 0 && windowBorder.getLeftAndRight() == 0)
- {
- ScopedXLock xlock;
- Atom hints = XInternAtom (display, "_NET_FRAME_EXTENTS", True);
-
- if (hints != None)
- {
- unsigned char* data = 0;
- unsigned long nitems, bytesLeft;
- Atom actualType;
- int actualFormat;
-
- if (XGetWindowProperty (display, windowH, hints, 0, 4, False,
- XA_CARDINAL, &actualType, &actualFormat, &nitems, &bytesLeft,
- &data) == Success)
- {
- const unsigned long* const sizes = (const unsigned long*) data;
-
- if (actualFormat == 32)
- windowBorder = BorderSize ((int) sizes[2], (int) sizes[0],
- (int) sizes[3], (int) sizes[1]);
-
- XFree (data);
- }
- }
- }
- }
-
- void updateBounds()
- {
- jassert (windowH != 0);
- if (windowH != 0)
- {
- Window root, child;
- unsigned int bw, depth;
- ScopedXLock xlock;
-
- if (! XGetGeometry (display, (::Drawable) windowH, &root,
- &wx, &wy, (unsigned int*) &ww, (unsigned int*) &wh,
- &bw, &depth))
- {
- wx = wy = ww = wh = 0;
- }
- else if (! XTranslateCoordinates (display, windowH, root, 0, 0, &wx, &wy, &child))
- {
- wx = wy = 0;
- }
- }
- }
-
- //==============================================================================
- void resetDragAndDrop()
- {
- dragAndDropFiles.clear();
- lastDropPos = Point<int> (-1, -1);
- dragAndDropCurrentMimeType = 0;
- dragAndDropSourceWindow = 0;
- srcMimeTypeAtomList.clear();
- }
-
- void sendDragAndDropMessage (XClientMessageEvent& msg)
- {
- msg.type = ClientMessage;
- msg.display = display;
- msg.window = dragAndDropSourceWindow;
- msg.format = 32;
- msg.data.l[0] = windowH;
-
- ScopedXLock xlock;
- XSendEvent (display, dragAndDropSourceWindow, False, 0, (XEvent*) &msg);
- }
-
- void sendDragAndDropStatus (const bool acceptDrop, Atom dropAction)
- {
- XClientMessageEvent msg;
- zerostruct (msg);
- msg.message_type = Atoms::XdndStatus;
- msg.data.l[1] = (acceptDrop ? 1 : 0) | 2; // 2 indicates that we want to receive position messages
- msg.data.l[4] = dropAction;
-
- sendDragAndDropMessage (msg);
- }
-
- void sendDragAndDropLeave()
- {
- XClientMessageEvent msg;
- zerostruct (msg);
- msg.message_type = Atoms::XdndLeave;
- sendDragAndDropMessage (msg);
- }
-
- void sendDragAndDropFinish()
- {
- XClientMessageEvent msg;
- zerostruct (msg);
- msg.message_type = Atoms::XdndFinished;
- sendDragAndDropMessage (msg);
- }
-
- void handleDragAndDropStatus (const XClientMessageEvent* const clientMsg)
- {
- if ((clientMsg->data.l[1] & 1) == 0)
- {
- sendDragAndDropLeave();
-
- if (dragAndDropFiles.size() > 0)
- handleFileDragExit (dragAndDropFiles);
-
- dragAndDropFiles.clear();
- }
- }
-
- void handleDragAndDropPosition (const XClientMessageEvent* const clientMsg)
- {
- if (dragAndDropSourceWindow == 0)
- return;
-
- dragAndDropSourceWindow = clientMsg->data.l[0];
-
- Point<int> dropPos ((int) clientMsg->data.l[2] >> 16,
- (int) clientMsg->data.l[2] & 0xffff);
- dropPos -= getScreenPosition();
-
- if (lastDropPos != dropPos)
- {
- lastDropPos = dropPos;
- dragAndDropTimestamp = clientMsg->data.l[3];
-
- Atom targetAction = Atoms::XdndActionCopy;
-
- for (int i = numElementsInArray (Atoms::allowedActions); --i >= 0;)
- {
- if ((Atom) clientMsg->data.l[4] == Atoms::allowedActions[i])
- {
- targetAction = Atoms::allowedActions[i];
- break;
- }
- }
-
- sendDragAndDropStatus (true, targetAction);
-
- if (dragAndDropFiles.size() == 0)
- updateDraggedFileList (clientMsg);
-
- if (dragAndDropFiles.size() > 0)
- handleFileDragMove (dragAndDropFiles, dropPos);
- }
- }
-
- void handleDragAndDropDrop (const XClientMessageEvent* const clientMsg)
- {
- if (dragAndDropFiles.size() == 0)
- updateDraggedFileList (clientMsg);
-
- const StringArray files (dragAndDropFiles);
- const Point<int> lastPos (lastDropPos);
-
- sendDragAndDropFinish();
- resetDragAndDrop();
-
- if (files.size() > 0)
- handleFileDragDrop (files, lastPos);
- }
-
- void handleDragAndDropEnter (const XClientMessageEvent* const clientMsg)
- {
- dragAndDropFiles.clear();
- srcMimeTypeAtomList.clear();
-
- dragAndDropCurrentMimeType = 0;
- const unsigned long dndCurrentVersion = static_cast <unsigned long> (clientMsg->data.l[1] & 0xff000000) >> 24;
-
- if (dndCurrentVersion < 3 || dndCurrentVersion > Atoms::DndVersion)
- {
- dragAndDropSourceWindow = 0;
- return;
- }
-
- dragAndDropSourceWindow = clientMsg->data.l[0];
-
- if ((clientMsg->data.l[1] & 1) != 0)
- {
- Atom actual;
- int format;
- unsigned long count = 0, remaining = 0;
- unsigned char* data = 0;
-
- ScopedXLock xlock;
- XGetWindowProperty (display, dragAndDropSourceWindow, Atoms::XdndTypeList,
- 0, 0x8000000L, False, XA_ATOM, &actual, &format,
- &count, &remaining, &data);
-
- if (data != 0)
- {
- if (actual == XA_ATOM && format == 32 && count != 0)
- {
- const unsigned long* const types = (const unsigned long*) data;
-
- for (unsigned int i = 0; i < count; ++i)
- if (types[i] != None)
- srcMimeTypeAtomList.add (types[i]);
- }
-
- XFree (data);
- }
- }
-
- if (srcMimeTypeAtomList.size() == 0)
- {
- for (int i = 2; i < 5; ++i)
- if (clientMsg->data.l[i] != None)
- srcMimeTypeAtomList.add (clientMsg->data.l[i]);
-
- if (srcMimeTypeAtomList.size() == 0)
- {
- dragAndDropSourceWindow = 0;
- return;
- }
- }
-
- for (int i = 0; i < srcMimeTypeAtomList.size() && dragAndDropCurrentMimeType == 0; ++i)
- for (int j = 0; j < numElementsInArray (Atoms::allowedMimeTypes); ++j)
- if (srcMimeTypeAtomList[i] == Atoms::allowedMimeTypes[j])
- dragAndDropCurrentMimeType = Atoms::allowedMimeTypes[j];
-
- handleDragAndDropPosition (clientMsg);
- }
-
- void handleDragAndDropSelection (const XEvent* const evt)
- {
- dragAndDropFiles.clear();
-
- if (evt->xselection.property != 0)
- {
- StringArray lines;
-
- {
- MemoryBlock dropData;
-
- for (;;)
- {
- Atom actual;
- uint8* data = 0;
- unsigned long count = 0, remaining = 0;
- int format = 0;
- ScopedXLock xlock;
-
- if (XGetWindowProperty (display, evt->xany.window, evt->xselection.property,
- dropData.getSize() / 4, 65536, 1, AnyPropertyType, &actual,
- &format, &count, &remaining, &data) == Success)
- {
- dropData.append (data, count * format / 8);
- XFree (data);
-
- if (remaining == 0)
- break;
- }
- else
- {
- XFree (data);
- break;
- }
- }
-
- lines.addLines (dropData.toString());
- }
-
- for (int i = 0; i < lines.size(); ++i)
- dragAndDropFiles.add (URL::removeEscapeChars (lines[i].fromFirstOccurrenceOf ("file://", false, true)));
-
- dragAndDropFiles.trim();
- dragAndDropFiles.removeEmptyStrings();
- }
- }
-
- void updateDraggedFileList (const XClientMessageEvent* const clientMsg)
- {
- dragAndDropFiles.clear();
-
- if (dragAndDropSourceWindow != None
- && dragAndDropCurrentMimeType != 0)
- {
- dragAndDropTimestamp = clientMsg->data.l[2];
-
- ScopedXLock xlock;
- XConvertSelection (display,
- Atoms::XdndSelection,
- dragAndDropCurrentMimeType,
- XInternAtom (display, "JXSelectionWindowProperty", 0),
- windowH,
- dragAndDropTimestamp);
- }
- }
-
- StringArray dragAndDropFiles;
- int dragAndDropTimestamp;
- Point<int> lastDropPos;
-
- Atom dragAndDropCurrentMimeType;
- Window dragAndDropSourceWindow;
-
- Array <Atom> srcMimeTypeAtomList;
-
- static int pointerMap[5];
- static Point<int> lastMousePos;
-
- static void clearLastMousePos() throw()
- {
- lastMousePos = Point<int> (0x100000, 0x100000);
- }
- };
-
- ModifierKeys LinuxComponentPeer::currentModifiers;
- bool LinuxComponentPeer::isActiveApplication = false;
- int LinuxComponentPeer::pointerMap[5];
- Point<int> LinuxComponentPeer::lastMousePos;
-
- //==============================================================================
- bool Process::isForegroundProcess()
- {
- return LinuxComponentPeer::isActiveApplication;
- }
-
- //==============================================================================
- void ModifierKeys::updateCurrentModifiers() throw()
- {
- currentModifiers = LinuxComponentPeer::currentModifiers;
- }
-
- const ModifierKeys ModifierKeys::getCurrentModifiersRealtime() throw()
- {
- Window root, child;
- int x, y, winx, winy;
- unsigned int mask;
- int mouseMods = 0;
-
- ScopedXLock xlock;
-
- if (XQueryPointer (display, RootWindow (display, DefaultScreen (display)),
- &root, &child, &x, &y, &winx, &winy, &mask) != False)
- {
- if ((mask & Button1Mask) != 0) mouseMods |= ModifierKeys::leftButtonModifier;
- if ((mask & Button2Mask) != 0) mouseMods |= ModifierKeys::middleButtonModifier;
- if ((mask & Button3Mask) != 0) mouseMods |= ModifierKeys::rightButtonModifier;
- }
-
- LinuxComponentPeer::currentModifiers = LinuxComponentPeer::currentModifiers.withoutMouseButtons().withFlags (mouseMods);
- return LinuxComponentPeer::currentModifiers;
- }
-
-
- //==============================================================================
- void juce_setKioskComponent (Component* kioskModeComponent, bool enableOrDisable, bool allowMenusAndBars)
- {
- if (enableOrDisable)
- kioskModeComponent->setBounds (Desktop::getInstance().getMainMonitorArea (false));
- }
-
- //==============================================================================
- ComponentPeer* Component::createNewPeer (int styleFlags, void* /*nativeWindowToAttachTo*/)
- {
- return new LinuxComponentPeer (this, styleFlags);
- }
-
-
- //==============================================================================
- // (this callback is hooked up in the messaging code)
- void juce_windowMessageReceive (XEvent* event)
- {
- if (event->xany.window != None)
- {
- LinuxComponentPeer* const peer = LinuxComponentPeer::getPeerFor (event->xany.window);
-
- if (ComponentPeer::isValidPeer (peer))
- peer->handleWindowMessage (event);
- }
- else
- {
- switch (event->xany.type)
- {
- case KeymapNotify:
- {
- const XKeymapEvent* const keymapEvent = (const XKeymapEvent*) &event->xkeymap;
- memcpy (Keys::keyStates, keymapEvent->key_vector, 32);
- break;
- }
-
- default:
- break;
- }
- }
- }
-
- //==============================================================================
- void juce_updateMultiMonitorInfo (Array <Rectangle<int> >& monitorCoords, const bool /*clipToWorkArea*/)
- {
- if (display == 0)
- return;
-
- #if JUCE_USE_XINERAMA
- int major_opcode, first_event, first_error;
-
- ScopedXLock xlock;
- if (XQueryExtension (display, "XINERAMA", &major_opcode, &first_event, &first_error))
- {
- typedef Bool (*tXineramaIsActive) (Display*);
- typedef XineramaScreenInfo* (*tXineramaQueryScreens) (Display*, int*);
-
- static tXineramaIsActive xXineramaIsActive = 0;
- static tXineramaQueryScreens xXineramaQueryScreens = 0;
-
- if (xXineramaIsActive == 0 || xXineramaQueryScreens == 0)
- {
- void* h = dlopen ("libXinerama.so", RTLD_GLOBAL | RTLD_NOW);
-
- if (h == 0)
- h = dlopen ("libXinerama.so.1", RTLD_GLOBAL | RTLD_NOW);
-
- if (h != 0)
- {
- xXineramaIsActive = (tXineramaIsActive) dlsym (h, "XineramaIsActive");
- xXineramaQueryScreens = (tXineramaQueryScreens) dlsym (h, "XineramaQueryScreens");
- }
- }
-
- if (xXineramaIsActive != 0
- && xXineramaQueryScreens != 0
- && xXineramaIsActive (display))
- {
- int numMonitors = 0;
- XineramaScreenInfo* const screens = xXineramaQueryScreens (display, &numMonitors);
-
- if (screens != 0)
- {
- for (int i = numMonitors; --i >= 0;)
- {
- int index = screens[i].screen_number;
-
- if (index >= 0)
- {
- while (monitorCoords.size() < index)
- monitorCoords.add (Rectangle<int>());
-
- monitorCoords.set (index, Rectangle<int> (screens[i].x_org,
- screens[i].y_org,
- screens[i].width,
- screens[i].height));
- }
- }
-
- XFree (screens);
- }
- }
- }
-
- if (monitorCoords.size() == 0)
- #endif
- {
- Atom hints = XInternAtom (display, "_NET_WORKAREA", True);
-
- if (hints != None)
- {
- const int numMonitors = ScreenCount (display);
-
- for (int i = 0; i < numMonitors; ++i)
- {
- Window root = RootWindow (display, i);
-
- unsigned long nitems, bytesLeft;
- Atom actualType;
- int actualFormat;
- unsigned char* data = 0;
-
- if (XGetWindowProperty (display, root, hints, 0, 4, False,
- XA_CARDINAL, &actualType, &actualFormat, &nitems, &bytesLeft,
- &data) == Success)
- {
- const long* const position = (const long*) data;
-
- if (actualType == XA_CARDINAL && actualFormat == 32 && nitems == 4)
- monitorCoords.add (Rectangle<int> (position[0], position[1],
- position[2], position[3]));
-
- XFree (data);
- }
- }
- }
-
- if (monitorCoords.size() == 0)
- {
- monitorCoords.add (Rectangle<int> (DisplayWidth (display, DefaultScreen (display)),
- DisplayHeight (display, DefaultScreen (display))));
- }
- }
- }
-
- //==============================================================================
- void Desktop::createMouseInputSources()
- {
- mouseSources.add (new MouseInputSource (0, true));
- }
-
- bool Desktop::canUseSemiTransparentWindows() throw()
- {
- int matchedDepth = 0;
- const int desiredDepth = 32;
-
- return Visuals::findVisualFormat (desiredDepth, matchedDepth) != 0
- && (matchedDepth == desiredDepth);
- }
-
- const Point<int> Desktop::getMousePosition()
- {
- Window root, child;
- int x, y, winx, winy;
- unsigned int mask;
-
- ScopedXLock xlock;
-
- if (XQueryPointer (display,
- RootWindow (display, DefaultScreen (display)),
- &root, &child,
- &x, &y, &winx, &winy, &mask) == False)
- {
- // Pointer not on the default screen
- x = y = -1;
- }
-
- return Point<int> (x, y);
- }
-
- void Desktop::setMousePosition (const Point<int>& newPosition)
- {
- ScopedXLock xlock;
- Window root = RootWindow (display, DefaultScreen (display));
- XWarpPointer (display, None, root, 0, 0, 0, 0, newPosition.getX(), newPosition.getY());
- }
-
- Desktop::DisplayOrientation Desktop::getCurrentOrientation() const
- {
- return upright;
- }
-
- //==============================================================================
- static bool screenSaverAllowed = true;
-
- void Desktop::setScreenSaverEnabled (const bool isEnabled)
- {
- if (screenSaverAllowed != isEnabled)
- {
- screenSaverAllowed = isEnabled;
-
- typedef void (*tXScreenSaverSuspend) (Display*, Bool);
- static tXScreenSaverSuspend xScreenSaverSuspend = 0;
-
- if (xScreenSaverSuspend == 0)
- {
- void* h = dlopen ("libXss.so", RTLD_GLOBAL | RTLD_NOW);
-
- if (h != 0)
- xScreenSaverSuspend = (tXScreenSaverSuspend) dlsym (h, "XScreenSaverSuspend");
- }
-
- ScopedXLock xlock;
- if (xScreenSaverSuspend != 0)
- xScreenSaverSuspend (display, ! isEnabled);
- }
- }
-
- bool Desktop::isScreenSaverEnabled()
- {
- return screenSaverAllowed;
- }
-
- //==============================================================================
- void* MouseCursor::createMouseCursorFromImage (const Image& image, int hotspotX, int hotspotY)
- {
- ScopedXLock xlock;
- const unsigned int imageW = image.getWidth();
- const unsigned int imageH = image.getHeight();
-
- #if JUCE_USE_XCURSOR
- {
- typedef XcursorBool (*tXcursorSupportsARGB) (Display*);
- typedef XcursorImage* (*tXcursorImageCreate) (int, int);
- typedef void (*tXcursorImageDestroy) (XcursorImage*);
- typedef Cursor (*tXcursorImageLoadCursor) (Display*, const XcursorImage*);
-
- static tXcursorSupportsARGB xXcursorSupportsARGB = 0;
- static tXcursorImageCreate xXcursorImageCreate = 0;
- static tXcursorImageDestroy xXcursorImageDestroy = 0;
- static tXcursorImageLoadCursor xXcursorImageLoadCursor = 0;
- static bool hasBeenLoaded = false;
-
- if (! hasBeenLoaded)
- {
- hasBeenLoaded = true;
- void* h = dlopen ("libXcursor.so", RTLD_GLOBAL | RTLD_NOW);
-
- if (h != 0)
- {
- xXcursorSupportsARGB = (tXcursorSupportsARGB) dlsym (h, "XcursorSupportsARGB");
- xXcursorImageCreate = (tXcursorImageCreate) dlsym (h, "XcursorImageCreate");
- xXcursorImageLoadCursor = (tXcursorImageLoadCursor) dlsym (h, "XcursorImageLoadCursor");
- xXcursorImageDestroy = (tXcursorImageDestroy) dlsym (h, "XcursorImageDestroy");
-
- if (xXcursorSupportsARGB == 0 || xXcursorImageCreate == 0
- || xXcursorImageLoadCursor == 0 || xXcursorImageDestroy == 0
- || ! xXcursorSupportsARGB (display))
- xXcursorSupportsARGB = 0;
- }
- }
-
- if (xXcursorSupportsARGB != 0)
- {
- XcursorImage* xcImage = xXcursorImageCreate (imageW, imageH);
-
- if (xcImage != 0)
- {
- xcImage->xhot = hotspotX;
- xcImage->yhot = hotspotY;
- XcursorPixel* dest = xcImage->pixels;
-
- for (int y = 0; y < (int) imageH; ++y)
- for (int x = 0; x < (int) imageW; ++x)
- *dest++ = image.getPixelAt (x, y).getARGB();
-
- void* result = (void*) xXcursorImageLoadCursor (display, xcImage);
- xXcursorImageDestroy (xcImage);
-
- if (result != 0)
- return result;
- }
- }
- }
- #endif
-
- Window root = RootWindow (display, DefaultScreen (display));
- unsigned int cursorW, cursorH;
- if (! XQueryBestCursor (display, root, imageW, imageH, &cursorW, &cursorH))
- return 0;
-
- Image im (Image::ARGB, cursorW, cursorH, true);
-
- {
- Graphics g (im);
-
- if (imageW > cursorW || imageH > cursorH)
- {
- hotspotX = (hotspotX * cursorW) / imageW;
- hotspotY = (hotspotY * cursorH) / imageH;
-
- g.drawImageWithin (image, 0, 0, imageW, imageH,
- RectanglePlacement::xLeft | RectanglePlacement::yTop | RectanglePlacement::onlyReduceInSize,
- false);
- }
- else
- {
- g.drawImageAt (image, 0, 0);
- }
- }
-
- const int stride = (cursorW + 7) >> 3;
- HeapBlock <char> maskPlane, sourcePlane;
- maskPlane.calloc (stride * cursorH);
- sourcePlane.calloc (stride * cursorH);
-
- const bool msbfirst = (BitmapBitOrder (display) == MSBFirst);
-
- for (int y = cursorH; --y >= 0;)
- {
- for (int x = cursorW; --x >= 0;)
- {
- const char mask = (char) (1 << (msbfirst ? (7 - (x & 7)) : (x & 7)));
- const int offset = y * stride + (x >> 3);
-
- const Colour c (im.getPixelAt (x, y));
-
- if (c.getAlpha() >= 128)
- maskPlane[offset] |= mask;
-
- if (c.getBrightness() >= 0.5f)
- sourcePlane[offset] |= mask;
- }
- }
-
- Pixmap sourcePixmap = XCreatePixmapFromBitmapData (display, root, sourcePlane.getData(), cursorW, cursorH, 0xffff, 0, 1);
- Pixmap maskPixmap = XCreatePixmapFromBitmapData (display, root, maskPlane.getData(), cursorW, cursorH, 0xffff, 0, 1);
-
- XColor white, black;
- black.red = black.green = black.blue = 0;
- white.red = white.green = white.blue = 0xffff;
-
- void* result = (void*) XCreatePixmapCursor (display, sourcePixmap, maskPixmap, &white, &black, hotspotX, hotspotY);
-
- XFreePixmap (display, sourcePixmap);
- XFreePixmap (display, maskPixmap);
-
- return result;
- }
-
- void MouseCursor::deleteMouseCursor (void* const cursorHandle, const bool)
- {
- ScopedXLock xlock;
- if (cursorHandle != 0)
- XFreeCursor (display, (Cursor) cursorHandle);
- }
-
- void* MouseCursor::createStandardMouseCursor (MouseCursor::StandardCursorType type)
- {
- unsigned int shape;
-
- switch (type)
- {
- case NormalCursor: return None; // Use parent cursor
- case NoCursor: return createMouseCursorFromImage (Image (Image::ARGB, 16, 16, true), 0, 0);
-
- case WaitCursor: shape = XC_watch; break;
- case IBeamCursor: shape = XC_xterm; break;
- case PointingHandCursor: shape = XC_hand2; break;
- case LeftRightResizeCursor: shape = XC_sb_h_double_arrow; break;
- case UpDownResizeCursor: shape = XC_sb_v_double_arrow; break;
- case UpDownLeftRightResizeCursor: shape = XC_fleur; break;
- case TopEdgeResizeCursor: shape = XC_top_side; break;
- case BottomEdgeResizeCursor: shape = XC_bottom_side; break;
- case LeftEdgeResizeCursor: shape = XC_left_side; break;
- case RightEdgeResizeCursor: shape = XC_right_side; break;
- case TopLeftCornerResizeCursor: shape = XC_top_left_corner; break;
- case TopRightCornerResizeCursor: shape = XC_top_right_corner; break;
- case BottomLeftCornerResizeCursor: shape = XC_bottom_left_corner; break;
- case BottomRightCornerResizeCursor: shape = XC_bottom_right_corner; break;
- case CrosshairCursor: shape = XC_crosshair; break;
-
- case DraggingHandCursor:
- {
- static unsigned char dragHandData[] = { 71,73,70,56,57,97,16,0,16,0,145,2,0,0,0,0,255,255,255,0,
- 0,0,0,0,0,33,249,4,1,0,0,2,0,44,0,0,0,0,16,0, 16,0,0,2,52,148,47,0,200,185,16,130,90,12,74,139,107,84,123,39,
- 132,117,151,116,132,146,248,60,209,138,98,22,203,114,34,236,37,52,77,217, 247,154,191,119,110,240,193,128,193,95,163,56,60,234,98,135,2,0,59 };
- const int dragHandDataSize = 99;
-
- return createMouseCursorFromImage (ImageFileFormat::loadFrom (dragHandData, dragHandDataSize), 8, 7);
- }
-
- case CopyingCursor:
- {
- static unsigned char copyCursorData[] = { 71,73,70,56,57,97,21,0,21,0,145,0,0,0,0,0,255,255,255,0,
- 128,128,255,255,255,33,249,4,1,0,0,3,0,44,0,0,0,0,21,0, 21,0,0,2,72,4,134,169,171,16,199,98,11,79,90,71,161,93,56,111,
- 78,133,218,215,137,31,82,154,100,200,86,91,202,142,12,108,212,87,235,174, 15,54,214,126,237,226,37,96,59,141,16,37,18,201,142,157,230,204,51,112,
- 252,114,147,74,83,5,50,68,147,208,217,16,71,149,252,124,5,0,59,0,0 };
- const int copyCursorSize = 119;
-
- return createMouseCursorFromImage (ImageFileFormat::loadFrom (copyCursorData, copyCursorSize), 1, 3);
- }
-
- default:
- jassertfalse;
- return None;
- }
-
- ScopedXLock xlock;
- return (void*) XCreateFontCursor (display, shape);
- }
-
- void MouseCursor::showInWindow (ComponentPeer* peer) const
- {
- LinuxComponentPeer* const lp = dynamic_cast <LinuxComponentPeer*> (peer);
-
- if (lp != 0)
- lp->showMouseCursor ((Cursor) getHandle());
- }
-
- void MouseCursor::showInAllWindows() const
- {
- for (int i = ComponentPeer::getNumPeers(); --i >= 0;)
- showInWindow (ComponentPeer::getPeer (i));
- }
-
- //==============================================================================
- const Image juce_createIconForFile (const File& file)
- {
- return Image::null;
- }
-
- Image::SharedImage* Image::SharedImage::createNativeImage (PixelFormat format, int width, int height, bool clearImage)
- {
- return createSoftwareImage (format, width, height, clearImage);
- }
-
-
- //==============================================================================
- #if JUCE_OPENGL
-
-
- //==============================================================================
- class WindowedGLContext : public OpenGLContext
- {
- public:
- WindowedGLContext (Component* const component,
- const OpenGLPixelFormat& pixelFormat_,
- GLXContext sharedContext)
- : renderContext (0),
- embeddedWindow (0),
- pixelFormat (pixelFormat_),
- swapInterval (0)
- {
- jassert (component != 0);
- LinuxComponentPeer* const peer = dynamic_cast <LinuxComponentPeer*> (component->getTopLevelComponent()->getPeer());
- if (peer == 0)
- return;
-
- ScopedXLock xlock;
- XSync (display, False);
-
- GLint attribs [64];
- int n = 0;
- attribs[n++] = GLX_RGBA;
- attribs[n++] = GLX_DOUBLEBUFFER;
- attribs[n++] = GLX_RED_SIZE;
- attribs[n++] = pixelFormat.redBits;
- attribs[n++] = GLX_GREEN_SIZE;
- attribs[n++] = pixelFormat.greenBits;
- attribs[n++] = GLX_BLUE_SIZE;
- attribs[n++] = pixelFormat.blueBits;
- attribs[n++] = GLX_ALPHA_SIZE;
- attribs[n++] = pixelFormat.alphaBits;
- attribs[n++] = GLX_DEPTH_SIZE;
- attribs[n++] = pixelFormat.depthBufferBits;
- attribs[n++] = GLX_STENCIL_SIZE;
- attribs[n++] = pixelFormat.stencilBufferBits;
- attribs[n++] = GLX_ACCUM_RED_SIZE;
- attribs[n++] = pixelFormat.accumulationBufferRedBits;
- attribs[n++] = GLX_ACCUM_GREEN_SIZE;
- attribs[n++] = pixelFormat.accumulationBufferGreenBits;
- attribs[n++] = GLX_ACCUM_BLUE_SIZE;
- attribs[n++] = pixelFormat.accumulationBufferBlueBits;
- attribs[n++] = GLX_ACCUM_ALPHA_SIZE;
- attribs[n++] = pixelFormat.accumulationBufferAlphaBits;
-
- // xxx not sure how to do fullSceneAntiAliasingNumSamples on linux..
-
- attribs[n++] = None;
-
- XVisualInfo* const bestVisual = glXChooseVisual (display, DefaultScreen (display), attribs);
-
- if (bestVisual == 0)
- return;
-
- renderContext = glXCreateContext (display, bestVisual, sharedContext, GL_TRUE);
-
- Window windowH = (Window) peer->getNativeHandle();
-
- Colormap colourMap = XCreateColormap (display, windowH, bestVisual->visual, AllocNone);
- XSetWindowAttributes swa;
- swa.colormap = colourMap;
- swa.border_pixel = 0;
- swa.event_mask = ExposureMask | StructureNotifyMask;
-
- embeddedWindow = XCreateWindow (display, windowH,
- 0, 0, 1, 1, 0,
- bestVisual->depth,
- InputOutput,
- bestVisual->visual,
- CWBorderPixel | CWColormap | CWEventMask,
- &swa);
-
- XSaveContext (display, (XID) embeddedWindow, windowHandleXContext, (XPointer) peer);
-
- XMapWindow (display, embeddedWindow);
- XFreeColormap (display, colourMap);
-
- XFree (bestVisual);
- XSync (display, False);
- }
-
- ~WindowedGLContext()
- {
- ScopedXLock xlock;
- deleteContext();
-
- XUnmapWindow (display, embeddedWindow);
- XDestroyWindow (display, embeddedWindow);
- }
-
- void deleteContext()
- {
- makeInactive();
-
- if (renderContext != 0)
- {
- ScopedXLock xlock;
- glXDestroyContext (display, renderContext);
- renderContext = 0;
- }
- }
-
- bool makeActive() const throw()
- {
- jassert (renderContext != 0);
-
- ScopedXLock xlock;
- return glXMakeCurrent (display, embeddedWindow, renderContext)
- && XSync (display, False);
- }
-
- bool makeInactive() const throw()
- {
- ScopedXLock xlock;
- return (! isActive()) || glXMakeCurrent (display, None, 0);
- }
-
- bool isActive() const throw()
- {
- ScopedXLock xlock;
- return glXGetCurrentContext() == renderContext;
- }
-
- const OpenGLPixelFormat getPixelFormat() const
- {
- return pixelFormat;
- }
-
- void* getRawContext() const throw()
- {
- return renderContext;
- }
-
- void updateWindowPosition (int x, int y, int w, int h, int)
- {
- ScopedXLock xlock;
- XMoveResizeWindow (display, embeddedWindow,
- x, y, jmax (1, w), jmax (1, h));
- }
-
- void swapBuffers()
- {
- ScopedXLock xlock;
- glXSwapBuffers (display, embeddedWindow);
- }
-
- bool setSwapInterval (const int numFramesPerSwap)
- {
- static PFNGLXSWAPINTERVALSGIPROC GLXSwapIntervalSGI = (PFNGLXSWAPINTERVALSGIPROC) glXGetProcAddress ((const GLubyte*) "glXSwapIntervalSGI");
-
- if (GLXSwapIntervalSGI != 0)
- {
- swapInterval = numFramesPerSwap;
- GLXSwapIntervalSGI (numFramesPerSwap);
- return true;
- }
-
- return false;
- }
-
- int getSwapInterval() const
- {
- return swapInterval;
- }
-
- void repaint()
- {
- }
-
- //==============================================================================
- juce_UseDebuggingNewOperator
-
- GLXContext renderContext;
-
- private:
- Window embeddedWindow;
- OpenGLPixelFormat pixelFormat;
- int swapInterval;
-
- //==============================================================================
- WindowedGLContext (const WindowedGLContext&);
- WindowedGLContext& operator= (const WindowedGLContext&);
- };
-
- //==============================================================================
- OpenGLContext* OpenGLComponent::createContext()
- {
- ScopedPointer<WindowedGLContext> c (new WindowedGLContext (this, preferredPixelFormat,
- contextToShareListsWith != 0 ? (GLXContext) contextToShareListsWith->getRawContext() : 0));
-
- return (c->renderContext != 0) ? c.release() : 0;
- }
-
- void juce_glViewport (const int w, const int h)
- {
- glViewport (0, 0, w, h);
- }
-
- void OpenGLPixelFormat::getAvailablePixelFormats (Component* component,
- OwnedArray <OpenGLPixelFormat>& results)
- {
- results.add (new OpenGLPixelFormat()); // xxx
- }
-
- #endif
-
-
- //==============================================================================
- bool DragAndDropContainer::performExternalDragDropOfFiles (const StringArray& files, const bool canMoveFiles)
- {
- jassertfalse; // not implemented!
- return false;
- }
-
- bool DragAndDropContainer::performExternalDragDropOfText (const String& text)
- {
- jassertfalse; // not implemented!
- return false;
- }
-
- //==============================================================================
- void SystemTrayIconComponent::setIconImage (const Image& newImage)
- {
- if (! isOnDesktop ())
- addToDesktop (0);
-
- LinuxComponentPeer* const wp = dynamic_cast <LinuxComponentPeer*> (getPeer());
-
- if (wp != 0)
- {
- wp->setTaskBarIcon (newImage);
-
- setVisible (true);
- toFront (false);
- repaint();
- }
- }
-
- void SystemTrayIconComponent::paint (Graphics& g)
- {
- LinuxComponentPeer* const wp = dynamic_cast <LinuxComponentPeer*> (getPeer());
-
- if (wp != 0)
- {
- g.drawImageWithin (wp->getTaskbarIcon(), 0, 0, getWidth(), getHeight(),
- RectanglePlacement::xLeft | RectanglePlacement::yTop | RectanglePlacement::onlyReduceInSize,
- false);
- }
- }
-
- void SystemTrayIconComponent::setIconTooltip (const String& tooltip)
- {
- // xxx not yet implemented!
- }
-
-
- //==============================================================================
- void PlatformUtilities::beep()
- {
- std::cout << "\a" << std::flush;
- }
-
-
- //==============================================================================
- bool AlertWindow::showNativeDialogBox (const String& title,
- const String& bodyText,
- bool isOkCancel)
- {
- // use a non-native one for the time being..
- if (isOkCancel)
- return AlertWindow::showOkCancelBox (AlertWindow::NoIcon, title, bodyText);
- else
- AlertWindow::showMessageBox (AlertWindow::NoIcon, title, bodyText);
-
- return true;
- }
-
- //==============================================================================
- const int KeyPress::spaceKey = XK_space & 0xff;
- const int KeyPress::returnKey = XK_Return & 0xff;
- const int KeyPress::escapeKey = XK_Escape & 0xff;
- const int KeyPress::backspaceKey = XK_BackSpace & 0xff;
- const int KeyPress::leftKey = (XK_Left & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::rightKey = (XK_Right & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::upKey = (XK_Up & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::downKey = (XK_Down & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::pageUpKey = (XK_Page_Up & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::pageDownKey = (XK_Page_Down & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::endKey = (XK_End & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::homeKey = (XK_Home & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::insertKey = (XK_Insert & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::deleteKey = (XK_Delete & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::tabKey = XK_Tab & 0xff;
- const int KeyPress::F1Key = (XK_F1 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F2Key = (XK_F2 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F3Key = (XK_F3 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F4Key = (XK_F4 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F5Key = (XK_F5 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F6Key = (XK_F6 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F7Key = (XK_F7 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F8Key = (XK_F8 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F9Key = (XK_F9 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F10Key = (XK_F10 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F11Key = (XK_F11 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F12Key = (XK_F12 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F13Key = (XK_F13 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F14Key = (XK_F14 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F15Key = (XK_F15 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::F16Key = (XK_F16 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::numberPad0 = (XK_KP_0 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::numberPad1 = (XK_KP_1 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::numberPad2 = (XK_KP_2 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::numberPad3 = (XK_KP_3 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::numberPad4 = (XK_KP_4 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::numberPad5 = (XK_KP_5 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::numberPad6 = (XK_KP_6 & 0xff) | Keys::extendedKeyModifier;
- const int KeyPress::numberPad7 = (XK_KP_7 & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPad8 = (XK_KP_8 & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPad9 = (XK_KP_9 & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPadAdd = (XK_KP_Add & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPadSubtract = (XK_KP_Subtract & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPadMultiply = (XK_KP_Multiply & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPadDivide = (XK_KP_Divide & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPadSeparator = (XK_KP_Separator & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPadDecimalPoint = (XK_KP_Decimal & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPadEquals = (XK_KP_Equal & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::numberPadDelete = (XK_KP_Delete & 0xff)| Keys::extendedKeyModifier;
- const int KeyPress::playKey = (0xffeeff00) | Keys::extendedKeyModifier;
- const int KeyPress::stopKey = (0xffeeff01) | Keys::extendedKeyModifier;
- const int KeyPress::fastForwardKey = (0xffeeff02) | Keys::extendedKeyModifier;
- const int KeyPress::rewindKey = (0xffeeff03) | Keys::extendedKeyModifier;
-
-
- #endif
|