|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263 |
- /*
- * Carla Plugin UI
- * Copyright (C) 2014-2018 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program 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.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #include "CarlaJuceUtils.hpp"
- #include "CarlaPluginUI.hpp"
-
- #ifdef HAVE_X11
- # include <sys/types.h>
- # include <X11/Xatom.h>
- # include <X11/Xlib.h>
- # include <X11/Xutil.h>
- # include "CarlaPluginUI_X11Icon.hpp"
- #endif
-
- #ifdef CARLA_OS_MAC
- # include "CarlaMacUtils.hpp"
- # import <Cocoa/Cocoa.h>
- #endif
-
- #ifdef CARLA_OS_WIN
- # include <ctime>
- # include "water/common.hpp"
- #endif
-
- #ifndef CARLA_PLUGIN_UI_CLASS_PREFIX
- # error CARLA_PLUGIN_UI_CLASS_PREFIX undefined
- #endif
-
- // ---------------------------------------------------------------------------------------------------------------------
- // X11
-
- #ifdef HAVE_X11
- typedef void (*EventProcPtr)(XEvent* ev);
-
- static const uint X11Key_Escape = 9;
- static bool gErrorTriggered = false;
-
- static int temporaryErrorHandler(Display*, XErrorEvent*)
- {
- gErrorTriggered = true;
- return 0;
- }
-
- class X11PluginUI : public CarlaPluginUI
- {
- public:
- X11PluginUI(Callback* const cb, const uintptr_t parentId, const bool isResizable) noexcept
- : CarlaPluginUI(cb, isResizable),
- fDisplay(nullptr),
- fHostWindow(0),
- fChildWindow(0),
- fIsVisible(false),
- fFirstShow(true),
- fSetSizeCalledAtLeastOnce(false),
- fEventProc(nullptr)
- {
- fDisplay = XOpenDisplay(nullptr);
- CARLA_SAFE_ASSERT_RETURN(fDisplay != nullptr,);
-
- const int screen = DefaultScreen(fDisplay);
-
- XSetWindowAttributes attr;
- carla_zeroStruct(attr);
-
- attr.border_pixel = 0;
- attr.event_mask = KeyPressMask|KeyReleaseMask;
-
- if (fIsResizable)
- attr.event_mask |= StructureNotifyMask;
-
- fHostWindow = XCreateWindow(fDisplay, RootWindow(fDisplay, screen),
- 0, 0, 300, 300, 0,
- DefaultDepth(fDisplay, screen),
- InputOutput,
- DefaultVisual(fDisplay, screen),
- CWBorderPixel|CWEventMask, &attr);
-
- CARLA_SAFE_ASSERT_RETURN(fHostWindow != 0,);
-
- XGrabKey(fDisplay, X11Key_Escape, AnyModifier, fHostWindow, 1, GrabModeAsync, GrabModeAsync);
-
- Atom wmDelete = XInternAtom(fDisplay, "WM_DELETE_WINDOW", True);
- XSetWMProtocols(fDisplay, fHostWindow, &wmDelete, 1);
-
- const pid_t pid = getpid();
- const Atom _nwp = XInternAtom(fDisplay, "_NET_WM_PID", False);
- XChangeProperty(fDisplay, fHostWindow, _nwp, XA_CARDINAL, 32, PropModeReplace, (const uchar*)&pid, 1);
-
- const Atom _nwi = XInternAtom(fDisplay, "_NET_WM_ICON", False);
- XChangeProperty(fDisplay, fHostWindow, _nwi, XA_CARDINAL, 32, PropModeReplace, (const uchar*)sCarlaX11Icon, sCarlaX11IconSize);
-
- const Atom _wt = XInternAtom(fDisplay, "_NET_WM_WINDOW_TYPE", False);
-
- // Setting the window to both dialog and normal will produce a decorated floating dialog
- // Order is important: DIALOG needs to come before NORMAL
- const Atom _wts[2] = {
- XInternAtom(fDisplay, "_NET_WM_WINDOW_TYPE_DIALOG", False),
- XInternAtom(fDisplay, "_NET_WM_WINDOW_TYPE_NORMAL", False)
- };
- XChangeProperty(fDisplay, fHostWindow, _wt, XA_ATOM, 32, PropModeReplace, (const uchar*)&_wts, 2);
-
- if (parentId != 0)
- setTransientWinId(parentId);
- }
-
- ~X11PluginUI() override
- {
- CARLA_SAFE_ASSERT(! fIsVisible);
-
- if (fIsVisible)
- {
- XUnmapWindow(fDisplay, fHostWindow);
- fIsVisible = false;
- }
-
- if (fHostWindow != 0)
- {
- XDestroyWindow(fDisplay, fHostWindow);
- fHostWindow = 0;
- }
-
- if (fDisplay != nullptr)
- {
- XCloseDisplay(fDisplay);
- fDisplay = nullptr;
- }
- }
-
- void show() override
- {
- CARLA_SAFE_ASSERT_RETURN(fDisplay != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fHostWindow != 0,);
-
- if (fFirstShow)
- {
- if (const Window childWindow = getChildWindow())
- {
- if (! fSetSizeCalledAtLeastOnce)
- {
- XSizeHints hints;
- carla_zeroStruct(hints);
-
- if (XGetNormalHints(fDisplay, childWindow, &hints) && hints.width > 0 && hints.height > 0)
- setSize(static_cast<uint>(hints.width),
- static_cast<uint>(hints.height), false);
- }
-
- const Atom _xevp = XInternAtom(fDisplay, "_XEventProc", False);
-
- gErrorTriggered = false;
- const XErrorHandler oldErrorHandler(XSetErrorHandler(temporaryErrorHandler));
-
- Atom actualType;
- int actualFormat;
- ulong nitems, bytesAfter;
- uchar* data = nullptr;
-
- XGetWindowProperty(fDisplay, childWindow, _xevp, 0, 1, False, AnyPropertyType, &actualType, &actualFormat, &nitems, &bytesAfter, &data);
- XSetErrorHandler(oldErrorHandler);
-
- if (nitems == 1 && ! gErrorTriggered)
- {
- fEventProc = *reinterpret_cast<EventProcPtr*>(data);
- XMapRaised(fDisplay, childWindow);
- }
- }
- }
-
- fIsVisible = true;
- fFirstShow = false;
-
- XMapRaised(fDisplay, fHostWindow);
- XFlush(fDisplay);
- }
-
- void hide() override
- {
- CARLA_SAFE_ASSERT_RETURN(fDisplay != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fHostWindow != 0,);
-
- fIsVisible = false;
- XUnmapWindow(fDisplay, fHostWindow);
- XFlush(fDisplay);
- }
-
- void idle() override
- {
- // prevent recursion
- if (fIsIdling) return;
-
- fIsIdling = true;
-
- for (XEvent event; XPending(fDisplay) > 0;)
- {
- XNextEvent(fDisplay, &event);
-
- if (! fIsVisible)
- continue;
-
- char* type = nullptr;
-
- switch (event.type)
- {
- case ConfigureNotify:
- CARLA_SAFE_ASSERT_CONTINUE(fCallback != nullptr);
- CARLA_SAFE_ASSERT_CONTINUE(event.xconfigure.width > 0);
- CARLA_SAFE_ASSERT_CONTINUE(event.xconfigure.height > 0);
-
- {
- const uint width = static_cast<uint>(event.xconfigure.width);
- const uint height = static_cast<uint>(event.xconfigure.height);
-
- if (fChildWindow != 0)
- XResizeWindow(fDisplay, fChildWindow, width, height);
-
- fCallback->handlePluginUIResized(width, height);
- }
- break;
-
- case ClientMessage:
- type = XGetAtomName(fDisplay, event.xclient.message_type);
- CARLA_SAFE_ASSERT_CONTINUE(type != nullptr);
-
- if (std::strcmp(type, "WM_PROTOCOLS") == 0)
- {
- fIsVisible = false;
- CARLA_SAFE_ASSERT_CONTINUE(fCallback != nullptr);
- fCallback->handlePluginUIClosed();
- }
- break;
-
- case KeyRelease:
- if (event.xkey.keycode == X11Key_Escape)
- {
- fIsVisible = false;
- CARLA_SAFE_ASSERT_CONTINUE(fCallback != nullptr);
- fCallback->handlePluginUIClosed();
- }
- break;
- }
-
- if (type != nullptr)
- XFree(type);
- else if (fEventProc != nullptr)
- fEventProc(&event);
- }
-
- fIsIdling = false;
- }
-
- void focus() override
- {
- CARLA_SAFE_ASSERT_RETURN(fDisplay != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fHostWindow != 0,);
-
- XRaiseWindow(fDisplay, fHostWindow);
- XSetInputFocus(fDisplay, fHostWindow, RevertToPointerRoot, CurrentTime);
- XFlush(fDisplay);
- }
-
- void setSize(const uint width, const uint height, const bool forceUpdate) override
- {
- CARLA_SAFE_ASSERT_RETURN(fDisplay != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fHostWindow != 0,);
-
- fSetSizeCalledAtLeastOnce = true;
- XResizeWindow(fDisplay, fHostWindow, width, height);
-
- if (fChildWindow != 0)
- XResizeWindow(fDisplay, fChildWindow, width, height);
-
- if (! fIsResizable)
- {
- XSizeHints sizeHints;
- carla_zeroStruct(sizeHints);
-
- sizeHints.flags = PSize|PMinSize|PMaxSize;
- sizeHints.width = static_cast<int>(width);
- sizeHints.height = static_cast<int>(height);
- sizeHints.min_width = static_cast<int>(width);
- sizeHints.min_height = static_cast<int>(height);
- sizeHints.max_width = static_cast<int>(width);
- sizeHints.max_height = static_cast<int>(height);
-
- XSetNormalHints(fDisplay, fHostWindow, &sizeHints);
- }
-
- if (forceUpdate)
- XFlush(fDisplay);
- }
-
- void setTitle(const char* const title) override
- {
- CARLA_SAFE_ASSERT_RETURN(fDisplay != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fHostWindow != 0,);
-
- XStoreName(fDisplay, fHostWindow, title);
- }
-
- void setTransientWinId(const uintptr_t winId) override
- {
- CARLA_SAFE_ASSERT_RETURN(fDisplay != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fHostWindow != 0,);
-
- XSetTransientForHint(fDisplay, fHostWindow, static_cast<Window>(winId));
- }
-
- void setChildWindow(void* const winId) override
- {
- CARLA_SAFE_ASSERT_RETURN(winId != nullptr,);
-
- fChildWindow = (Window)winId;
- }
-
- void* getPtr() const noexcept override
- {
- return (void*)fHostWindow;
- }
-
- void* getDisplay() const noexcept override
- {
- return fDisplay;
- }
-
- protected:
- Window getChildWindow() const
- {
- CARLA_SAFE_ASSERT_RETURN(fDisplay != nullptr, 0);
- CARLA_SAFE_ASSERT_RETURN(fHostWindow != 0, 0);
-
- Window rootWindow, parentWindow, ret = 0;
- Window* childWindows = nullptr;
- uint numChildren = 0;
-
- XQueryTree(fDisplay, fHostWindow, &rootWindow, &parentWindow, &childWindows, &numChildren);
-
- if (numChildren > 0 && childWindows != nullptr)
- {
- ret = childWindows[0];
- XFree(childWindows);
- }
-
- return ret;
- }
-
- private:
- Display* fDisplay;
- Window fHostWindow;
- Window fChildWindow;
- bool fIsVisible;
- bool fFirstShow;
- bool fSetSizeCalledAtLeastOnce;
- EventProcPtr fEventProc;
-
- CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(X11PluginUI)
- };
- #endif // HAVE_X11
-
- // ---------------------------------------------------------------------------------------------------------------------
- // MacOS / Cocoa
-
- #ifdef CARLA_OS_MAC
-
- #if defined(BUILD_BRIDGE_ALTERNATIVE_ARCH)
- # define CarlaPluginWindow CARLA_JOIN_MACRO(CarlaPluginWindowBridgedArch, CARLA_PLUGIN_UI_CLASS_PREFIX)
- #elif defined(BUILD_BRIDGE)
- # define CarlaPluginWindow CARLA_JOIN_MACRO(CarlaPluginWindowBridged, CARLA_PLUGIN_UI_CLASS_PREFIX)
- #else
- # define CarlaPluginWindow CARLA_JOIN_MACRO(CarlaPluginWindow, CARLA_PLUGIN_UI_CLASS_PREFIX)
- #endif
-
- @interface CarlaPluginWindow : NSWindow
- {
- @public
- CarlaPluginUI::Callback* callback;
- }
-
- - (id) initWithContentRect:(NSRect)contentRect
- styleMask:(unsigned int)aStyle
- backing:(NSBackingStoreType)bufferingType
- defer:(BOOL)flag;
- - (void) setCallback:(CarlaPluginUI::Callback*)cb;
- - (BOOL) acceptsFirstResponder;
- - (BOOL) canBecomeKeyWindow;
- - (BOOL) canBecomeMainWindow;
- - (BOOL) windowShouldClose:(id)sender;
- - (NSSize) windowWillResize:(NSWindow*)sender toSize:(NSSize)frameSize;
- @end
-
- @implementation CarlaPluginWindow
-
- - (id)initWithContentRect:(NSRect)contentRect
- styleMask:(unsigned int)aStyle
- backing:(NSBackingStoreType)bufferingType
- defer:(BOOL)flag
- {
- callback = nil;
-
- NSWindow* result = [super initWithContentRect:contentRect
- styleMask:aStyle
- backing:bufferingType
- defer:flag];
-
- [result setAcceptsMouseMovedEvents:YES];
-
- return (CarlaPluginWindow*)result;
-
- // unused
- (void)flag;
- }
-
- - (void)setCallback:(CarlaPluginUI::Callback*)cb
- {
- callback = cb;
- }
-
- - (BOOL)acceptsFirstResponder
- {
- return YES;
- }
-
- - (BOOL)canBecomeKeyWindow
- {
- return YES;
- }
-
- - (BOOL)canBecomeMainWindow
- {
- return NO;
- }
-
- - (BOOL)windowShouldClose:(id)sender
- {
- if (callback != nil)
- callback->handlePluginUIClosed();
-
- return NO;
-
- // unused
- (void)sender;
- }
-
- - (NSSize) windowWillResize:(NSWindow*)sender toSize:(NSSize)frameSize
- {
- if (callback != nil)
- callback->handlePluginUIResized(frameSize.width, frameSize.height);
-
- return frameSize;
-
- // unused
- (void)sender;
- }
-
- @end
-
- class CocoaPluginUI : public CarlaPluginUI
- {
- public:
- CocoaPluginUI(Callback* const cb, const uintptr_t parentId, const bool isResizable) noexcept
- : CarlaPluginUI(cb, isResizable),
- fView(nullptr),
- fParentWindow(nullptr),
- fWindow(nullptr)
- {
- carla_debug("CocoaPluginUI::CocoaPluginUI(%p, " P_UINTPTR, "%s)", cb, parentId, bool2str(isResizable));
- const CarlaBackend::AutoNSAutoreleasePool arp;
- [NSApplication sharedApplication];
-
- fView = [[NSView new]retain];
- CARLA_SAFE_ASSERT_RETURN(fView != nullptr,)
-
- uint style = NSClosableWindowMask | NSTitledWindowMask;
- /*
- if (isResizable)
- style |= NSResizableWindowMask;
- */
-
- NSRect frame = NSMakeRect(0, 0, 100, 100);
-
- fWindow = [[[CarlaPluginWindow alloc]
- initWithContentRect:frame
- styleMask:style
- backing:NSBackingStoreBuffered
- defer:NO
- ] retain];
-
- if (fWindow == nullptr)
- {
- [fView release];
- fView = nullptr;
- return;
- }
-
- //if (! isResizable)
- {
- [fView setAutoresizingMask:NSViewNotSizable];
- [[fWindow standardWindowButton:NSWindowZoomButton] setHidden:YES];
- }
-
- [fWindow setCallback:cb];
- [fWindow setContentView:fView];
- [fWindow makeFirstResponder:fView];
-
- [fView setHidden:NO];
-
- if (parentId != 0)
- setTransientWinId(parentId);
- }
-
- ~CocoaPluginUI() override
- {
- carla_debug("CocoaPluginUI::~CocoaPluginUI()");
- if (fView == nullptr)
- return;
-
- [fView setHidden:YES];
- [fView removeFromSuperview];
- [fWindow close];
- [fView release];
- [fWindow release];
- }
-
- void show() override
- {
- carla_debug("CocoaPluginUI::show()");
- CARLA_SAFE_ASSERT_RETURN(fView != nullptr,);
-
- if (fParentWindow != nullptr)
- {
- [fParentWindow addChildWindow:fWindow
- ordered:NSWindowAbove];
- }
- else
- {
- [fWindow setIsVisible:YES];
- }
- }
-
- void hide() override
- {
- carla_debug("CocoaPluginUI::hide()");
- CARLA_SAFE_ASSERT_RETURN(fView != nullptr,);
-
- [fWindow setIsVisible:NO];
-
- if (fParentWindow != nullptr)
- [fParentWindow removeChildWindow:fWindow];
- }
-
- void idle() override
- {
- // carla_debug("CocoaPluginUI::idle()");
- }
-
- void focus() override
- {
- carla_debug("CocoaPluginUI::focus()");
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- [fWindow makeKeyAndOrderFront:fWindow];
- [NSApp activateIgnoringOtherApps:YES];
- }
-
- void setSize(const uint width, const uint height, const bool forceUpdate) override
- {
- carla_debug("CocoaPluginUI::setSize(%u, %u, %s)", width, height, bool2str(forceUpdate));
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
- CARLA_SAFE_ASSERT_RETURN(fView != nullptr,);
-
- [fView setFrame:NSMakeRect(0, 0, width, height)];
-
- for (NSView* subview in [fView subviews])
- {
- [subview setFrame:NSMakeRect(0, 0, width, height)];
- break;
- }
-
- const NSSize size = NSMakeSize(width, height);
- [fWindow setContentSize:size];
-
- /*
- if (fIsResizable)
- {
- [fWindow setContentMinSize:NSMakeSize(1, 1)];
- [fWindow setContentMaxSize:NSMakeSize(99999, 99999)];
- }
- else
- {
- [fWindow setContentMinSize:size];
- [fWindow setContentMaxSize:size];
- }
- */
-
- if (forceUpdate)
- {
- // FIXME, not enough
- [fView setNeedsDisplay:YES];
- }
- }
-
- void setTitle(const char* const title) override
- {
- carla_debug("CocoaPluginUI::setTitle(\"%s\")", title);
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- NSString* titleString = [[NSString alloc]
- initWithBytes:title
- length:strlen(title)
- encoding:NSUTF8StringEncoding];
-
- [fWindow setTitle:titleString];
- }
-
- void setTransientWinId(const uintptr_t winId) override
- {
- carla_debug("CocoaPluginUI::setTransientWinId(" P_UINTPTR ")", winId);
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- NSWindow* const parentWindow = [NSApp windowWithWindowNumber:winId];
- CARLA_SAFE_ASSERT_RETURN(parentWindow != nullptr,);
-
- fParentWindow = parentWindow;
-
- if ([fWindow isVisible])
- [fParentWindow addChildWindow:fWindow
- ordered:NSWindowAbove];
- }
-
- void setChildWindow(void* const window) override
- {
- carla_debug("CocoaPluginUI::setChildWindow(%p)", window);
- CARLA_SAFE_ASSERT_RETURN(window != nullptr,);
- }
-
- void* getPtr() const noexcept override
- {
- carla_debug("CocoaPluginUI::getPtr()");
- return (void*)fView;
- }
-
- void* getDisplay() const noexcept
- {
- carla_debug("CocoaPluginUI::getDisplay()");
- return (void*)fWindow;
- }
-
- private:
- NSView* fView;
- NSWindow* fParentWindow;
- CarlaPluginWindow* fWindow;
-
- CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CocoaPluginUI)
- };
-
- #endif // CARLA_OS_MAC
-
- // ---------------------------------------------------------------------------------------------------------------------
- // Windows
-
- #ifdef CARLA_OS_WIN
-
- #define PUGL_LOCAL_CLOSE_MSG (WM_USER + 50)
-
- static LRESULT CALLBACK wndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
-
- class WindowsPluginUI : public CarlaPluginUI
- {
- public:
- WindowsPluginUI(Callback* const cb, const uintptr_t parentId, const bool isResizable) noexcept
- : CarlaPluginUI(cb, isResizable),
- fWindow(nullptr),
- fChildWindow(nullptr),
- fParentWindow(nullptr),
- fIsVisible(false),
- fFirstShow(true)
- {
- // FIXME
- static int wc_count = 0;
- char classNameBuf[32];
- std::srand((std::time(nullptr)));
- std::snprintf(classNameBuf, 32, "CarlaWin-%d-%d", ++wc_count, std::rand());
- classNameBuf[31] = '\0';
-
- const HINSTANCE hInstance = water::getCurrentModuleInstanceHandle();
-
- carla_zeroStruct(fWindowClass);
- fWindowClass.style = CS_OWNDC;
- fWindowClass.lpfnWndProc = wndProc;
- fWindowClass.hInstance = hInstance;
- fWindowClass.hIcon = LoadIcon(hInstance, IDI_APPLICATION);
- fWindowClass.hCursor = LoadCursor(hInstance, IDC_ARROW);
- fWindowClass.lpszClassName = strdup(classNameBuf);
-
- if (!RegisterClass(&fWindowClass)) {
- free((void*)fWindowClass.lpszClassName);
- return;
- }
-
- int winFlags = WS_POPUPWINDOW | WS_CAPTION;
-
- if (isResizable)
- {
- // not supported right now
- // winFlags |= WS_SIZEBOX;
- }
-
- fWindow = CreateWindowEx(WS_EX_TOPMOST,
- classNameBuf, "Carla Plugin UI", winFlags,
- CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
- nullptr, nullptr, hInstance, nullptr);
-
- if (fWindow == nullptr) {
- const DWORD errorCode = ::GetLastError();
- carla_stderr2("CreateWindowEx failed with error code 0x%x, class name was '%s'",
- errorCode, fWindowClass.lpszClassName);
- UnregisterClass(fWindowClass.lpszClassName, nullptr);
- free((void*)fWindowClass.lpszClassName);
- return;
- }
-
- SetWindowLongPtr(fWindow, GWLP_USERDATA, (LONG_PTR)this);
-
- if (parentId != 0)
- setTransientWinId(parentId);
- }
-
- ~WindowsPluginUI() override
- {
- CARLA_SAFE_ASSERT(! fIsVisible);
-
- if (fWindow != 0)
- {
- if (fIsVisible)
- ShowWindow(fWindow, SW_HIDE);
-
- DestroyWindow(fWindow);
- fWindow = 0;
- }
-
- // FIXME
- UnregisterClass(fWindowClass.lpszClassName, nullptr);
- free((void*)fWindowClass.lpszClassName);
- }
-
- void show() override
- {
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- if (fFirstShow)
- {
- fFirstShow = false;
- RECT rectChild, rectParent;
-
- if (fParentWindow != nullptr &&
- GetWindowRect(fWindow, &rectChild) &&
- GetWindowRect(fParentWindow, &rectParent))
- {
- SetWindowPos(fWindow, fParentWindow,
- rectParent.left + (rectChild.right-rectChild.left)/2,
- rectParent.top + (rectChild.bottom-rectChild.top)/2,
- 0, 0, SWP_SHOWWINDOW|SWP_NOSIZE);
- }
- else
- {
- ShowWindow(fWindow, SW_SHOWNORMAL);
- }
- }
- else
- {
- ShowWindow(fWindow, SW_RESTORE);
- }
-
- fIsVisible = true;
- UpdateWindow(fWindow);
- }
-
- void hide() override
- {
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- ShowWindow(fWindow, SW_HIDE);
- fIsVisible = false;
- UpdateWindow(fWindow);
- }
-
- void idle() override
- {
- if (fIsIdling || fWindow == nullptr)
- return;
-
- MSG msg;
- fIsIdling = true;
-
- while (::PeekMessage(&msg, fWindow, 0, 0, PM_REMOVE))
- {
- switch (msg.message)
- {
- case WM_QUIT:
- case PUGL_LOCAL_CLOSE_MSG:
- fIsVisible = false;
- CARLA_SAFE_ASSERT_BREAK(fCallback != nullptr);
- fCallback->handlePluginUIClosed();
- break;
- }
-
- DispatchMessageA(&msg);
- }
-
- fIsIdling = false;
- }
-
- LRESULT checkAndHandleMessage(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- if (fWindow == hwnd)
- {
- switch (message)
- {
- case WM_QUIT:
- case PUGL_LOCAL_CLOSE_MSG:
- fIsVisible = false;
- CARLA_SAFE_ASSERT_BREAK(fCallback != nullptr);
- fCallback->handlePluginUIClosed();
- break;
- }
- }
-
- return DefWindowProcA(hwnd, message, wParam, lParam);
- }
-
- void focus() override
- {
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- SetForegroundWindow(fWindow);
- SetActiveWindow(fWindow);
- SetFocus(fWindow);
- }
-
- void setSize(const uint width, const uint height, const bool forceUpdate) override
- {
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- const int winFlags = WS_POPUPWINDOW | WS_CAPTION | (fIsResizable ? WS_SIZEBOX : 0x0);
- RECT wr = { 0, 0, static_cast<long>(width), static_cast<long>(height) };
- AdjustWindowRectEx(&wr, winFlags, FALSE, WS_EX_TOPMOST);
-
- SetWindowPos(fWindow, 0, 0, 0, wr.right-wr.left, wr.bottom-wr.top,
- SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOOWNERZORDER|SWP_NOZORDER);
-
- if (forceUpdate)
- UpdateWindow(fWindow);
- }
-
- void setTitle(const char* const title) override
- {
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- SetWindowTextA(fWindow, title);
- }
-
- void setTransientWinId(const uintptr_t winId) override
- {
- CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);
-
- fParentWindow = (HWND)winId;
- SetWindowLongPtr(fWindow, GWLP_HWNDPARENT, (LONG_PTR)winId);
- }
-
- void setChildWindow(void* const winId) override
- {
- CARLA_SAFE_ASSERT_RETURN(winId != nullptr,);
-
- fChildWindow = (HWND)fChildWindow;
- }
-
- void* getPtr() const noexcept override
- {
- return (void*)fWindow;
- }
-
- void* getDisplay() const noexcept
- {
- return nullptr;
- }
-
- private:
- HWND fWindow;
- HWND fChildWindow;
- HWND fParentWindow;
- WNDCLASS fWindowClass;
-
- bool fIsVisible;
- bool fFirstShow;
-
- CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(WindowsPluginUI)
- };
-
- LRESULT CALLBACK wndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
- {
- switch (message)
- {
- case WM_CLOSE:
- PostMessage(hwnd, PUGL_LOCAL_CLOSE_MSG, wParam, lParam);
- return 0;
-
- #if 0
- case WM_CREATE:
- PostMessage(hwnd, WM_SHOWWINDOW, TRUE, 0);
- return 0;
-
- case WM_DESTROY:
- return 0;
- #endif
-
- default:
- if (WindowsPluginUI* const ui = (WindowsPluginUI*)GetWindowLongPtr(hwnd, GWLP_USERDATA))
- return ui->checkAndHandleMessage(hwnd, message, wParam, lParam);
- return DefWindowProcA(hwnd, message, wParam, lParam);
- }
- }
- #endif // CARLA_OS_WIN
-
- // -----------------------------------------------------
-
- #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
- bool CarlaPluginUI::tryTransientWinIdMatch(const uintptr_t pid, const char* const uiTitle, const uintptr_t winId, const bool centerUI)
- {
- CARLA_SAFE_ASSERT_RETURN(uiTitle != nullptr && uiTitle[0] != '\0', true);
- CARLA_SAFE_ASSERT_RETURN(winId != 0, true);
-
- #if defined(HAVE_X11)
- struct ScopedDisplay {
- Display* display;
- ScopedDisplay() : display(XOpenDisplay(nullptr)) {}
- ~ScopedDisplay() { if (display!=nullptr) XCloseDisplay(display); }
- // c++ compat stuff
- CARLA_PREVENT_HEAP_ALLOCATION
- CARLA_DECLARE_NON_COPY_CLASS(ScopedDisplay)
- };
- struct ScopedFreeData {
- union {
- char* data;
- uchar* udata;
- };
- ScopedFreeData(char* d) : data(d) {}
- ScopedFreeData(uchar* d) : udata(d) {}
- ~ScopedFreeData() { XFree(data); }
- // c++ compat stuff
- CARLA_PREVENT_HEAP_ALLOCATION
- CARLA_DECLARE_NON_COPY_CLASS(ScopedFreeData)
- };
-
- const ScopedDisplay sd;
- CARLA_SAFE_ASSERT_RETURN(sd.display != nullptr, true);
-
- const Window rootWindow(DefaultRootWindow(sd.display));
-
- const Atom _ncl = XInternAtom(sd.display, "_NET_CLIENT_LIST" , False);
- const Atom _nwn = XInternAtom(sd.display, "_NET_WM_NAME", False);
- const Atom _nwp = XInternAtom(sd.display, "_NET_WM_PID", False);
- const Atom utf8 = XInternAtom(sd.display, "UTF8_STRING", True);
-
- Atom actualType;
- int actualFormat;
- ulong numWindows, bytesAfter;
- uchar* data = nullptr;
-
- int status = XGetWindowProperty(sd.display, rootWindow, _ncl, 0L, (~0L), False, AnyPropertyType, &actualType, &actualFormat, &numWindows, &bytesAfter, &data);
-
- CARLA_SAFE_ASSERT_RETURN(data != nullptr, true);
- const ScopedFreeData sfd(data);
-
- CARLA_SAFE_ASSERT_RETURN(status == Success, true);
- CARLA_SAFE_ASSERT_RETURN(actualFormat == 32, true);
- CARLA_SAFE_ASSERT_RETURN(numWindows != 0, true);
-
- Window* windows = (Window*)data;
- Window lastGoodWindowPID = 0, lastGoodWindowNameSimple = 0, lastGoodWindowNameUTF8 = 0;
-
- for (ulong i = 0; i < numWindows; i++)
- {
- const Window window(windows[i]);
- CARLA_SAFE_ASSERT_CONTINUE(window != 0);
-
- // ------------------------------------------------
- // try using pid
-
- if (pid != 0)
- {
- ulong pidSize;
- uchar* pidData = nullptr;
-
- status = XGetWindowProperty(sd.display, window, _nwp, 0L, (~0L), False, XA_CARDINAL, &actualType, &actualFormat, &pidSize, &bytesAfter, &pidData);
-
- if (pidData != nullptr)
- {
- const ScopedFreeData sfd2(pidData);
- CARLA_SAFE_ASSERT_CONTINUE(status == Success);
- CARLA_SAFE_ASSERT_CONTINUE(pidSize != 0);
-
- if (*(ulong*)pidData == static_cast<ulong>(pid))
- lastGoodWindowPID = window;
- }
- }
-
- // ------------------------------------------------
- // try using name (UTF-8)
-
- ulong nameSize;
- uchar* nameData = nullptr;
-
- status = XGetWindowProperty(sd.display, window, _nwn, 0L, (~0L), False, utf8, &actualType, &actualFormat, &nameSize, &bytesAfter, &nameData);
-
- if (nameData != nullptr)
- {
- const ScopedFreeData sfd2(nameData);
- CARLA_SAFE_ASSERT_CONTINUE(status == Success);
-
- if (nameSize != 0 && std::strstr((const char*)nameData, uiTitle) != nullptr)
- lastGoodWindowNameUTF8 = window;
- }
-
- // ------------------------------------------------
- // try using name (simple)
-
- char* wmName = nullptr;
-
- status = XFetchName(sd.display, window, &wmName);
-
- if (wmName != nullptr)
- {
- const ScopedFreeData sfd2(wmName);
- CARLA_SAFE_ASSERT_CONTINUE(status != 0);
-
- if (std::strstr(wmName, uiTitle) != nullptr)
- lastGoodWindowNameSimple = window;
- }
- }
-
- if (lastGoodWindowPID == 0 && lastGoodWindowNameSimple == 0 && lastGoodWindowNameUTF8 == 0)
- return false;
-
- Window windowToMap;
-
- if (lastGoodWindowPID != 0)
- {
- if (lastGoodWindowPID == lastGoodWindowNameSimple && lastGoodWindowPID == lastGoodWindowNameUTF8)
- {
- carla_stdout("Match found using pid, simple and UTF-8 name all at once, nice!");
- windowToMap = lastGoodWindowPID;
- }
- else if (lastGoodWindowPID == lastGoodWindowNameUTF8)
- {
- carla_stdout("Match found using pid and UTF-8 name");
- windowToMap = lastGoodWindowPID;
- }
- else if (lastGoodWindowPID == lastGoodWindowNameSimple)
- {
- carla_stdout("Match found using pid and simple name");
- windowToMap = lastGoodWindowPID;
- }
- else
- {
- carla_stdout("Match found using pid");
- windowToMap = lastGoodWindowPID;
- }
- }
- else if (lastGoodWindowNameUTF8 != 0)
- {
- if (lastGoodWindowNameUTF8 == lastGoodWindowNameSimple)
- {
- carla_stdout("Match found using simple and UTF-8 name");
- windowToMap = lastGoodWindowNameUTF8;
- }
- else
- {
- carla_stdout("Match found using simple and UTF-8 name");
- windowToMap = lastGoodWindowNameUTF8;
- }
- }
- else
- {
- carla_stdout("Match found using simple name");
- windowToMap = lastGoodWindowNameSimple;
- }
-
- const Atom _nwt = XInternAtom(sd.display ,"_NET_WM_STATE", False);
- const Atom _nws[2] = {
- XInternAtom(sd.display, "_NET_WM_STATE_SKIP_TASKBAR", False),
- XInternAtom(sd.display, "_NET_WM_STATE_SKIP_PAGER", False)
- };
- XChangeProperty(sd.display, windowToMap, _nwt, XA_ATOM, 32, PropModeAppend, (const uchar*)_nws, 2);
-
- const Atom _nwi = XInternAtom(sd.display, "_NET_WM_ICON", False);
- XChangeProperty(sd.display, windowToMap, _nwi, XA_CARDINAL, 32, PropModeReplace, (const uchar*)sCarlaX11Icon, sCarlaX11IconSize);
-
- const Window hostWinId((Window)winId);
-
- XSetTransientForHint(sd.display, windowToMap, hostWinId);
-
- if (centerUI && false /* moving the window after being shown isn't pretty... */)
- {
- int hostX, hostY, pluginX, pluginY;
- uint hostWidth, hostHeight, pluginWidth, pluginHeight, border, depth;
- Window retWindow;
-
- if (XGetGeometry(sd.display, hostWinId, &retWindow, &hostX, &hostY, &hostWidth, &hostHeight, &border, &depth) != 0 &&
- XGetGeometry(sd.display, windowToMap, &retWindow, &pluginX, &pluginY, &pluginWidth, &pluginHeight, &border, &depth) != 0)
- {
- if (XTranslateCoordinates(sd.display, hostWinId, rootWindow, hostX, hostY, &hostX, &hostY, &retWindow) == True &&
- XTranslateCoordinates(sd.display, windowToMap, rootWindow, pluginX, pluginY, &pluginX, &pluginY, &retWindow) == True)
- {
- const int newX = hostX + int(hostWidth/2 - pluginWidth/2);
- const int newY = hostY + int(hostHeight/2 - pluginHeight/2);
-
- XMoveWindow(sd.display, windowToMap, newX, newY);
- }
- }
- }
-
- // focusing the host UI and then the plugin UI forces the WM to repaint the plugin window icon
- XRaiseWindow(sd.display, hostWinId);
- XSetInputFocus(sd.display, hostWinId, RevertToPointerRoot, CurrentTime);
-
- XRaiseWindow(sd.display, windowToMap);
- XSetInputFocus(sd.display, windowToMap, RevertToPointerRoot, CurrentTime);
-
- XFlush(sd.display);
- return true;
- #endif
-
- #ifdef CARLA_OS_MAC
- uint const hints = kCGWindowListOptionOnScreenOnly|kCGWindowListExcludeDesktopElements;
-
- CFArrayRef const windowListRef = CGWindowListCopyWindowInfo(hints, kCGNullWindowID);
- const NSArray* const windowList = (const NSArray*)windowListRef;
-
- int windowToMap, windowWithPID = 0, windowWithNameAndPID = 0;
-
- const NSDictionary* entry;
- for (entry in windowList)
- {
- // FIXME: is this needed? is old version safe?
- #if defined (MAC_OS_X_VERSION_10_6) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
- if ([entry[(id)kCGWindowSharingState] intValue] == kCGWindowSharingNone)
- continue;
-
- NSString* const windowName = entry[(id)kCGWindowName];
- int const windowNumber = [entry[(id)kCGWindowNumber] intValue];
- uintptr_t const windowPID = [entry[(id)kCGWindowOwnerPID] intValue];
- #else
- if ([[entry objectForKey:(id)kCGWindowSharingState] intValue] == kCGWindowSharingNone)
- continue;
-
- NSString* const windowName = [entry objectForKey:(id)kCGWindowName];
- int const windowNumber = [[entry objectForKey:(id)kCGWindowNumber] intValue];
- uintptr_t const windowPID = [[entry objectForKey:(id)kCGWindowOwnerPID] intValue];
- #endif
-
- if (windowPID != pid)
- continue;
-
- windowWithPID = windowNumber;
-
- if (windowName != nullptr && std::strcmp([windowName UTF8String], uiTitle) == 0)
- windowWithNameAndPID = windowNumber;
- }
-
- CFRelease(windowListRef);
-
- if (windowWithNameAndPID != 0)
- {
- carla_stdout("Match found using pid and name");
- windowToMap = windowWithNameAndPID;
- }
- else if (windowWithPID != 0)
- {
- carla_stdout("Match found using pid");
- windowToMap = windowWithPID;
- }
- else
- {
- return false;
- }
-
- NSWindow* const parentWindow = [NSApp windowWithWindowNumber:winId];
- CARLA_SAFE_ASSERT_RETURN(parentWindow != nullptr, false);
-
- [parentWindow orderWindow:NSWindowBelow
- relativeTo:windowToMap];
- return true;
- #endif
-
- #ifdef CARLA_OS_WIN
- if (HWND const childWindow = FindWindowA(nullptr, uiTitle))
- {
- HWND const parentWindow = (HWND)winId;
- SetWindowLongPtr(childWindow, GWLP_HWNDPARENT, (LONG_PTR)parentWindow);
-
- if (centerUI)
- {
- RECT rectChild, rectParent;
-
- if (GetWindowRect(childWindow, &rectChild) && GetWindowRect(parentWindow, &rectParent))
- {
- SetWindowPos(childWindow, parentWindow,
- rectParent.left + (rectChild.right-rectChild.left)/2,
- rectParent.top + (rectChild.bottom-rectChild.top)/2,
- 0, 0, SWP_NOSIZE);
- }
- }
-
- carla_stdout("Match found using window name");
- return true;
- }
-
- return false;
- #endif
-
- // fallback, may be unused
- return true;
- (void)pid; (void)centerUI;
- }
- #endif // BUILD_BRIDGE_ALTERNATIVE_ARCH
-
- // -----------------------------------------------------
-
- #ifdef HAVE_X11
- CarlaPluginUI* CarlaPluginUI::newX11(Callback* cb, uintptr_t parentId, bool isResizable)
- {
- return new X11PluginUI(cb, parentId, isResizable);
- }
- #endif
-
- #ifdef CARLA_OS_MAC
- CarlaPluginUI* CarlaPluginUI::newCocoa(Callback* cb, uintptr_t parentId, bool isResizable)
- {
- return new CocoaPluginUI(cb, parentId, isResizable);
- }
- #endif
-
- #ifdef CARLA_OS_WIN
- CarlaPluginUI* CarlaPluginUI::newWindows(Callback* cb, uintptr_t parentId, bool isResizable)
- {
- return new WindowsPluginUI(cb, parentId, isResizable);
- }
- #endif
-
- // -----------------------------------------------------
|