|
- /*
- * 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.
- */
-
- #ifndef CARLA_PLUGIN_UI_HPP_INCLUDED
- #define CARLA_PLUGIN_UI_HPP_INCLUDED
-
- #include "CarlaUtils.hpp"
-
- // -----------------------------------------------------
-
- class CarlaPluginUI
- {
- public:
- class Callback {
- public:
- virtual ~Callback() {}
- virtual void handlePluginUIClosed() = 0;
- virtual void handlePluginUIResized(const uint width, const uint height) = 0;
- };
-
- virtual ~CarlaPluginUI() {}
- virtual void show() = 0;
- virtual void hide() = 0;
- virtual void focus() = 0;
- virtual void idle() = 0;
- virtual void setSize(const uint with, const uint height, const bool forceUpdate) = 0;
- virtual void setTitle(const char* const title) = 0;
- virtual void setChildWindow(void* const ptr) = 0;
- virtual void setTransientWinId(const uintptr_t winId) = 0;
- virtual void* getPtr() const noexcept = 0;
- #ifdef HAVE_X11
- virtual void* getDisplay() const noexcept = 0;
- #endif
-
- #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
- static bool tryTransientWinIdMatch(const uintptr_t pid, const char* const uiTitle, const uintptr_t winId, const bool centerUI);
- #endif
-
- #ifdef CARLA_OS_MAC
- static CarlaPluginUI* newCocoa(Callback*, uintptr_t, bool);
- #endif
- #ifdef CARLA_OS_WIN
- static CarlaPluginUI* newWindows(Callback*, uintptr_t, bool);
- #endif
- #ifdef HAVE_X11
- static CarlaPluginUI* newX11(Callback*, uintptr_t, bool);
- #endif
-
- protected:
- bool fIsIdling;
- bool fIsResizable;
- Callback* fCallback;
-
- CarlaPluginUI(Callback* const cb, const bool isResizable) noexcept
- : fIsIdling(false),
- fIsResizable(isResizable),
- fCallback(cb) {}
-
- CARLA_DECLARE_NON_COPY_CLASS(CarlaPluginUI)
- };
-
- // -----------------------------------------------------
-
- #endif // CARLA_PLUGIN_UI_HPP_INCLUDED
|