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.

149 lines
4.8KB

  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_EXTRA_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. #include "../juce_core/native/juce_BasicNativeHeaders.h"
  29. #include "juce_gui_extra.h"
  30. //==============================================================================
  31. #if JUCE_MAC
  32. #define Point CarbonDummyPointName
  33. #define Component CarbonDummyCompName
  34. #import <WebKit/WebKit.h>
  35. #import <IOKit/IOKitLib.h>
  36. #import <IOKit/IOCFPlugIn.h>
  37. #import <IOKit/hid/IOHIDLib.h>
  38. #import <IOKit/hid/IOHIDKeys.h>
  39. #import <IOKit/pwr_mgt/IOPMLib.h>
  40. #import <Carbon/Carbon.h> // still needed for SetSystemUIMode()
  41. #undef Point
  42. #undef Component
  43. #elif JUCE_IOS
  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. //==============================================================================
  54. #elif JUCE_LINUX
  55. #include <X11/Xlib.h>
  56. #include <X11/Xatom.h>
  57. #include <X11/Xutil.h>
  58. #undef SIZEOF
  59. #undef KeyPress
  60. #endif
  61. //==============================================================================
  62. namespace juce
  63. {
  64. #if JUCE_MAC || JUCE_IOS
  65. #include "../juce_core/native/juce_osx_ObjCHelpers.h"
  66. #endif
  67. #include "documents/juce_FileBasedDocument.cpp"
  68. #include "code_editor/juce_CodeDocument.cpp"
  69. #include "code_editor/juce_CodeEditorComponent.cpp"
  70. #include "code_editor/juce_CPlusPlusCodeTokeniser.cpp"
  71. #include "lookandfeel/juce_OldSchoolLookAndFeel.cpp"
  72. #include "misc/juce_BubbleMessageComponent.cpp"
  73. #include "misc/juce_ColourSelector.cpp"
  74. #include "misc/juce_KeyMappingEditorComponent.cpp"
  75. #include "misc/juce_PreferencesPanel.cpp"
  76. #include "misc/juce_RecentlyOpenedFilesList.cpp"
  77. #include "misc/juce_SplashScreen.cpp"
  78. #include "misc/juce_SystemTrayIconComponent.cpp"
  79. }
  80. using namespace juce;
  81. namespace juce
  82. {
  83. //==============================================================================
  84. #if JUCE_MAC || JUCE_IOS
  85. #include "../juce_core/native/juce_osx_ObjCHelpers.h"
  86. #include "../juce_graphics/native/juce_mac_CoreGraphicsHelpers.h"
  87. #if JUCE_MAC
  88. #include "native/juce_mac_NSViewComponent.mm"
  89. #include "native/juce_mac_AppleRemote.mm"
  90. #include "native/juce_mac_SystemTrayIcon.cpp"
  91. #endif
  92. #if JUCE_IOS
  93. #include "native/juce_ios_UIViewComponent.mm"
  94. #endif
  95. #if JUCE_WEB_BROWSER
  96. #include "native/juce_mac_WebBrowserComponent.mm"
  97. #endif
  98. //==============================================================================
  99. #elif JUCE_WINDOWS
  100. #include "../juce_core/native/juce_win32_ComSmartPtr.h"
  101. #include "../juce_events/native/juce_win32_HiddenMessageWindow.h"
  102. #include "native/juce_win32_ActiveXComponent.cpp"
  103. #if JUCE_WEB_BROWSER
  104. #include "native/juce_win32_WebBrowserComponent.cpp"
  105. #endif
  106. #include "native/juce_win32_SystemTrayIcon.cpp"
  107. //==============================================================================
  108. #elif JUCE_LINUX
  109. #if JUCE_WEB_BROWSER
  110. #include "native/juce_linux_WebBrowserComponent.cpp"
  111. #endif
  112. #include "native/juce_linux_SystemTrayIcon.cpp"
  113. //==============================================================================
  114. #elif JUCE_ANDROID
  115. #if JUCE_WEB_BROWSER
  116. #include "native/juce_android_WebBrowserComponent.cpp"
  117. #endif
  118. #endif
  119. }