The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

446 lines
16KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2020 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 6 End-User License
  8. Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
  9. End User License Agreement: www.juce.com/juce-6-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. #ifdef JUCE_GUI_BASICS_H_INCLUDED
  19. /* When you add this cpp file to your project, you mustn't include it in a file where you've
  20. already included any other headers - just put it inside a file on its own, possibly with your config
  21. flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
  22. header files that the compiler may be using.
  23. */
  24. #error "Incorrect use of JUCE cpp file"
  25. #endif
  26. #define NS_FORMAT_FUNCTION(F,A) // To avoid spurious warnings from GCC
  27. #define JUCE_CORE_INCLUDE_OBJC_HELPERS 1
  28. #define JUCE_CORE_INCLUDE_COM_SMART_PTR 1
  29. #define JUCE_CORE_INCLUDE_JNI_HELPERS 1
  30. #define JUCE_CORE_INCLUDE_NATIVE_HEADERS 1
  31. #define JUCE_EVENTS_INCLUDE_WIN32_MESSAGE_WINDOW 1
  32. #define JUCE_GRAPHICS_INCLUDE_COREGRAPHICS_HELPERS 1
  33. #define JUCE_GUI_BASICS_INCLUDE_XHEADERS 1
  34. #define JUCE_GUI_BASICS_INCLUDE_SCOPED_THREAD_DPI_AWARENESS_SETTER 1
  35. #include "juce_gui_basics.h"
  36. //==============================================================================
  37. #if JUCE_MAC
  38. #import <WebKit/WebKit.h>
  39. #import <IOKit/pwr_mgt/IOPMLib.h>
  40. #if JUCE_SUPPORT_CARBON
  41. #import <Carbon/Carbon.h> // still needed for SetSystemUIMode()
  42. #endif
  43. #elif JUCE_IOS
  44. #if JUCE_PUSH_NOTIFICATIONS && defined (__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
  45. #import <UserNotifications/UserNotifications.h>
  46. #endif
  47. #import <UIKit/UIActivityViewController.h>
  48. //==============================================================================
  49. #elif JUCE_WINDOWS
  50. #include <windowsx.h>
  51. #include <vfw.h>
  52. #include <commdlg.h>
  53. #include <commctrl.h>
  54. #if ! JUCE_MINGW
  55. #include <UIAutomation.h>
  56. #include <sapi.h>
  57. #endif
  58. #if JUCE_WEB_BROWSER
  59. #include <exdisp.h>
  60. #include <exdispid.h>
  61. #endif
  62. #if JUCE_MINGW
  63. #include <imm.h>
  64. #elif ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  65. #pragma comment(lib, "vfw32.lib")
  66. #pragma comment(lib, "imm32.lib")
  67. #pragma comment(lib, "comctl32.lib")
  68. #if JUCE_OPENGL
  69. #pragma comment(lib, "OpenGL32.Lib")
  70. #pragma comment(lib, "GlU32.Lib")
  71. #endif
  72. #if JUCE_DIRECT2D
  73. #pragma comment (lib, "Dwrite.lib")
  74. #pragma comment (lib, "D2d1.lib")
  75. #endif
  76. #endif
  77. #endif
  78. #include <set>
  79. //==============================================================================
  80. #define JUCE_ASSERT_MESSAGE_MANAGER_IS_LOCKED_OR_OFFSCREEN \
  81. jassert ((MessageManager::getInstanceWithoutCreating() != nullptr \
  82. && MessageManager::getInstanceWithoutCreating()->currentThreadHasLockedMessageManager()) \
  83. || getPeer() == nullptr);
  84. namespace juce
  85. {
  86. bool juce_areThereAnyAlwaysOnTopWindows();
  87. bool isEmbeddedInForegroundProcess (Component* c);
  88. #if ! JUCE_WINDOWS
  89. bool isEmbeddedInForegroundProcess (Component*) { return false; }
  90. #endif
  91. /* Returns true if this process is in the foreground, or if the viewComponent
  92. is embedded into a window owned by the foreground process.
  93. */
  94. static bool isForegroundOrEmbeddedProcess (Component* viewComponent)
  95. {
  96. return Process::isForegroundProcess() || isEmbeddedInForegroundProcess (viewComponent);
  97. }
  98. bool isWindowOnCurrentVirtualDesktop (void*);
  99. struct CustomMouseCursorInfo
  100. {
  101. CustomMouseCursorInfo() = default;
  102. CustomMouseCursorInfo (const Image& im, Point<int> hs, float scale = 1.0f) noexcept
  103. : image (im), hotspot (hs), scaleFactor (scale)
  104. {}
  105. Image image;
  106. Point<int> hotspot;
  107. float scaleFactor = 1.0f;
  108. };
  109. } // namespace juce
  110. #include "accessibility/juce_AccessibilityHandler.cpp"
  111. #include "components/juce_Component.cpp"
  112. #include "components/juce_ComponentListener.cpp"
  113. #include "components/juce_FocusTraverser.cpp"
  114. #include "mouse/juce_MouseInputSource.cpp"
  115. #include "desktop/juce_Displays.cpp"
  116. #include "desktop/juce_Desktop.cpp"
  117. #include "components/juce_ModalComponentManager.cpp"
  118. #include "mouse/juce_ComponentDragger.cpp"
  119. #include "mouse/juce_DragAndDropContainer.cpp"
  120. #include "mouse/juce_MouseEvent.cpp"
  121. #include "mouse/juce_MouseInactivityDetector.cpp"
  122. #include "mouse/juce_MouseListener.cpp"
  123. #include "keyboard/juce_CaretComponent.cpp"
  124. #include "keyboard/juce_KeyboardFocusTraverser.cpp"
  125. #include "keyboard/juce_KeyListener.cpp"
  126. #include "keyboard/juce_KeyPress.cpp"
  127. #include "keyboard/juce_ModifierKeys.cpp"
  128. #include "buttons/juce_ArrowButton.cpp"
  129. #include "buttons/juce_Button.cpp"
  130. #include "buttons/juce_DrawableButton.cpp"
  131. #include "buttons/juce_HyperlinkButton.cpp"
  132. #include "buttons/juce_ImageButton.cpp"
  133. #include "buttons/juce_ShapeButton.cpp"
  134. #include "buttons/juce_TextButton.cpp"
  135. #include "buttons/juce_ToggleButton.cpp"
  136. #include "buttons/juce_ToolbarButton.cpp"
  137. #include "drawables/juce_Drawable.cpp"
  138. #include "drawables/juce_DrawableComposite.cpp"
  139. #include "drawables/juce_DrawableImage.cpp"
  140. #include "drawables/juce_DrawablePath.cpp"
  141. #include "drawables/juce_DrawableRectangle.cpp"
  142. #include "drawables/juce_DrawableShape.cpp"
  143. #include "drawables/juce_DrawableText.cpp"
  144. #include "drawables/juce_SVGParser.cpp"
  145. #include "filebrowser/juce_DirectoryContentsDisplayComponent.cpp"
  146. #include "filebrowser/juce_DirectoryContentsList.cpp"
  147. #include "filebrowser/juce_FileBrowserComponent.cpp"
  148. #include "filebrowser/juce_FileChooser.cpp"
  149. #include "filebrowser/juce_FileChooserDialogBox.cpp"
  150. #include "filebrowser/juce_FileListComponent.cpp"
  151. #include "filebrowser/juce_FilenameComponent.cpp"
  152. #include "filebrowser/juce_FileSearchPathListComponent.cpp"
  153. #include "filebrowser/juce_FileTreeComponent.cpp"
  154. #include "filebrowser/juce_ImagePreviewComponent.cpp"
  155. #include "filebrowser/juce_ContentSharer.cpp"
  156. #include "layout/juce_ComponentAnimator.cpp"
  157. #include "layout/juce_ComponentBoundsConstrainer.cpp"
  158. #include "layout/juce_ComponentBuilder.cpp"
  159. #include "layout/juce_ComponentMovementWatcher.cpp"
  160. #include "layout/juce_ConcertinaPanel.cpp"
  161. #include "layout/juce_GroupComponent.cpp"
  162. #include "layout/juce_MultiDocumentPanel.cpp"
  163. #include "layout/juce_ResizableBorderComponent.cpp"
  164. #include "layout/juce_ResizableCornerComponent.cpp"
  165. #include "layout/juce_ResizableEdgeComponent.cpp"
  166. #include "layout/juce_ScrollBar.cpp"
  167. #include "layout/juce_SidePanel.cpp"
  168. #include "layout/juce_StretchableLayoutManager.cpp"
  169. #include "layout/juce_StretchableLayoutResizerBar.cpp"
  170. #include "layout/juce_StretchableObjectResizer.cpp"
  171. #include "layout/juce_TabbedButtonBar.cpp"
  172. #include "layout/juce_TabbedComponent.cpp"
  173. #include "layout/juce_Viewport.cpp"
  174. #include "lookandfeel/juce_LookAndFeel.cpp"
  175. #include "lookandfeel/juce_LookAndFeel_V2.cpp"
  176. #include "lookandfeel/juce_LookAndFeel_V1.cpp"
  177. #include "lookandfeel/juce_LookAndFeel_V3.cpp"
  178. #include "lookandfeel/juce_LookAndFeel_V4.cpp"
  179. #include "menus/juce_MenuBarComponent.cpp"
  180. #include "menus/juce_BurgerMenuComponent.cpp"
  181. #include "menus/juce_MenuBarModel.cpp"
  182. #include "menus/juce_PopupMenu.cpp"
  183. #include "positioning/juce_MarkerList.cpp"
  184. #include "positioning/juce_RelativeCoordinate.cpp"
  185. #include "positioning/juce_RelativeCoordinatePositioner.cpp"
  186. #include "positioning/juce_RelativeParallelogram.cpp"
  187. #include "positioning/juce_RelativePoint.cpp"
  188. #include "positioning/juce_RelativePointPath.cpp"
  189. #include "positioning/juce_RelativeRectangle.cpp"
  190. #include "properties/juce_BooleanPropertyComponent.cpp"
  191. #include "properties/juce_ButtonPropertyComponent.cpp"
  192. #include "properties/juce_ChoicePropertyComponent.cpp"
  193. #include "properties/juce_PropertyComponent.cpp"
  194. #include "properties/juce_PropertyPanel.cpp"
  195. #include "properties/juce_SliderPropertyComponent.cpp"
  196. #include "properties/juce_TextPropertyComponent.cpp"
  197. #include "properties/juce_MultiChoicePropertyComponent.cpp"
  198. #include "widgets/juce_ComboBox.cpp"
  199. #include "widgets/juce_ImageComponent.cpp"
  200. #include "widgets/juce_Label.cpp"
  201. #include "widgets/juce_ListBox.cpp"
  202. #include "widgets/juce_ProgressBar.cpp"
  203. #include "widgets/juce_Slider.cpp"
  204. #include "widgets/juce_TableHeaderComponent.cpp"
  205. #include "widgets/juce_TableListBox.cpp"
  206. #include "widgets/juce_TextEditor.cpp"
  207. #include "widgets/juce_ToolbarItemComponent.cpp"
  208. #include "widgets/juce_Toolbar.cpp"
  209. #include "widgets/juce_ToolbarItemPalette.cpp"
  210. #include "widgets/juce_TreeView.cpp"
  211. #include "windows/juce_AlertWindow.cpp"
  212. #include "windows/juce_CallOutBox.cpp"
  213. #include "windows/juce_ComponentPeer.cpp"
  214. #include "windows/juce_DialogWindow.cpp"
  215. #include "windows/juce_DocumentWindow.cpp"
  216. #include "windows/juce_ResizableWindow.cpp"
  217. #include "windows/juce_ThreadWithProgressWindow.cpp"
  218. #include "windows/juce_TooltipWindow.cpp"
  219. #include "windows/juce_TopLevelWindow.cpp"
  220. #include "commands/juce_ApplicationCommandInfo.cpp"
  221. #include "commands/juce_ApplicationCommandManager.cpp"
  222. #include "commands/juce_ApplicationCommandTarget.cpp"
  223. #include "commands/juce_KeyPressMappingSet.cpp"
  224. #include "application/juce_Application.cpp"
  225. #include "misc/juce_BubbleComponent.cpp"
  226. #include "misc/juce_DropShadower.cpp"
  227. #include "misc/juce_JUCESplashScreen.cpp"
  228. #include "layout/juce_FlexBox.cpp"
  229. #include "layout/juce_GridItem.cpp"
  230. #include "layout/juce_Grid.cpp"
  231. #if JUCE_IOS || JUCE_WINDOWS
  232. #include "native/juce_MultiTouchMapper.h"
  233. #endif
  234. #if JUCE_ANDROID || JUCE_WINDOWS
  235. #include "native/accessibility/juce_AccessibilityTextHelpers.h"
  236. #endif
  237. namespace juce
  238. {
  239. static const juce::Identifier disableAsyncLayerBackedViewIdentifier { "disableAsyncLayerBackedView" };
  240. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wmissing-prototypes")
  241. /** Used by the macOS and iOS peers. */
  242. void setComponentAsyncLayerBackedViewDisabled (juce::Component& comp, bool shouldDisableAsyncLayerBackedView)
  243. {
  244. comp.getProperties().set (disableAsyncLayerBackedViewIdentifier, shouldDisableAsyncLayerBackedView);
  245. }
  246. /** Used by the macOS and iOS peers. */
  247. bool getComponentAsyncLayerBackedViewDisabled (juce::Component& comp)
  248. {
  249. return comp.getProperties()[disableAsyncLayerBackedViewIdentifier];
  250. }
  251. JUCE_END_IGNORE_WARNINGS_GCC_LIKE
  252. } // namespace juce
  253. #if JUCE_MAC || JUCE_IOS
  254. #include "native/accessibility/juce_mac_AccessibilitySharedCode.mm"
  255. #if JUCE_IOS
  256. #include "native/accessibility/juce_ios_Accessibility.mm"
  257. #include "native/juce_ios_UIViewComponentPeer.mm"
  258. #include "native/juce_ios_Windowing.mm"
  259. #include "native/juce_ios_FileChooser.mm"
  260. #if JUCE_CONTENT_SHARING
  261. #include "native/juce_ios_ContentSharer.cpp"
  262. #endif
  263. #else
  264. #include "native/accessibility/juce_mac_Accessibility.mm"
  265. #include "native/juce_mac_NSViewComponentPeer.mm"
  266. #include "native/juce_mac_Windowing.mm"
  267. #include "native/juce_mac_MainMenu.mm"
  268. #include "native/juce_mac_FileChooser.mm"
  269. #endif
  270. #include "native/juce_mac_MouseCursor.mm"
  271. #elif JUCE_WINDOWS
  272. #if ! JUCE_MINGW
  273. #include "native/accessibility/juce_win32_WindowsUIAWrapper.h"
  274. #include "native/accessibility/juce_win32_AccessibilityElement.h"
  275. #include "native/accessibility/juce_win32_UIAHelpers.h"
  276. #include "native/accessibility/juce_win32_UIAProviders.h"
  277. #include "native/accessibility/juce_win32_AccessibilityElement.cpp"
  278. #include "native/accessibility/juce_win32_Accessibility.cpp"
  279. #else
  280. namespace juce
  281. {
  282. namespace WindowsAccessibility
  283. {
  284. long getUiaRootObjectId() { return -1; }
  285. bool handleWmGetObject (AccessibilityHandler*, WPARAM, LPARAM, LRESULT*) { return false; }
  286. void revokeUIAMapEntriesForWindow (HWND) {}
  287. }
  288. }
  289. #endif
  290. #include "native/juce_win32_Windowing.cpp"
  291. #include "native/juce_win32_DragAndDrop.cpp"
  292. #include "native/juce_win32_FileChooser.cpp"
  293. #elif JUCE_LINUX || JUCE_BSD
  294. #include "native/x11/juce_linux_X11_Symbols.cpp"
  295. #include "native/x11/juce_linux_X11_DragAndDrop.cpp"
  296. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wzero-as-null-pointer-constant")
  297. #include "native/juce_linux_Windowing.cpp"
  298. #include "native/x11/juce_linux_XWindowSystem.cpp"
  299. JUCE_END_IGNORE_WARNINGS_GCC_LIKE
  300. #include "native/juce_linux_FileChooser.cpp"
  301. #elif JUCE_ANDROID
  302. #include "native/accessibility/juce_android_Accessibility.cpp"
  303. #include "native/juce_android_Windowing.cpp"
  304. #include "native/juce_common_MimeTypes.cpp"
  305. #include "native/juce_android_FileChooser.cpp"
  306. #if JUCE_CONTENT_SHARING
  307. #include "native/juce_android_ContentSharer.cpp"
  308. #endif
  309. #endif
  310. namespace juce
  311. {
  312. #if ! JUCE_NATIVE_ACCESSIBILITY_INCLUDED
  313. class AccessibilityHandler::AccessibilityNativeImpl { public: AccessibilityNativeImpl (AccessibilityHandler&) {} };
  314. void AccessibilityHandler::notifyAccessibilityEvent (AccessibilityEvent) const {}
  315. void AccessibilityHandler::postAnnouncement (const String&, AnnouncementPriority) {}
  316. AccessibilityNativeHandle* AccessibilityHandler::getNativeImplementation() const { return nullptr; }
  317. void notifyAccessibilityEventInternal (const AccessibilityHandler&, InternalAccessibilityEvent) {}
  318. std::unique_ptr<AccessibilityHandler::AccessibilityNativeImpl> AccessibilityHandler::createNativeImpl (AccessibilityHandler&)
  319. {
  320. return nullptr;
  321. }
  322. #else
  323. std::unique_ptr<AccessibilityHandler::AccessibilityNativeImpl> AccessibilityHandler::createNativeImpl (AccessibilityHandler& handler)
  324. {
  325. return std::make_unique<AccessibilityNativeImpl> (handler);
  326. }
  327. #endif
  328. }
  329. //==============================================================================
  330. #if JUCE_WINDOWS
  331. bool juce::isWindowOnCurrentVirtualDesktop (void* x)
  332. {
  333. if (x == nullptr)
  334. return false;
  335. static auto* desktopManager = []
  336. {
  337. // IVirtualDesktopManager Copied from ShObjdl_core.h, because it may not be defined
  338. MIDL_INTERFACE ("a5cd92ff-29be-454c-8d04-d82879fb3f1b")
  339. juce_IVirtualDesktopManager : public IUnknown
  340. {
  341. public:
  342. virtual HRESULT STDMETHODCALLTYPE IsWindowOnCurrentVirtualDesktop(
  343. __RPC__in HWND topLevelWindow,
  344. __RPC__out BOOL * onCurrentDesktop) = 0;
  345. virtual HRESULT STDMETHODCALLTYPE GetWindowDesktopId(
  346. __RPC__in HWND topLevelWindow,
  347. __RPC__out GUID * desktopId) = 0;
  348. virtual HRESULT STDMETHODCALLTYPE MoveWindowToDesktop(
  349. __RPC__in HWND topLevelWindow,
  350. __RPC__in REFGUID desktopId) = 0;
  351. };
  352. juce_IVirtualDesktopManager* result = nullptr;
  353. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wlanguage-extension-token")
  354. class DECLSPEC_UUID("aa509086-5ca9-4c25-8f95-589d3c07b48a") juce_VirtualDesktopManager;
  355. if (SUCCEEDED (CoCreateInstance (__uuidof (juce_VirtualDesktopManager), nullptr, CLSCTX_ALL, IID_PPV_ARGS (&result))))
  356. return result;
  357. JUCE_END_IGNORE_WARNINGS_GCC_LIKE
  358. return static_cast<juce_IVirtualDesktopManager*> (nullptr);
  359. }();
  360. BOOL current = false;
  361. if (auto* dm = desktopManager)
  362. if (SUCCEEDED (dm->IsWindowOnCurrentVirtualDesktop (static_cast<HWND> (x), &current)))
  363. return current != false;
  364. return true;
  365. }
  366. #else
  367. bool juce::isWindowOnCurrentVirtualDesktop (void*) { return true; }
  368. juce::ScopedDPIAwarenessDisabler::ScopedDPIAwarenessDisabler() { ignoreUnused (previousContext); }
  369. juce::ScopedDPIAwarenessDisabler::~ScopedDPIAwarenessDisabler() {}
  370. #endif
  371. // Depends on types defined in platform-specific windowing files
  372. #include "mouse/juce_MouseCursor.cpp"