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.

juce_gui_basics.cpp 11KB

10 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software 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. #if defined (JUCE_GUI_BASICS_H_INCLUDED) && ! JUCE_AMALGAMATED_INCLUDE
  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. // Your project must contain an AppConfig.h file with your project-specific settings in it,
  26. // and your header search path must make it accessible to the module's files.
  27. #include "AppConfig.h"
  28. #define NS_FORMAT_FUNCTION(F,A) // To avoid spurious warnings from GCC
  29. #include "../juce_core/native/juce_BasicNativeHeaders.h"
  30. #include "juce_gui_basics.h"
  31. #if JUCE_MODULE_AVAILABLE_juce_opengl
  32. #include "../juce_opengl/juce_opengl.h"
  33. #endif
  34. //==============================================================================
  35. #if JUCE_MAC
  36. #import <WebKit/WebKit.h>
  37. #import <IOKit/pwr_mgt/IOPMLib.h>
  38. #if JUCE_SUPPORT_CARBON && ! (defined (MAC_OS_X_VERSION_10_6) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6)
  39. #define Point CarbonDummyPointName
  40. #define Component CarbonDummyCompName
  41. #import <Carbon/Carbon.h> // still needed for SetSystemUIMode()
  42. #undef Point
  43. #undef Component
  44. #endif
  45. //==============================================================================
  46. #elif JUCE_WINDOWS
  47. #include <windowsx.h>
  48. #include <vfw.h>
  49. #include <commdlg.h>
  50. #if JUCE_WEB_BROWSER
  51. #include <exdisp.h>
  52. #include <exdispid.h>
  53. #endif
  54. #if JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  55. #pragma comment(lib, "vfw32.lib")
  56. #pragma comment(lib, "imm32.lib")
  57. #endif
  58. #if JUCE_OPENGL
  59. #if JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  60. #pragma comment(lib, "OpenGL32.Lib")
  61. #pragma comment(lib, "GlU32.Lib")
  62. #endif
  63. #endif
  64. #if JUCE_QUICKTIME && JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  65. #pragma comment (lib, "QTMLClient.lib")
  66. #endif
  67. #if JUCE_DIRECT2D && JUCE_MSVC && ! JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  68. #pragma comment (lib, "Dwrite.lib")
  69. #pragma comment (lib, "D2d1.lib")
  70. #endif
  71. #if JUCE_MINGW
  72. #include <imm.h>
  73. #endif
  74. //==============================================================================
  75. #elif JUCE_LINUX
  76. #include <X11/Xlib.h>
  77. #include <X11/Xatom.h>
  78. #include <X11/Xresource.h>
  79. #include <X11/Xutil.h>
  80. #include <X11/Xmd.h>
  81. #include <X11/keysym.h>
  82. #include <X11/XKBlib.h>
  83. #include <X11/cursorfont.h>
  84. #include <unistd.h>
  85. #if JUCE_USE_XRANDR
  86. /* If you're trying to use Xrandr, you'll need to install the "libxrandr-dev" package.. */
  87. #include <X11/extensions/Xrandr.h>
  88. #endif
  89. #if JUCE_USE_XINERAMA
  90. /* If you're trying to use Xinerama, you'll need to install the "libxinerama-dev" package.. */
  91. #include <X11/extensions/Xinerama.h>
  92. #endif
  93. #if JUCE_USE_XSHM
  94. #include <X11/extensions/XShm.h>
  95. #include <sys/shm.h>
  96. #include <sys/ipc.h>
  97. #endif
  98. #if JUCE_USE_XRENDER
  99. // If you're missing these headers, try installing the libxrender-dev and libxcomposite-dev
  100. #include <X11/extensions/Xrender.h>
  101. #include <X11/extensions/Xcomposite.h>
  102. #endif
  103. #if JUCE_USE_XCURSOR
  104. // If you're missing this header, try installing the libxcursor-dev package
  105. #include <X11/Xcursor/Xcursor.h>
  106. #endif
  107. #undef SIZEOF
  108. #undef KeyPress
  109. #endif
  110. //==============================================================================
  111. namespace juce
  112. {
  113. #define ASSERT_MESSAGE_MANAGER_IS_LOCKED \
  114. jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager());
  115. #define ASSERT_MESSAGE_MANAGER_IS_LOCKED_OR_OFFSCREEN \
  116. jassert (MessageManager::getInstance()->currentThreadHasLockedMessageManager() || getPeer() == nullptr);
  117. extern bool juce_areThereAnyAlwaysOnTopWindows();
  118. #include "components/juce_Component.cpp"
  119. #include "components/juce_ComponentListener.cpp"
  120. #include "mouse/juce_MouseInputSource.cpp"
  121. #include "components/juce_Desktop.cpp"
  122. #include "components/juce_ModalComponentManager.cpp"
  123. #include "mouse/juce_ComponentDragger.cpp"
  124. #include "mouse/juce_DragAndDropContainer.cpp"
  125. #include "mouse/juce_MouseCursor.cpp"
  126. #include "mouse/juce_MouseEvent.cpp"
  127. #include "mouse/juce_MouseInactivityDetector.cpp"
  128. #include "mouse/juce_MouseListener.cpp"
  129. #include "keyboard/juce_CaretComponent.cpp"
  130. #include "keyboard/juce_KeyboardFocusTraverser.cpp"
  131. #include "keyboard/juce_KeyListener.cpp"
  132. #include "keyboard/juce_KeyPress.cpp"
  133. #include "keyboard/juce_ModifierKeys.cpp"
  134. #include "buttons/juce_ArrowButton.cpp"
  135. #include "buttons/juce_Button.cpp"
  136. #include "buttons/juce_DrawableButton.cpp"
  137. #include "buttons/juce_HyperlinkButton.cpp"
  138. #include "buttons/juce_ImageButton.cpp"
  139. #include "buttons/juce_ShapeButton.cpp"
  140. #include "buttons/juce_TextButton.cpp"
  141. #include "buttons/juce_ToggleButton.cpp"
  142. #include "buttons/juce_ToolbarButton.cpp"
  143. #include "drawables/juce_Drawable.cpp"
  144. #include "drawables/juce_DrawableComposite.cpp"
  145. #include "drawables/juce_DrawableImage.cpp"
  146. #include "drawables/juce_DrawablePath.cpp"
  147. #include "drawables/juce_DrawableRectangle.cpp"
  148. #include "drawables/juce_DrawableShape.cpp"
  149. #include "drawables/juce_DrawableText.cpp"
  150. #include "drawables/juce_SVGParser.cpp"
  151. #include "filebrowser/juce_DirectoryContentsDisplayComponent.cpp"
  152. #include "filebrowser/juce_DirectoryContentsList.cpp"
  153. #include "filebrowser/juce_FileBrowserComponent.cpp"
  154. #include "filebrowser/juce_FileChooser.cpp"
  155. #include "filebrowser/juce_FileChooserDialogBox.cpp"
  156. #include "filebrowser/juce_FileListComponent.cpp"
  157. #include "filebrowser/juce_FilenameComponent.cpp"
  158. #include "filebrowser/juce_FileSearchPathListComponent.cpp"
  159. #include "filebrowser/juce_FileTreeComponent.cpp"
  160. #include "filebrowser/juce_ImagePreviewComponent.cpp"
  161. #include "layout/juce_ComponentAnimator.cpp"
  162. #include "layout/juce_ComponentBoundsConstrainer.cpp"
  163. #include "layout/juce_ComponentBuilder.cpp"
  164. #include "layout/juce_ComponentMovementWatcher.cpp"
  165. #include "layout/juce_ConcertinaPanel.cpp"
  166. #include "layout/juce_GroupComponent.cpp"
  167. #include "layout/juce_MultiDocumentPanel.cpp"
  168. #include "layout/juce_ResizableBorderComponent.cpp"
  169. #include "layout/juce_ResizableCornerComponent.cpp"
  170. #include "layout/juce_ResizableEdgeComponent.cpp"
  171. #include "layout/juce_ScrollBar.cpp"
  172. #include "layout/juce_StretchableLayoutManager.cpp"
  173. #include "layout/juce_StretchableLayoutResizerBar.cpp"
  174. #include "layout/juce_StretchableObjectResizer.cpp"
  175. #include "layout/juce_TabbedButtonBar.cpp"
  176. #include "layout/juce_TabbedComponent.cpp"
  177. #include "layout/juce_Viewport.cpp"
  178. #include "lookandfeel/juce_LookAndFeel.cpp"
  179. #include "lookandfeel/juce_LookAndFeel_V2.cpp"
  180. #include "lookandfeel/juce_LookAndFeel_V1.cpp"
  181. #include "lookandfeel/juce_LookAndFeel_V3.cpp"
  182. #include "menus/juce_MenuBarComponent.cpp"
  183. #include "menus/juce_MenuBarModel.cpp"
  184. #include "menus/juce_PopupMenu.cpp"
  185. #include "positioning/juce_MarkerList.cpp"
  186. #include "positioning/juce_RelativeCoordinate.cpp"
  187. #include "positioning/juce_RelativeCoordinatePositioner.cpp"
  188. #include "positioning/juce_RelativeParallelogram.cpp"
  189. #include "positioning/juce_RelativePoint.cpp"
  190. #include "positioning/juce_RelativePointPath.cpp"
  191. #include "positioning/juce_RelativeRectangle.cpp"
  192. #include "properties/juce_BooleanPropertyComponent.cpp"
  193. #include "properties/juce_ButtonPropertyComponent.cpp"
  194. #include "properties/juce_ChoicePropertyComponent.cpp"
  195. #include "properties/juce_PropertyComponent.cpp"
  196. #include "properties/juce_PropertyPanel.cpp"
  197. #include "properties/juce_SliderPropertyComponent.cpp"
  198. #include "properties/juce_TextPropertyComponent.cpp"
  199. #include "widgets/juce_ComboBox.cpp"
  200. #include "widgets/juce_ImageComponent.cpp"
  201. #include "widgets/juce_Label.cpp"
  202. #include "widgets/juce_ListBox.cpp"
  203. #include "widgets/juce_ProgressBar.cpp"
  204. #include "widgets/juce_Slider.cpp"
  205. #include "widgets/juce_TableHeaderComponent.cpp"
  206. #include "widgets/juce_TableListBox.cpp"
  207. #include "widgets/juce_TextEditor.cpp"
  208. #include "widgets/juce_ToolbarItemComponent.cpp"
  209. #include "widgets/juce_Toolbar.cpp"
  210. #include "widgets/juce_ToolbarItemPalette.cpp"
  211. #include "widgets/juce_TreeView.cpp"
  212. #include "windows/juce_AlertWindow.cpp"
  213. #include "windows/juce_CallOutBox.cpp"
  214. #include "windows/juce_ComponentPeer.cpp"
  215. #include "windows/juce_DialogWindow.cpp"
  216. #include "windows/juce_DocumentWindow.cpp"
  217. #include "windows/juce_ResizableWindow.cpp"
  218. #include "windows/juce_ThreadWithProgressWindow.cpp"
  219. #include "windows/juce_TooltipWindow.cpp"
  220. #include "windows/juce_TopLevelWindow.cpp"
  221. #include "commands/juce_ApplicationCommandInfo.cpp"
  222. #include "commands/juce_ApplicationCommandManager.cpp"
  223. #include "commands/juce_ApplicationCommandTarget.cpp"
  224. #include "commands/juce_KeyPressMappingSet.cpp"
  225. #include "application/juce_Application.cpp"
  226. #include "misc/juce_BubbleComponent.cpp"
  227. #include "misc/juce_DropShadower.cpp"
  228. #if JUCE_IOS || JUCE_WINDOWS
  229. #include "native/juce_MultiTouchMapper.h"
  230. #endif
  231. #if JUCE_MAC || JUCE_IOS
  232. #include "../juce_core/native/juce_osx_ObjCHelpers.h"
  233. #include "../juce_graphics/native/juce_mac_CoreGraphicsHelpers.h"
  234. #include "../juce_graphics/native/juce_mac_CoreGraphicsContext.h"
  235. #if JUCE_IOS
  236. #include "native/juce_ios_UIViewComponentPeer.mm"
  237. #include "native/juce_ios_Windowing.mm"
  238. #else
  239. #include "native/juce_mac_NSViewComponentPeer.mm"
  240. #include "native/juce_mac_Windowing.mm"
  241. #include "native/juce_mac_MainMenu.mm"
  242. #endif
  243. #include "native/juce_mac_MouseCursor.mm"
  244. #include "native/juce_mac_FileChooser.mm"
  245. #elif JUCE_WINDOWS
  246. #include "../juce_core/native/juce_win32_ComSmartPtr.h"
  247. #include "../juce_events/native/juce_win32_HiddenMessageWindow.h"
  248. #include "native/juce_win32_Windowing.cpp"
  249. #include "native/juce_win32_DragAndDrop.cpp"
  250. #include "native/juce_win32_FileChooser.cpp"
  251. #elif JUCE_LINUX
  252. #include "native/juce_linux_Clipboard.cpp"
  253. #include "native/juce_linux_Windowing.cpp"
  254. #include "native/juce_linux_FileChooser.cpp"
  255. #elif JUCE_ANDROID
  256. #include "../juce_core/native/juce_android_JNIHelpers.h"
  257. #include "native/juce_android_Windowing.cpp"
  258. #include "native/juce_android_FileChooser.cpp"
  259. #endif
  260. }