Audio plugin host https://kx.studio/carla
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.

295 lines
10KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifdef JUCE_GUI_BASICS_H_INCLUDED
  18. /* When you add this cpp file to your project, you mustn't include it in a file where you've
  19. already included any other headers - just put it inside a file on its own, possibly with your config
  20. flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
  21. header files that the compiler may be using.
  22. */
  23. #error "Incorrect use of JUCE cpp file"
  24. #endif
  25. #define NS_FORMAT_FUNCTION(F,A) // To avoid spurious warnings from GCC
  26. #define JUCE_CORE_INCLUDE_OBJC_HELPERS 1
  27. #define JUCE_CORE_INCLUDE_COM_SMART_PTR 1
  28. #define JUCE_CORE_INCLUDE_JNI_HELPERS 1
  29. #define JUCE_CORE_INCLUDE_NATIVE_HEADERS 1
  30. #define JUCE_EVENTS_INCLUDE_WIN32_MESSAGE_WINDOW 1
  31. #define JUCE_GRAPHICS_INCLUDE_COREGRAPHICS_HELPERS 1
  32. #include "juce_gui_basics.h"
  33. //==============================================================================
  34. #if JUCE_MAC
  35. #import <WebKit/WebKit.h>
  36. #import <IOKit/pwr_mgt/IOPMLib.h>
  37. #if JUCE_SUPPORT_CARBON
  38. #define Point CarbonDummyPointName
  39. #define Component CarbonDummyCompName
  40. #import <Carbon/Carbon.h> // still needed for SetSystemUIMode()
  41. #undef Point
  42. #undef Component
  43. #endif
  44. //==============================================================================
  45. #elif JUCE_WINDOWS
  46. #include <windowsx.h>
  47. #include <vfw.h>
  48. #include <commdlg.h>
  49. #if JUCE_WEB_BROWSER
  50. #include <exdisp.h>
  51. #include <exdispid.h>
  52. #endif
  53. #if JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  54. #pragma comment(lib, "vfw32.lib")
  55. #pragma comment(lib, "imm32.lib")
  56. #endif
  57. #if JUCE_OPENGL
  58. #if JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  59. #pragma comment(lib, "OpenGL32.Lib")
  60. #pragma comment(lib, "GlU32.Lib")
  61. #endif
  62. #endif
  63. #if JUCE_QUICKTIME && JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  64. #pragma comment (lib, "QTMLClient.lib")
  65. #endif
  66. #if JUCE_DIRECT2D && JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  67. #pragma comment (lib, "Dwrite.lib")
  68. #pragma comment (lib, "D2d1.lib")
  69. #endif
  70. #if JUCE_MINGW
  71. #include <imm.h>
  72. #endif
  73. //==============================================================================
  74. #elif JUCE_LINUX
  75. #include <X11/Xlib.h>
  76. #include <X11/Xatom.h>
  77. #include <X11/Xresource.h>
  78. #include <X11/Xutil.h>
  79. #include <X11/Xmd.h>
  80. #include <X11/keysym.h>
  81. #include <X11/XKBlib.h>
  82. #include <X11/cursorfont.h>
  83. #include <unistd.h>
  84. #if JUCE_USE_XRANDR
  85. /* If you're trying to use Xrandr, you'll need to install the "libxrandr-dev" package.. */
  86. #include <X11/extensions/Xrandr.h>
  87. #endif
  88. #if JUCE_USE_XINERAMA
  89. /* If you're trying to use Xinerama, you'll need to install the "libxinerama-dev" package.. */
  90. #include <X11/extensions/Xinerama.h>
  91. #endif
  92. #if JUCE_USE_XSHM
  93. #include <X11/extensions/XShm.h>
  94. #include <sys/shm.h>
  95. #include <sys/ipc.h>
  96. #endif
  97. #if JUCE_USE_XRENDER
  98. // If you're missing these headers, try installing the libxrender-dev and libxcomposite-dev
  99. #include <X11/extensions/Xrender.h>
  100. #include <X11/extensions/Xcomposite.h>
  101. #endif
  102. #if JUCE_USE_XCURSOR
  103. // If you're missing this header, try installing the libxcursor-dev package
  104. #include <X11/Xcursor/Xcursor.h>
  105. #endif
  106. #undef SIZEOF
  107. #undef KeyPress
  108. #endif
  109. //==============================================================================
  110. namespace juce
  111. {
  112. #define ASSERT_MESSAGE_MANAGER_IS_LOCKED \
  113. jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager());
  114. #define ASSERT_MESSAGE_MANAGER_IS_LOCKED_OR_OFFSCREEN \
  115. jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager() || getPeer() == nullptr);
  116. extern bool juce_areThereAnyAlwaysOnTopWindows();
  117. #include "components/juce_Component.cpp"
  118. #include "components/juce_ComponentListener.cpp"
  119. #include "mouse/juce_MouseInputSource.cpp"
  120. #include "components/juce_Desktop.cpp"
  121. #include "components/juce_ModalComponentManager.cpp"
  122. #include "mouse/juce_ComponentDragger.cpp"
  123. #include "mouse/juce_DragAndDropContainer.cpp"
  124. #include "mouse/juce_MouseCursor.cpp"
  125. #include "mouse/juce_MouseEvent.cpp"
  126. #include "mouse/juce_MouseInactivityDetector.cpp"
  127. #include "mouse/juce_MouseListener.cpp"
  128. #include "keyboard/juce_CaretComponent.cpp"
  129. #include "keyboard/juce_KeyboardFocusTraverser.cpp"
  130. #include "keyboard/juce_KeyListener.cpp"
  131. #include "keyboard/juce_KeyPress.cpp"
  132. #include "keyboard/juce_ModifierKeys.cpp"
  133. #include "buttons/juce_ArrowButton.cpp"
  134. #include "buttons/juce_Button.cpp"
  135. #include "buttons/juce_DrawableButton.cpp"
  136. #include "buttons/juce_HyperlinkButton.cpp"
  137. #include "buttons/juce_ImageButton.cpp"
  138. #include "buttons/juce_ShapeButton.cpp"
  139. #include "buttons/juce_TextButton.cpp"
  140. #include "buttons/juce_ToggleButton.cpp"
  141. #include "buttons/juce_ToolbarButton.cpp"
  142. #include "drawables/juce_Drawable.cpp"
  143. #include "drawables/juce_DrawableComposite.cpp"
  144. #include "drawables/juce_DrawableImage.cpp"
  145. #include "drawables/juce_DrawablePath.cpp"
  146. #include "drawables/juce_DrawableRectangle.cpp"
  147. #include "drawables/juce_DrawableShape.cpp"
  148. #include "drawables/juce_DrawableText.cpp"
  149. #include "drawables/juce_SVGParser.cpp"
  150. #include "filebrowser/juce_DirectoryContentsDisplayComponent.cpp"
  151. #include "filebrowser/juce_DirectoryContentsList.cpp"
  152. #include "filebrowser/juce_FileBrowserComponent.cpp"
  153. #include "filebrowser/juce_FileChooser.cpp"
  154. #include "filebrowser/juce_FileChooserDialogBox.cpp"
  155. #include "filebrowser/juce_FileListComponent.cpp"
  156. #include "filebrowser/juce_FilenameComponent.cpp"
  157. #include "filebrowser/juce_FileSearchPathListComponent.cpp"
  158. #include "filebrowser/juce_FileTreeComponent.cpp"
  159. #include "filebrowser/juce_ImagePreviewComponent.cpp"
  160. #include "layout/juce_ComponentAnimator.cpp"
  161. #include "layout/juce_ComponentBoundsConstrainer.cpp"
  162. #include "layout/juce_ComponentBuilder.cpp"
  163. #include "layout/juce_ComponentMovementWatcher.cpp"
  164. #include "layout/juce_ConcertinaPanel.cpp"
  165. #include "layout/juce_GroupComponent.cpp"
  166. #include "layout/juce_MultiDocumentPanel.cpp"
  167. #include "layout/juce_ResizableBorderComponent.cpp"
  168. #include "layout/juce_ResizableCornerComponent.cpp"
  169. #include "layout/juce_ResizableEdgeComponent.cpp"
  170. #include "layout/juce_ScrollBar.cpp"
  171. #include "layout/juce_StretchableLayoutManager.cpp"
  172. #include "layout/juce_StretchableLayoutResizerBar.cpp"
  173. #include "layout/juce_StretchableObjectResizer.cpp"
  174. #include "layout/juce_TabbedButtonBar.cpp"
  175. #include "layout/juce_TabbedComponent.cpp"
  176. #include "layout/juce_Viewport.cpp"
  177. #include "lookandfeel/juce_LookAndFeel.cpp"
  178. #include "lookandfeel/juce_LookAndFeel_V2.cpp"
  179. #include "lookandfeel/juce_LookAndFeel_V1.cpp"
  180. #include "lookandfeel/juce_LookAndFeel_V3.cpp"
  181. #include "menus/juce_MenuBarComponent.cpp"
  182. #include "menus/juce_MenuBarModel.cpp"
  183. #include "menus/juce_PopupMenu.cpp"
  184. #include "positioning/juce_MarkerList.cpp"
  185. #include "positioning/juce_RelativeCoordinate.cpp"
  186. #include "positioning/juce_RelativeCoordinatePositioner.cpp"
  187. #include "positioning/juce_RelativeParallelogram.cpp"
  188. #include "positioning/juce_RelativePoint.cpp"
  189. #include "positioning/juce_RelativePointPath.cpp"
  190. #include "positioning/juce_RelativeRectangle.cpp"
  191. #include "properties/juce_BooleanPropertyComponent.cpp"
  192. #include "properties/juce_ButtonPropertyComponent.cpp"
  193. #include "properties/juce_ChoicePropertyComponent.cpp"
  194. #include "properties/juce_PropertyComponent.cpp"
  195. #include "properties/juce_PropertyPanel.cpp"
  196. #include "properties/juce_SliderPropertyComponent.cpp"
  197. #include "properties/juce_TextPropertyComponent.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. #if JUCE_IOS || JUCE_WINDOWS
  228. #include "native/juce_MultiTouchMapper.h"
  229. #endif
  230. #if JUCE_MAC || JUCE_IOS
  231. #if JUCE_IOS
  232. #include "native/juce_ios_UIViewComponentPeer.mm"
  233. #include "native/juce_ios_Windowing.mm"
  234. #else
  235. #include "native/juce_mac_NSViewComponentPeer.mm"
  236. #include "native/juce_mac_Windowing.mm"
  237. #include "native/juce_mac_MainMenu.mm"
  238. #endif
  239. #include "native/juce_mac_MouseCursor.mm"
  240. #include "native/juce_mac_FileChooser.mm"
  241. #elif JUCE_WINDOWS
  242. #include "native/juce_win32_Windowing.cpp"
  243. #include "native/juce_win32_DragAndDrop.cpp"
  244. #include "native/juce_win32_FileChooser.cpp"
  245. #elif JUCE_LINUX
  246. #include "native/juce_linux_Clipboard.cpp"
  247. #include "native/juce_linux_Windowing.cpp"
  248. #include "native/juce_linux_FileChooser.cpp"
  249. #elif JUCE_ANDROID
  250. #include "native/juce_android_Windowing.cpp"
  251. #include "native/juce_android_FileChooser.cpp"
  252. #endif
  253. }