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.

439 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. ScaledImage image;
  102. Point<int> hotspot;
  103. };
  104. } // namespace juce
  105. #include "accessibility/juce_AccessibilityHandler.cpp"
  106. #include "components/juce_Component.cpp"
  107. #include "components/juce_ComponentListener.cpp"
  108. #include "components/juce_FocusTraverser.cpp"
  109. #include "mouse/juce_MouseInputSource.cpp"
  110. #include "desktop/juce_Displays.cpp"
  111. #include "desktop/juce_Desktop.cpp"
  112. #include "components/juce_ModalComponentManager.cpp"
  113. #include "mouse/juce_ComponentDragger.cpp"
  114. #include "mouse/juce_DragAndDropContainer.cpp"
  115. #include "mouse/juce_MouseEvent.cpp"
  116. #include "mouse/juce_MouseInactivityDetector.cpp"
  117. #include "mouse/juce_MouseListener.cpp"
  118. #include "keyboard/juce_CaretComponent.cpp"
  119. #include "keyboard/juce_KeyboardFocusTraverser.cpp"
  120. #include "keyboard/juce_KeyListener.cpp"
  121. #include "keyboard/juce_KeyPress.cpp"
  122. #include "keyboard/juce_ModifierKeys.cpp"
  123. #include "buttons/juce_ArrowButton.cpp"
  124. #include "buttons/juce_Button.cpp"
  125. #include "buttons/juce_DrawableButton.cpp"
  126. #include "buttons/juce_HyperlinkButton.cpp"
  127. #include "buttons/juce_ImageButton.cpp"
  128. #include "buttons/juce_ShapeButton.cpp"
  129. #include "buttons/juce_TextButton.cpp"
  130. #include "buttons/juce_ToggleButton.cpp"
  131. #include "buttons/juce_ToolbarButton.cpp"
  132. #include "drawables/juce_Drawable.cpp"
  133. #include "drawables/juce_DrawableComposite.cpp"
  134. #include "drawables/juce_DrawableImage.cpp"
  135. #include "drawables/juce_DrawablePath.cpp"
  136. #include "drawables/juce_DrawableRectangle.cpp"
  137. #include "drawables/juce_DrawableShape.cpp"
  138. #include "drawables/juce_DrawableText.cpp"
  139. #include "drawables/juce_SVGParser.cpp"
  140. #include "filebrowser/juce_DirectoryContentsDisplayComponent.cpp"
  141. #include "filebrowser/juce_DirectoryContentsList.cpp"
  142. #include "filebrowser/juce_FileBrowserComponent.cpp"
  143. #include "filebrowser/juce_FileChooser.cpp"
  144. #include "filebrowser/juce_FileChooserDialogBox.cpp"
  145. #include "filebrowser/juce_FileListComponent.cpp"
  146. #include "filebrowser/juce_FilenameComponent.cpp"
  147. #include "filebrowser/juce_FileSearchPathListComponent.cpp"
  148. #include "filebrowser/juce_FileTreeComponent.cpp"
  149. #include "filebrowser/juce_ImagePreviewComponent.cpp"
  150. #include "filebrowser/juce_ContentSharer.cpp"
  151. #include "layout/juce_ComponentAnimator.cpp"
  152. #include "layout/juce_ComponentBoundsConstrainer.cpp"
  153. #include "layout/juce_ComponentBuilder.cpp"
  154. #include "layout/juce_ComponentMovementWatcher.cpp"
  155. #include "layout/juce_ConcertinaPanel.cpp"
  156. #include "layout/juce_GroupComponent.cpp"
  157. #include "layout/juce_MultiDocumentPanel.cpp"
  158. #include "layout/juce_ResizableBorderComponent.cpp"
  159. #include "layout/juce_ResizableCornerComponent.cpp"
  160. #include "layout/juce_ResizableEdgeComponent.cpp"
  161. #include "layout/juce_ScrollBar.cpp"
  162. #include "layout/juce_SidePanel.cpp"
  163. #include "layout/juce_StretchableLayoutManager.cpp"
  164. #include "layout/juce_StretchableLayoutResizerBar.cpp"
  165. #include "layout/juce_StretchableObjectResizer.cpp"
  166. #include "layout/juce_TabbedButtonBar.cpp"
  167. #include "layout/juce_TabbedComponent.cpp"
  168. #include "layout/juce_Viewport.cpp"
  169. #include "lookandfeel/juce_LookAndFeel.cpp"
  170. #include "lookandfeel/juce_LookAndFeel_V2.cpp"
  171. #include "lookandfeel/juce_LookAndFeel_V1.cpp"
  172. #include "lookandfeel/juce_LookAndFeel_V3.cpp"
  173. #include "lookandfeel/juce_LookAndFeel_V4.cpp"
  174. #include "menus/juce_MenuBarComponent.cpp"
  175. #include "menus/juce_BurgerMenuComponent.cpp"
  176. #include "menus/juce_MenuBarModel.cpp"
  177. #include "menus/juce_PopupMenu.cpp"
  178. #include "positioning/juce_MarkerList.cpp"
  179. #include "positioning/juce_RelativeCoordinate.cpp"
  180. #include "positioning/juce_RelativeCoordinatePositioner.cpp"
  181. #include "positioning/juce_RelativeParallelogram.cpp"
  182. #include "positioning/juce_RelativePoint.cpp"
  183. #include "positioning/juce_RelativePointPath.cpp"
  184. #include "positioning/juce_RelativeRectangle.cpp"
  185. #include "properties/juce_BooleanPropertyComponent.cpp"
  186. #include "properties/juce_ButtonPropertyComponent.cpp"
  187. #include "properties/juce_ChoicePropertyComponent.cpp"
  188. #include "properties/juce_PropertyComponent.cpp"
  189. #include "properties/juce_PropertyPanel.cpp"
  190. #include "properties/juce_SliderPropertyComponent.cpp"
  191. #include "properties/juce_TextPropertyComponent.cpp"
  192. #include "properties/juce_MultiChoicePropertyComponent.cpp"
  193. #include "widgets/juce_ComboBox.cpp"
  194. #include "widgets/juce_ImageComponent.cpp"
  195. #include "widgets/juce_Label.cpp"
  196. #include "widgets/juce_ListBox.cpp"
  197. #include "widgets/juce_ProgressBar.cpp"
  198. #include "widgets/juce_Slider.cpp"
  199. #include "widgets/juce_TableHeaderComponent.cpp"
  200. #include "widgets/juce_TableListBox.cpp"
  201. #include "widgets/juce_TextEditor.cpp"
  202. #include "widgets/juce_ToolbarItemComponent.cpp"
  203. #include "widgets/juce_Toolbar.cpp"
  204. #include "widgets/juce_ToolbarItemPalette.cpp"
  205. #include "widgets/juce_TreeView.cpp"
  206. #include "windows/juce_AlertWindow.cpp"
  207. #include "windows/juce_CallOutBox.cpp"
  208. #include "windows/juce_ComponentPeer.cpp"
  209. #include "windows/juce_DialogWindow.cpp"
  210. #include "windows/juce_DocumentWindow.cpp"
  211. #include "windows/juce_ResizableWindow.cpp"
  212. #include "windows/juce_ThreadWithProgressWindow.cpp"
  213. #include "windows/juce_TooltipWindow.cpp"
  214. #include "windows/juce_TopLevelWindow.cpp"
  215. #include "commands/juce_ApplicationCommandInfo.cpp"
  216. #include "commands/juce_ApplicationCommandManager.cpp"
  217. #include "commands/juce_ApplicationCommandTarget.cpp"
  218. #include "commands/juce_KeyPressMappingSet.cpp"
  219. #include "application/juce_Application.cpp"
  220. #include "misc/juce_BubbleComponent.cpp"
  221. #include "misc/juce_DropShadower.cpp"
  222. #include "misc/juce_JUCESplashScreen.cpp"
  223. #include "layout/juce_FlexBox.cpp"
  224. #include "layout/juce_GridItem.cpp"
  225. #include "layout/juce_Grid.cpp"
  226. #if JUCE_IOS || JUCE_WINDOWS
  227. #include "native/juce_MultiTouchMapper.h"
  228. #endif
  229. #if JUCE_ANDROID || JUCE_WINDOWS
  230. #include "native/accessibility/juce_AccessibilityTextHelpers.h"
  231. #endif
  232. namespace juce
  233. {
  234. static const juce::Identifier disableAsyncLayerBackedViewIdentifier { "disableAsyncLayerBackedView" };
  235. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wmissing-prototypes")
  236. /** Used by the macOS and iOS peers. */
  237. void setComponentAsyncLayerBackedViewDisabled (juce::Component& comp, bool shouldDisableAsyncLayerBackedView)
  238. {
  239. comp.getProperties().set (disableAsyncLayerBackedViewIdentifier, shouldDisableAsyncLayerBackedView);
  240. }
  241. /** Used by the macOS and iOS peers. */
  242. bool getComponentAsyncLayerBackedViewDisabled (juce::Component& comp)
  243. {
  244. return comp.getProperties()[disableAsyncLayerBackedViewIdentifier];
  245. }
  246. JUCE_END_IGNORE_WARNINGS_GCC_LIKE
  247. } // namespace juce
  248. #if JUCE_MAC || JUCE_IOS
  249. #include "native/accessibility/juce_mac_AccessibilitySharedCode.mm"
  250. #if JUCE_IOS
  251. #include "native/accessibility/juce_ios_Accessibility.mm"
  252. #include "native/juce_ios_UIViewComponentPeer.mm"
  253. #include "native/juce_ios_Windowing.mm"
  254. #include "native/juce_ios_FileChooser.mm"
  255. #if JUCE_CONTENT_SHARING
  256. #include "native/juce_ios_ContentSharer.cpp"
  257. #endif
  258. #else
  259. #include "native/accessibility/juce_mac_Accessibility.mm"
  260. #include "native/juce_mac_NSViewComponentPeer.mm"
  261. #include "native/juce_mac_Windowing.mm"
  262. #include "native/juce_mac_MainMenu.mm"
  263. #include "native/juce_mac_FileChooser.mm"
  264. #endif
  265. #include "native/juce_mac_MouseCursor.mm"
  266. #elif JUCE_WINDOWS
  267. #if ! JUCE_MINGW
  268. #include "native/accessibility/juce_win32_WindowsUIAWrapper.h"
  269. #include "native/accessibility/juce_win32_AccessibilityElement.h"
  270. #include "native/accessibility/juce_win32_UIAHelpers.h"
  271. #include "native/accessibility/juce_win32_UIAProviders.h"
  272. #include "native/accessibility/juce_win32_AccessibilityElement.cpp"
  273. #include "native/accessibility/juce_win32_Accessibility.cpp"
  274. #else
  275. namespace juce
  276. {
  277. namespace WindowsAccessibility
  278. {
  279. long getUiaRootObjectId() { return -1; }
  280. bool handleWmGetObject (AccessibilityHandler*, WPARAM, LPARAM, LRESULT*) { return false; }
  281. void revokeUIAMapEntriesForWindow (HWND) {}
  282. }
  283. }
  284. #endif
  285. #include "native/juce_win32_Windowing.cpp"
  286. #include "native/juce_win32_DragAndDrop.cpp"
  287. #include "native/juce_win32_FileChooser.cpp"
  288. #elif JUCE_LINUX || JUCE_BSD
  289. #include "native/x11/juce_linux_X11_Symbols.cpp"
  290. #include "native/x11/juce_linux_X11_DragAndDrop.cpp"
  291. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wzero-as-null-pointer-constant")
  292. #include "native/juce_linux_Windowing.cpp"
  293. #include "native/x11/juce_linux_XWindowSystem.cpp"
  294. JUCE_END_IGNORE_WARNINGS_GCC_LIKE
  295. #include "native/juce_linux_FileChooser.cpp"
  296. #elif JUCE_ANDROID
  297. #include "native/accessibility/juce_android_Accessibility.cpp"
  298. #include "native/juce_android_Windowing.cpp"
  299. #include "native/juce_common_MimeTypes.cpp"
  300. #include "native/juce_android_FileChooser.cpp"
  301. #if JUCE_CONTENT_SHARING
  302. #include "native/juce_android_ContentSharer.cpp"
  303. #endif
  304. #endif
  305. namespace juce
  306. {
  307. #if ! JUCE_NATIVE_ACCESSIBILITY_INCLUDED
  308. class AccessibilityHandler::AccessibilityNativeImpl { public: AccessibilityNativeImpl (AccessibilityHandler&) {} };
  309. void AccessibilityHandler::notifyAccessibilityEvent (AccessibilityEvent) const {}
  310. void AccessibilityHandler::postAnnouncement (const String&, AnnouncementPriority) {}
  311. AccessibilityNativeHandle* AccessibilityHandler::getNativeImplementation() const { return nullptr; }
  312. void notifyAccessibilityEventInternal (const AccessibilityHandler&, InternalAccessibilityEvent) {}
  313. std::unique_ptr<AccessibilityHandler::AccessibilityNativeImpl> AccessibilityHandler::createNativeImpl (AccessibilityHandler&)
  314. {
  315. return nullptr;
  316. }
  317. #else
  318. std::unique_ptr<AccessibilityHandler::AccessibilityNativeImpl> AccessibilityHandler::createNativeImpl (AccessibilityHandler& handler)
  319. {
  320. return std::make_unique<AccessibilityNativeImpl> (handler);
  321. }
  322. #endif
  323. }
  324. //==============================================================================
  325. #if JUCE_WINDOWS
  326. bool juce::isWindowOnCurrentVirtualDesktop (void* x)
  327. {
  328. if (x == nullptr)
  329. return false;
  330. static auto* desktopManager = []
  331. {
  332. // IVirtualDesktopManager Copied from ShObjdl_core.h, because it may not be defined
  333. MIDL_INTERFACE ("a5cd92ff-29be-454c-8d04-d82879fb3f1b")
  334. juce_IVirtualDesktopManager : public IUnknown
  335. {
  336. public:
  337. virtual HRESULT STDMETHODCALLTYPE IsWindowOnCurrentVirtualDesktop(
  338. __RPC__in HWND topLevelWindow,
  339. __RPC__out BOOL * onCurrentDesktop) = 0;
  340. virtual HRESULT STDMETHODCALLTYPE GetWindowDesktopId(
  341. __RPC__in HWND topLevelWindow,
  342. __RPC__out GUID * desktopId) = 0;
  343. virtual HRESULT STDMETHODCALLTYPE MoveWindowToDesktop(
  344. __RPC__in HWND topLevelWindow,
  345. __RPC__in REFGUID desktopId) = 0;
  346. };
  347. juce_IVirtualDesktopManager* result = nullptr;
  348. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wlanguage-extension-token")
  349. class DECLSPEC_UUID("aa509086-5ca9-4c25-8f95-589d3c07b48a") juce_VirtualDesktopManager;
  350. if (SUCCEEDED (CoCreateInstance (__uuidof (juce_VirtualDesktopManager), nullptr, CLSCTX_ALL, IID_PPV_ARGS (&result))))
  351. return result;
  352. JUCE_END_IGNORE_WARNINGS_GCC_LIKE
  353. return static_cast<juce_IVirtualDesktopManager*> (nullptr);
  354. }();
  355. BOOL current = false;
  356. if (auto* dm = desktopManager)
  357. if (SUCCEEDED (dm->IsWindowOnCurrentVirtualDesktop (static_cast<HWND> (x), &current)))
  358. return current != false;
  359. return true;
  360. }
  361. #else
  362. bool juce::isWindowOnCurrentVirtualDesktop (void*) { return true; }
  363. juce::ScopedDPIAwarenessDisabler::ScopedDPIAwarenessDisabler() { ignoreUnused (previousContext); }
  364. juce::ScopedDPIAwarenessDisabler::~ScopedDPIAwarenessDisabler() {}
  365. #endif
  366. // Depends on types defined in platform-specific windowing files
  367. #include "mouse/juce_MouseCursor.cpp"