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.

374 lines
14KB

  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. }
  99. #include "accessibility/juce_AccessibilityHandler.cpp"
  100. #include "components/juce_Component.cpp"
  101. #include "components/juce_ComponentListener.cpp"
  102. #include "components/juce_FocusTraverser.cpp"
  103. #include "mouse/juce_MouseInputSource.cpp"
  104. #include "desktop/juce_Displays.cpp"
  105. #include "desktop/juce_Desktop.cpp"
  106. #include "components/juce_ModalComponentManager.cpp"
  107. #include "mouse/juce_ComponentDragger.cpp"
  108. #include "mouse/juce_DragAndDropContainer.cpp"
  109. #include "mouse/juce_MouseCursor.cpp"
  110. #include "mouse/juce_MouseEvent.cpp"
  111. #include "mouse/juce_MouseInactivityDetector.cpp"
  112. #include "mouse/juce_MouseListener.cpp"
  113. #include "keyboard/juce_CaretComponent.cpp"
  114. #include "keyboard/juce_KeyboardFocusTraverser.cpp"
  115. #include "keyboard/juce_KeyListener.cpp"
  116. #include "keyboard/juce_KeyPress.cpp"
  117. #include "keyboard/juce_ModifierKeys.cpp"
  118. #include "buttons/juce_ArrowButton.cpp"
  119. #include "buttons/juce_Button.cpp"
  120. #include "buttons/juce_DrawableButton.cpp"
  121. #include "buttons/juce_HyperlinkButton.cpp"
  122. #include "buttons/juce_ImageButton.cpp"
  123. #include "buttons/juce_ShapeButton.cpp"
  124. #include "buttons/juce_TextButton.cpp"
  125. #include "buttons/juce_ToggleButton.cpp"
  126. #include "buttons/juce_ToolbarButton.cpp"
  127. #include "drawables/juce_Drawable.cpp"
  128. #include "drawables/juce_DrawableComposite.cpp"
  129. #include "drawables/juce_DrawableImage.cpp"
  130. #include "drawables/juce_DrawablePath.cpp"
  131. #include "drawables/juce_DrawableRectangle.cpp"
  132. #include "drawables/juce_DrawableShape.cpp"
  133. #include "drawables/juce_DrawableText.cpp"
  134. #include "drawables/juce_SVGParser.cpp"
  135. #include "filebrowser/juce_DirectoryContentsDisplayComponent.cpp"
  136. #include "filebrowser/juce_DirectoryContentsList.cpp"
  137. #include "filebrowser/juce_FileBrowserComponent.cpp"
  138. #include "filebrowser/juce_FileChooser.cpp"
  139. #include "filebrowser/juce_FileChooserDialogBox.cpp"
  140. #include "filebrowser/juce_FileListComponent.cpp"
  141. #include "filebrowser/juce_FilenameComponent.cpp"
  142. #include "filebrowser/juce_FileSearchPathListComponent.cpp"
  143. #include "filebrowser/juce_FileTreeComponent.cpp"
  144. #include "filebrowser/juce_ImagePreviewComponent.cpp"
  145. #include "filebrowser/juce_ContentSharer.cpp"
  146. #include "layout/juce_ComponentAnimator.cpp"
  147. #include "layout/juce_ComponentBoundsConstrainer.cpp"
  148. #include "layout/juce_ComponentBuilder.cpp"
  149. #include "layout/juce_ComponentMovementWatcher.cpp"
  150. #include "layout/juce_ConcertinaPanel.cpp"
  151. #include "layout/juce_GroupComponent.cpp"
  152. #include "layout/juce_MultiDocumentPanel.cpp"
  153. #include "layout/juce_ResizableBorderComponent.cpp"
  154. #include "layout/juce_ResizableCornerComponent.cpp"
  155. #include "layout/juce_ResizableEdgeComponent.cpp"
  156. #include "layout/juce_ScrollBar.cpp"
  157. #include "layout/juce_SidePanel.cpp"
  158. #include "layout/juce_StretchableLayoutManager.cpp"
  159. #include "layout/juce_StretchableLayoutResizerBar.cpp"
  160. #include "layout/juce_StretchableObjectResizer.cpp"
  161. #include "layout/juce_TabbedButtonBar.cpp"
  162. #include "layout/juce_TabbedComponent.cpp"
  163. #include "layout/juce_Viewport.cpp"
  164. #include "lookandfeel/juce_LookAndFeel.cpp"
  165. #include "lookandfeel/juce_LookAndFeel_V2.cpp"
  166. #include "lookandfeel/juce_LookAndFeel_V1.cpp"
  167. #include "lookandfeel/juce_LookAndFeel_V3.cpp"
  168. #include "lookandfeel/juce_LookAndFeel_V4.cpp"
  169. #include "menus/juce_MenuBarComponent.cpp"
  170. #include "menus/juce_BurgerMenuComponent.cpp"
  171. #include "menus/juce_MenuBarModel.cpp"
  172. #include "menus/juce_PopupMenu.cpp"
  173. #include "positioning/juce_MarkerList.cpp"
  174. #include "positioning/juce_RelativeCoordinate.cpp"
  175. #include "positioning/juce_RelativeCoordinatePositioner.cpp"
  176. #include "positioning/juce_RelativeParallelogram.cpp"
  177. #include "positioning/juce_RelativePoint.cpp"
  178. #include "positioning/juce_RelativePointPath.cpp"
  179. #include "positioning/juce_RelativeRectangle.cpp"
  180. #include "properties/juce_BooleanPropertyComponent.cpp"
  181. #include "properties/juce_ButtonPropertyComponent.cpp"
  182. #include "properties/juce_ChoicePropertyComponent.cpp"
  183. #include "properties/juce_PropertyComponent.cpp"
  184. #include "properties/juce_PropertyPanel.cpp"
  185. #include "properties/juce_SliderPropertyComponent.cpp"
  186. #include "properties/juce_TextPropertyComponent.cpp"
  187. #include "properties/juce_MultiChoicePropertyComponent.cpp"
  188. #include "widgets/juce_ComboBox.cpp"
  189. #include "widgets/juce_ImageComponent.cpp"
  190. #include "widgets/juce_Label.cpp"
  191. #include "widgets/juce_ListBox.cpp"
  192. #include "widgets/juce_ProgressBar.cpp"
  193. #include "widgets/juce_Slider.cpp"
  194. #include "widgets/juce_TableHeaderComponent.cpp"
  195. #include "widgets/juce_TableListBox.cpp"
  196. #include "widgets/juce_TextEditor.cpp"
  197. #include "widgets/juce_ToolbarItemComponent.cpp"
  198. #include "widgets/juce_Toolbar.cpp"
  199. #include "widgets/juce_ToolbarItemPalette.cpp"
  200. #include "widgets/juce_TreeView.cpp"
  201. #include "windows/juce_AlertWindow.cpp"
  202. #include "windows/juce_CallOutBox.cpp"
  203. #include "windows/juce_ComponentPeer.cpp"
  204. #include "windows/juce_DialogWindow.cpp"
  205. #include "windows/juce_DocumentWindow.cpp"
  206. #include "windows/juce_ResizableWindow.cpp"
  207. #include "windows/juce_ThreadWithProgressWindow.cpp"
  208. #include "windows/juce_TooltipWindow.cpp"
  209. #include "windows/juce_TopLevelWindow.cpp"
  210. #include "commands/juce_ApplicationCommandInfo.cpp"
  211. #include "commands/juce_ApplicationCommandManager.cpp"
  212. #include "commands/juce_ApplicationCommandTarget.cpp"
  213. #include "commands/juce_KeyPressMappingSet.cpp"
  214. #include "application/juce_Application.cpp"
  215. #include "misc/juce_BubbleComponent.cpp"
  216. #include "misc/juce_DropShadower.cpp"
  217. #include "misc/juce_JUCESplashScreen.cpp"
  218. #include "layout/juce_FlexBox.cpp"
  219. #include "layout/juce_GridItem.cpp"
  220. #include "layout/juce_Grid.cpp"
  221. #if JUCE_IOS || JUCE_WINDOWS
  222. #include "native/juce_MultiTouchMapper.h"
  223. #endif
  224. #if JUCE_ANDROID || JUCE_WINDOWS
  225. #include "native/accessibility/juce_AccessibilityTextHelpers.h"
  226. #endif
  227. namespace juce
  228. {
  229. static const juce::Identifier disableAsyncLayerBackedViewIdentifier { "disableAsyncLayerBackedView" };
  230. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wmissing-prototypes")
  231. /** Used by the macOS and iOS peers. */
  232. void setComponentAsyncLayerBackedViewDisabled (juce::Component& comp, bool shouldDisableAsyncLayerBackedView)
  233. {
  234. comp.getProperties().set (disableAsyncLayerBackedViewIdentifier, shouldDisableAsyncLayerBackedView);
  235. }
  236. /** Used by the macOS and iOS peers. */
  237. bool getComponentAsyncLayerBackedViewDisabled (juce::Component& comp)
  238. {
  239. return comp.getProperties()[disableAsyncLayerBackedViewIdentifier];
  240. }
  241. JUCE_END_IGNORE_WARNINGS_GCC_LIKE
  242. } // namespace juce
  243. #if JUCE_MAC || JUCE_IOS
  244. #include "native/accessibility/juce_mac_AccessibilitySharedCode.mm"
  245. #if JUCE_IOS
  246. #include "native/accessibility/juce_ios_Accessibility.mm"
  247. #include "native/juce_ios_UIViewComponentPeer.mm"
  248. #include "native/juce_ios_Windowing.mm"
  249. #include "native/juce_ios_FileChooser.mm"
  250. #if JUCE_CONTENT_SHARING
  251. #include "native/juce_ios_ContentSharer.cpp"
  252. #endif
  253. #else
  254. #include "native/accessibility/juce_mac_Accessibility.mm"
  255. #include "native/juce_mac_NSViewComponentPeer.mm"
  256. #include "native/juce_mac_Windowing.mm"
  257. #include "native/juce_mac_MainMenu.mm"
  258. #include "native/juce_mac_FileChooser.mm"
  259. #endif
  260. #include "native/juce_mac_MouseCursor.mm"
  261. #elif JUCE_WINDOWS
  262. #if ! JUCE_MINGW
  263. #include "native/accessibility/juce_win32_WindowsUIAWrapper.h"
  264. #include "native/accessibility/juce_win32_AccessibilityElement.h"
  265. #include "native/accessibility/juce_win32_UIAHelpers.h"
  266. #include "native/accessibility/juce_win32_UIAProviders.h"
  267. #include "native/accessibility/juce_win32_AccessibilityElement.cpp"
  268. #include "native/accessibility/juce_win32_Accessibility.cpp"
  269. #else
  270. namespace juce
  271. {
  272. namespace WindowsAccessibility
  273. {
  274. long getUiaRootObjectId() { return -1; }
  275. bool handleWmGetObject (AccessibilityHandler*, WPARAM, LPARAM, LRESULT*) { return false; }
  276. void revokeUIAMapEntriesForWindow (HWND) {}
  277. }
  278. }
  279. #endif
  280. #include "native/juce_win32_Windowing.cpp"
  281. #include "native/juce_win32_DragAndDrop.cpp"
  282. #include "native/juce_win32_FileChooser.cpp"
  283. #elif JUCE_LINUX || JUCE_BSD
  284. #include "native/x11/juce_linux_X11_Symbols.cpp"
  285. #include "native/x11/juce_linux_X11_DragAndDrop.cpp"
  286. JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wzero-as-null-pointer-constant")
  287. #include "native/juce_linux_Windowing.cpp"
  288. #include "native/x11/juce_linux_XWindowSystem.cpp"
  289. JUCE_END_IGNORE_WARNINGS_GCC_LIKE
  290. #include "native/juce_linux_FileChooser.cpp"
  291. #elif JUCE_ANDROID
  292. #include "native/accessibility/juce_android_Accessibility.cpp"
  293. #include "native/juce_android_Windowing.cpp"
  294. #include "native/juce_common_MimeTypes.cpp"
  295. #include "native/juce_android_FileChooser.cpp"
  296. #if JUCE_CONTENT_SHARING
  297. #include "native/juce_android_ContentSharer.cpp"
  298. #endif
  299. #endif
  300. namespace juce
  301. {
  302. #if ! JUCE_NATIVE_ACCESSIBILITY_INCLUDED
  303. class AccessibilityHandler::AccessibilityNativeImpl { public: AccessibilityNativeImpl (AccessibilityHandler&) {} };
  304. void AccessibilityHandler::notifyAccessibilityEvent (AccessibilityEvent) const {}
  305. void AccessibilityHandler::postAnnouncement (const String&, AnnouncementPriority) {}
  306. AccessibilityNativeHandle* AccessibilityHandler::getNativeImplementation() const { return nullptr; }
  307. void notifyAccessibilityEventInternal (const AccessibilityHandler&, InternalAccessibilityEvent) {}
  308. std::unique_ptr<AccessibilityHandler::AccessibilityNativeImpl> AccessibilityHandler::createNativeImpl (AccessibilityHandler&)
  309. {
  310. return nullptr;
  311. }
  312. #else
  313. std::unique_ptr<AccessibilityHandler::AccessibilityNativeImpl> AccessibilityHandler::createNativeImpl (AccessibilityHandler& handler)
  314. {
  315. return std::make_unique<AccessibilityNativeImpl> (handler);
  316. }
  317. #endif
  318. }