|
- /*
- * DISTRHO Plugin Framework (DPF)
- * Copyright (C) 2012-2021 Filipe Coelho <falktx@falktx.com>
- *
- * Permission to use, copy, modify, and/or distribute this software for any purpose with
- * or without fee is hereby granted, provided that the above copyright notice and this
- * permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
- * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
- * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
- * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
- * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
- #include "src/DistrhoPluginChecks.h"
-
- #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- # if defined(DISTRHO_OS_WINDOWS)
- # define WIN32_LEAN_AND_MEAN
- # include <windows.h>
- # elif defined(HAVE_X11)
- # include <X11/Xresource.h>
- # endif
- #else
- # include "src/TopLevelWidgetPrivateData.hpp"
- # include "src/WindowPrivateData.hpp"
- #endif
-
- #include "DistrhoUIPrivateData.hpp"
-
- START_NAMESPACE_DISTRHO
-
- #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- /* ------------------------------------------------------------------------------------------------------------
- * Static data, see DistrhoUIInternal.hpp */
-
- uintptr_t g_nextWindowId = 0;
- double g_nextScaleFactor = 1.0;
- const char* g_nextBundlePath = nullptr;
-
- /* ------------------------------------------------------------------------------------------------------------
- * get global scale factor */
-
- #ifdef DISTRHO_OS_MAC
- double getDesktopScaleFactor(uintptr_t parentWindowHandle);
- #else
- static double getDesktopScaleFactor(const uintptr_t parentWindowHandle)
- {
- // allow custom scale for testing
- if (const char* const scale = getenv("DPF_SCALE_FACTOR"))
- return std::max(1.0, std::atof(scale));
-
- #if defined(DISTRHO_OS_WINDOWS)
- if (const HMODULE Shcore = LoadLibraryA("Shcore.dll"))
- {
- typedef HRESULT(WINAPI* PFN_GetProcessDpiAwareness)(HANDLE, DWORD*);
- typedef HRESULT(WINAPI* PFN_GetScaleFactorForMonitor)(HMONITOR, DWORD*);
-
- # if defined(__GNUC__) && (__GNUC__ >= 9)
- # pragma GCC diagnostic push
- # pragma GCC diagnostic ignored "-Wcast-function-type"
- # endif
- const PFN_GetProcessDpiAwareness GetProcessDpiAwareness
- = (PFN_GetProcessDpiAwareness)GetProcAddress(Shcore, "GetProcessDpiAwareness");
- const PFN_GetScaleFactorForMonitor GetScaleFactorForMonitor
- = (PFN_GetScaleFactorForMonitor)GetProcAddress(Shcore, "GetScaleFactorForMonitor");
- # if defined(__GNUC__) && (__GNUC__ >= 9)
- # pragma GCC diagnostic pop
- # endif
-
- DWORD dpiAware = 0;
- if (GetProcessDpiAwareness && GetScaleFactorForMonitor
- && GetProcessDpiAwareness(NULL, &dpiAware) == 0 && dpiAware != 0)
- {
- const HMONITOR hMon = parentWindowHandle != 0
- ? MonitorFromWindow((HWND)parentWindowHandle, MONITOR_DEFAULTTOPRIMARY)
- : MonitorFromPoint(POINT{0,0}, MONITOR_DEFAULTTOPRIMARY);
-
- DWORD scaleFactor = 0;
- if (GetScaleFactorForMonitor(hMon, &scaleFactor) == 0 && scaleFactor != 0)
- {
- FreeLibrary(Shcore);
- return static_cast<double>(scaleFactor) / 100.0;
- }
- }
-
- FreeLibrary(Shcore);
- }
- #elif defined(HAVE_X11)
- ::Display* const display = XOpenDisplay(nullptr);
- DISTRHO_SAFE_ASSERT_RETURN(display != nullptr, 1.0);
-
- XrmInitialize();
-
- if (char* const rms = XResourceManagerString(display))
- {
- if (const XrmDatabase sdb = XrmGetStringDatabase(rms))
- {
- char* type = nullptr;
- XrmValue ret;
-
- if (XrmGetResource(sdb, "Xft.dpi", "String", &type, &ret)
- && ret.addr != nullptr
- && type != nullptr
- && std::strncmp("String", type, 6) == 0)
- {
- if (const double dpi = std::atof(ret.addr))
- {
- XCloseDisplay(display);
- return dpi / 96;
- }
- }
- }
- }
-
- XCloseDisplay(display);
- #endif
-
- return 1.0;
-
- // might be unused
- (void)parentWindowHandle;
- }
- #endif // !DISTRHO_OS_MAC
-
- #endif
-
- /* ------------------------------------------------------------------------------------------------------------
- * UI::PrivateData special handling */
-
- UI::PrivateData* UI::PrivateData::s_nextPrivateData = nullptr;
-
- #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- ExternalWindow::PrivateData
- #else
- PluginWindow&
- #endif
- UI::PrivateData::createNextWindow(UI* const ui, const uint width, const uint height)
- {
- UI::PrivateData* const pData = s_nextPrivateData;
- #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- pData->window = new PluginWindow(ui, pData->app);
- ExternalWindow::PrivateData ewData;
- ewData.parentWindowHandle = pData->winId;
- ewData.width = width;
- ewData.height = height;
- ewData.scaleFactor = pData->scaleFactor != 0.0 ? pData->scaleFactor : getDesktopScaleFactor(pData->winId);
- ewData.title = DISTRHO_PLUGIN_NAME;
- ewData.isStandalone = DISTRHO_UI_IS_STANDALONE;
- return ewData;
- #else
- pData->window = new PluginWindow(ui, pData->app, pData->winId, width, height, pData->scaleFactor);
- return pData->window.getObject();
- #endif
- }
-
- /* ------------------------------------------------------------------------------------------------------------
- * UI */
-
- UI::UI(const uint width, const uint height, const bool automaticallyScale)
- : UIWidget(UI::PrivateData::createNextWindow(this, width, height)),
- uiData(UI::PrivateData::s_nextPrivateData)
- {
- #if !DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- if (width > 0 && height > 0)
- {
- Widget::setSize(width, height);
-
- if (automaticallyScale)
- setGeometryConstraints(width, height, true, true);
- }
- #else
- // unused
- return; (void)automaticallyScale;
- #endif
- }
-
- UI::~UI()
- {
- }
-
- /* ------------------------------------------------------------------------------------------------------------
- * Host state */
-
- bool UI::isResizable() const noexcept
- {
- #if DISTRHO_UI_USER_RESIZABLE
- # if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- return true;
- # else
- return uiData->window->isResizable();
- # endif
- #else
- return false;
- #endif
- }
-
- uint UI::getBackgroundColor() const noexcept
- {
- return uiData->bgColor;
- }
-
- uint UI::getForegroundColor() const noexcept
- {
- return uiData->fgColor;
- }
-
- double UI::getSampleRate() const noexcept
- {
- return uiData->sampleRate;
- }
-
- void UI::editParameter(uint32_t index, bool started)
- {
- uiData->editParamCallback(index + uiData->parameterOffset, started);
- }
-
- void UI::setParameterValue(uint32_t index, float value)
- {
- uiData->setParamCallback(index + uiData->parameterOffset, value);
- }
-
- #if DISTRHO_PLUGIN_WANT_STATE
- void UI::setState(const char* key, const char* value)
- {
- uiData->setStateCallback(key, value);
- }
- #endif
-
- #if DISTRHO_PLUGIN_WANT_STATEFILES
- bool UI::requestStateFile(const char* key)
- {
- return uiData->fileRequestCallback(key);
- }
- #endif
-
- #if DISTRHO_PLUGIN_WANT_MIDI_INPUT
- void UI::sendNote(uint8_t channel, uint8_t note, uint8_t velocity)
- {
- uiData->sendNoteCallback(channel, note, velocity);
- }
- #endif
-
- #if DISTRHO_PLUGIN_WANT_DIRECT_ACCESS
- /* ------------------------------------------------------------------------------------------------------------
- * Direct DSP access */
-
- void* UI::getPluginInstancePointer() const noexcept
- {
- return uiData->dspPtr;
- }
- #endif
-
- #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- /* ------------------------------------------------------------------------------------------------------------
- * External UI helpers */
-
- const char* UI::getNextBundlePath() noexcept
- {
- return g_nextBundlePath;
- }
-
- double UI::getNextScaleFactor() noexcept
- {
- return g_nextScaleFactor;
- }
-
- # if DISTRHO_PLUGIN_HAS_EMBED_UI
- uintptr_t UI::getNextWindowId() noexcept
- {
- return g_nextWindowId;
- }
- # endif
- #endif // DISTRHO_PLUGIN_HAS_EXTERNAL_UI
-
- /* ------------------------------------------------------------------------------------------------------------
- * DSP/Plugin Callbacks (optional) */
-
- void UI::sampleRateChanged(double)
- {
- }
-
- /* ------------------------------------------------------------------------------------------------------------
- * UI Callbacks (optional) */
-
- void UI::uiScaleFactorChanged(double)
- {
- }
-
- #if !DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- void UI::uiFocus(bool, DGL_NAMESPACE::CrossingMode)
- {
- }
-
- void UI::uiReshape(uint, uint)
- {
- // NOTE this must be the same as Window::onReshape
- pData->fallbackOnResize();
- }
-
- # ifndef DGL_FILE_BROWSER_DISABLED
- void UI::uiFileBrowserSelected(const char*)
- {
- }
- # endif
- #endif // !DISTRHO_PLUGIN_HAS_EXTERNAL_UI
-
- /* ------------------------------------------------------------------------------------------------------------
- * UI Resize Handling, internal */
-
- #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
- void UI::sizeChanged(const uint width, const uint height)
- {
- UIWidget::sizeChanged(width, height);
-
- uiData->setSizeCallback(width, height);
- }
- #else
- void UI::onResize(const ResizeEvent& ev)
- {
- UIWidget::onResize(ev);
-
- const uint width = ev.size.getWidth();
- const uint height = ev.size.getHeight();
- uiData->setSizeCallback(width, height);
- }
- #endif
-
- // -----------------------------------------------------------------------------------------------------------
-
- END_NAMESPACE_DISTRHO
|