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.

123 lines
4.9KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-10 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. /*
  19. This file wraps together all the mac-specific code, so that
  20. we can include all the native headers just once, and compile all our
  21. platform-specific stuff in one big lump, keeping it out of the way of
  22. the rest of the codebase.
  23. */
  24. #include "../core/juce_TargetPlatform.h"
  25. #if JUCE_LINUX
  26. #undef JUCE_BUILD_NATIVE
  27. #define JUCE_BUILD_NATIVE 1
  28. #include "linux/juce_linux_NativeIncludes.h"
  29. BEGIN_JUCE_NAMESPACE
  30. //==============================================================================
  31. #include "../core/juce_SystemStats.h"
  32. #include "../core/juce_Time.h"
  33. #include "../maths/juce_Random.h"
  34. #include "../core/juce_Singleton.h"
  35. #include "../core/juce_PlatformUtilities.h"
  36. #include "../memory/juce_MemoryBlock.h"
  37. #include "../containers/juce_ReferenceCountedArray.h"
  38. #include "../utilities/juce_DeletedAtShutdown.h"
  39. #include "../utilities/juce_SystemClipboard.h"
  40. #include "../text/juce_StringArray.h"
  41. #include "../text/juce_XmlDocument.h"
  42. #include "../threads/juce_CriticalSection.h"
  43. #include "../threads/juce_Thread.h"
  44. #include "../threads/juce_ScopedLock.h"
  45. #include "../threads/juce_InterProcessLock.h"
  46. #include "../threads/juce_WaitableEvent.h"
  47. #include "../threads/juce_Process.h"
  48. #include "../io/files/juce_File.h"
  49. #include "../io/files/juce_NamedPipe.h"
  50. #include "../io/files/juce_FileInputStream.h"
  51. #include "../io/files/juce_FileOutputStream.h"
  52. #include "../io/files/juce_DirectoryIterator.h"
  53. #include "../io/network/juce_URL.h"
  54. #include "../io/network/juce_MACAddress.h"
  55. #include "../io/streams/juce_MemoryInputStream.h"
  56. #include "../io/streams/juce_MemoryOutputStream.h"
  57. #include "../events/juce_MessageManager.h"
  58. #include "../events/juce_Timer.h"
  59. #include "../application/juce_Application.h"
  60. #include "../audio/dsp/juce_AudioSampleBuffer.h"
  61. #include "../audio/dsp/juce_AudioDataConverters.h"
  62. #include "../audio/audio_file_formats/juce_AudioCDReader.h"
  63. #include "../audio/devices/juce_AudioIODeviceType.h"
  64. #include "../audio/devices/juce_MidiOutput.h"
  65. #include "../audio/devices/juce_MidiInput.h"
  66. #include "../gui/graphics/fonts/juce_Font.h"
  67. #include "../gui/graphics/geometry/juce_RectangleList.h"
  68. #include "../gui/graphics/imaging/juce_ImageFileFormat.h"
  69. #include "../gui/graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.h"
  70. #include "../gui/components/juce_Desktop.h"
  71. #include "../gui/components/mouse/juce_MouseInputSource.h"
  72. #include "../gui/components/mouse/juce_DragAndDropContainer.h"
  73. #include "../gui/components/keyboard/juce_KeyPress.h"
  74. #include "../gui/components/windows/juce_ComponentPeer.h"
  75. #include "../gui/components/windows/juce_AlertWindow.h"
  76. #include "../gui/components/filebrowser/juce_FileChooser.h"
  77. #include "../gui/components/special/juce_WebBrowserComponent.h"
  78. #include "../gui/components/special/juce_OpenGLComponent.h"
  79. #include "../gui/components/special/juce_SystemTrayIconComponent.h"
  80. #include "../containers/juce_ScopedValueSetter.h"
  81. //==============================================================================
  82. #define JUCE_INCLUDED_FILE 1
  83. // Now include the actual code files..
  84. #include "common/juce_posix_SharedCode.h"
  85. #include "linux/juce_linux_Files.cpp"
  86. #include "common/juce_posix_NamedPipe.cpp"
  87. #include "linux/juce_linux_Network.cpp"
  88. #include "linux/juce_linux_SystemStats.cpp"
  89. #include "linux/juce_linux_Threads.cpp"
  90. #if ! JUCE_ONLY_BUILD_CORE_LIBRARY
  91. #include "linux/juce_linux_Clipboard.cpp"
  92. #include "linux/juce_linux_Messaging.cpp"
  93. #include "linux/juce_linux_Fonts.cpp"
  94. #include "linux/juce_linux_Windowing.cpp"
  95. #include "linux/juce_linux_Audio.cpp"
  96. #include "linux/juce_linux_JackAudio.cpp"
  97. #include "linux/juce_linux_Midi.cpp"
  98. #include "linux/juce_linux_AudioCDReader.cpp"
  99. #include "linux/juce_linux_FileChooser.cpp"
  100. #include "linux/juce_linux_WebBrowserComponent.cpp"
  101. #endif
  102. END_JUCE_NAMESPACE
  103. #endif