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_extra.cpp 4.7KB

9 years ago
8 years ago
9 years ago
9 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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_EXTRA_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 JUCE_CORE_INCLUDE_OBJC_HELPERS 1
  26. #define JUCE_CORE_INCLUDE_COM_SMART_PTR 1
  27. #define JUCE_CORE_INCLUDE_NATIVE_HEADERS 1
  28. #define JUCE_EVENTS_INCLUDE_WIN32_MESSAGE_WINDOW 1
  29. #define JUCE_GRAPHICS_INCLUDE_COREGRAPHICS_HELPERS 1
  30. #include "juce_gui_extra.h"
  31. //==============================================================================
  32. #if JUCE_MAC
  33. #import <WebKit/WebKit.h>
  34. #import <IOKit/IOKitLib.h>
  35. #import <IOKit/IOCFPlugIn.h>
  36. #import <IOKit/hid/IOHIDLib.h>
  37. #import <IOKit/hid/IOHIDKeys.h>
  38. #import <IOKit/pwr_mgt/IOPMLib.h>
  39. #elif JUCE_IOS
  40. //==============================================================================
  41. #elif JUCE_WINDOWS
  42. #include <windowsx.h>
  43. #include <vfw.h>
  44. #include <commdlg.h>
  45. #if JUCE_WEB_BROWSER
  46. #include <exdisp.h>
  47. #include <exdispid.h>
  48. #endif
  49. //==============================================================================
  50. #elif JUCE_LINUX
  51. #include <X11/Xlib.h>
  52. #include <X11/Xatom.h>
  53. #include <X11/Xutil.h>
  54. #undef SIZEOF
  55. #undef KeyPress
  56. #endif
  57. //==============================================================================
  58. namespace juce
  59. {
  60. #include "documents/juce_FileBasedDocument.cpp"
  61. #include "code_editor/juce_CodeDocument.cpp"
  62. #include "code_editor/juce_CodeEditorComponent.cpp"
  63. #include "code_editor/juce_CPlusPlusCodeTokeniser.cpp"
  64. #include "code_editor/juce_XMLCodeTokeniser.cpp"
  65. #include "code_editor/juce_LuaCodeTokeniser.cpp"
  66. #include "misc/juce_BubbleMessageComponent.cpp"
  67. #include "misc/juce_ColourSelector.cpp"
  68. #include "misc/juce_KeyMappingEditorComponent.cpp"
  69. #include "misc/juce_PreferencesPanel.cpp"
  70. #include "misc/juce_RecentlyOpenedFilesList.cpp"
  71. #include "misc/juce_SplashScreen.cpp"
  72. #include "misc/juce_SystemTrayIconComponent.cpp"
  73. #include "misc/juce_LiveConstantEditor.cpp"
  74. #include "misc/juce_AnimatedAppComponent.cpp"
  75. }
  76. using namespace juce;
  77. namespace juce
  78. {
  79. //==============================================================================
  80. #if JUCE_MAC || JUCE_IOS
  81. #if JUCE_MAC
  82. #include "native/juce_mac_NSViewComponent.mm"
  83. #include "native/juce_mac_AppleRemote.mm"
  84. #include "native/juce_mac_SystemTrayIcon.cpp"
  85. #endif
  86. #if JUCE_IOS
  87. #include "native/juce_ios_UIViewComponent.mm"
  88. #endif
  89. #if JUCE_WEB_BROWSER
  90. #include "native/juce_mac_WebBrowserComponent.mm"
  91. #endif
  92. //==============================================================================
  93. #elif JUCE_WINDOWS
  94. #include "native/juce_win32_ActiveXComponent.cpp"
  95. #if JUCE_WEB_BROWSER
  96. #include "native/juce_win32_WebBrowserComponent.cpp"
  97. #endif
  98. #include "native/juce_win32_SystemTrayIcon.cpp"
  99. //==============================================================================
  100. #elif JUCE_LINUX
  101. #if JUCE_WEB_BROWSER
  102. #include "native/juce_linux_WebBrowserComponent.cpp"
  103. #endif
  104. #include "native/juce_linux_SystemTrayIcon.cpp"
  105. //==============================================================================
  106. #elif JUCE_ANDROID
  107. #if JUCE_WEB_BROWSER
  108. #include "native/juce_android_WebBrowserComponent.cpp"
  109. #endif
  110. #endif
  111. #if JUCE_WEB_BROWSER
  112. bool WebBrowserComponent::pageAboutToLoad (const String&) { return true; }
  113. void WebBrowserComponent::pageFinishedLoading (const String&) {}
  114. void WebBrowserComponent::windowCloseRequest() {}
  115. void WebBrowserComponent::newWindowAttemptingToLoad (const String&) {}
  116. #endif
  117. }