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.

97 lines
3.4KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. The code included in this file is provided under the terms of the ISC license
  8. http://www.isc.org/downloads/software-support-policy/isc-license. Permission
  9. To use, copy, modify, and/or distribute this software for any purpose with or
  10. without fee is hereby granted provided that the above copyright notice and
  11. this permission notice appear in all copies.
  12. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  13. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  14. DISCLAIMED.
  15. ==============================================================================
  16. */
  17. /*******************************************************************************
  18. The block below describes the properties of this module, and is read by
  19. the Projucer to automatically generate project code that uses it.
  20. For details about the syntax and how to create or use a module, see the
  21. JUCE Module Format.txt file.
  22. BEGIN_JUCE_MODULE_DECLARATION
  23. ID: juce_events
  24. vendor: juce
  25. version: 5.1.2
  26. name: JUCE message and event handling classes
  27. description: Classes for running an application's main event loop and sending/receiving messages, timers, etc.
  28. website: http://www.juce.com/juce
  29. license: ISC
  30. dependencies: juce_core
  31. END_JUCE_MODULE_DECLARATION
  32. *******************************************************************************/
  33. #pragma once
  34. #define JUCE_EVENTS_H_INCLUDED
  35. #include <juce_core/juce_core.h>
  36. //==============================================================================
  37. /** Config: JUCE_EXECUTE_APP_SUSPEND_ON_IOS_BACKGROUND_TASK
  38. Will execute your application's suspend method on an iOS background task, giving
  39. you extra time to save your applications state.
  40. */
  41. #ifndef JUCE_EXECUTE_APP_SUSPEND_ON_BACKGROUND_TASK
  42. #define JUCE_EXECUTE_APP_SUSPEND_ON_BACKGROUND_TASK 0
  43. #endif
  44. #if JUCE_EVENTS_INCLUDE_WINRT_WRAPPER && JUCE_WINDOWS
  45. #include <hstring.h>
  46. #endif
  47. #include "messages/juce_MessageManager.h"
  48. #include "messages/juce_Message.h"
  49. #include "messages/juce_MessageListener.h"
  50. #include "messages/juce_CallbackMessage.h"
  51. #include "messages/juce_DeletedAtShutdown.h"
  52. #include "messages/juce_NotificationType.h"
  53. #include "messages/juce_ApplicationBase.h"
  54. #include "messages/juce_Initialisation.h"
  55. #include "messages/juce_MountedVolumeListChangeDetector.h"
  56. #include "broadcasters/juce_ActionBroadcaster.h"
  57. #include "broadcasters/juce_ActionListener.h"
  58. #include "broadcasters/juce_AsyncUpdater.h"
  59. #include "broadcasters/juce_ChangeListener.h"
  60. #include "broadcasters/juce_ChangeBroadcaster.h"
  61. #include "timers/juce_Timer.h"
  62. #include "timers/juce_MultiTimer.h"
  63. #include "interprocess/juce_InterprocessConnection.h"
  64. #include "interprocess/juce_InterprocessConnectionServer.h"
  65. #include "interprocess/juce_ConnectedChildProcess.h"
  66. #if JUCE_LINUX
  67. #include "native/juce_linux_EventLoop.h"
  68. #endif
  69. #if JUCE_WINDOWS
  70. #if JUCE_EVENTS_INCLUDE_WIN32_MESSAGE_WINDOW
  71. #include "native/juce_win32_HiddenMessageWindow.h"
  72. #endif
  73. #if JUCE_EVENTS_INCLUDE_WINRT_WRAPPER
  74. #include "native/juce_win32_WinRTWrapper.h"
  75. #endif
  76. #endif