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.

96 lines
3.2KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 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. #ifndef __JUCE_EVENTS_JUCEHEADER__
  19. #define __JUCE_EVENTS_JUCEHEADER__
  20. //=============================================================================
  21. #include "../juce_core/juce_core.h"
  22. namespace juce
  23. {
  24. // START_AUTOINCLUDE messages, broadcasters, timers,
  25. // interprocess, native/juce_ScopedXLock*
  26. #ifndef __JUCE_APPLICATIONBASE_JUCEHEADER__
  27. #include "messages/juce_ApplicationBase.h"
  28. #endif
  29. #ifndef __JUCE_CALLBACKMESSAGE_JUCEHEADER__
  30. #include "messages/juce_CallbackMessage.h"
  31. #endif
  32. #ifndef __JUCE_DELETEDATSHUTDOWN_JUCEHEADER__
  33. #include "messages/juce_DeletedAtShutdown.h"
  34. #endif
  35. #ifndef __JUCE_MESSAGE_JUCEHEADER__
  36. #include "messages/juce_Message.h"
  37. #endif
  38. #ifndef __JUCE_MESSAGELISTENER_JUCEHEADER__
  39. #include "messages/juce_MessageListener.h"
  40. #endif
  41. #ifndef __JUCE_MESSAGEMANAGER_JUCEHEADER__
  42. #include "messages/juce_MessageManager.h"
  43. #endif
  44. #ifndef __JUCE_NOTIFICATIONTYPE_JUCEHEADER__
  45. #include "messages/juce_NotificationType.h"
  46. #endif
  47. #ifndef __JUCE_ACTIONBROADCASTER_JUCEHEADER__
  48. #include "broadcasters/juce_ActionBroadcaster.h"
  49. #endif
  50. #ifndef __JUCE_ACTIONLISTENER_JUCEHEADER__
  51. #include "broadcasters/juce_ActionListener.h"
  52. #endif
  53. #ifndef __JUCE_ASYNCUPDATER_JUCEHEADER__
  54. #include "broadcasters/juce_AsyncUpdater.h"
  55. #endif
  56. #ifndef __JUCE_CHANGEBROADCASTER_JUCEHEADER__
  57. #include "broadcasters/juce_ChangeBroadcaster.h"
  58. #endif
  59. #ifndef __JUCE_CHANGELISTENER_JUCEHEADER__
  60. #include "broadcasters/juce_ChangeListener.h"
  61. #endif
  62. #ifndef __JUCE_LISTENERLIST_JUCEHEADER__
  63. #include "broadcasters/juce_ListenerList.h"
  64. #endif
  65. #ifndef __JUCE_MULTITIMER_JUCEHEADER__
  66. #include "timers/juce_MultiTimer.h"
  67. #endif
  68. #ifndef __JUCE_TIMER_JUCEHEADER__
  69. #include "timers/juce_Timer.h"
  70. #endif
  71. #ifndef __JUCE_INTERPROCESSCONNECTION_JUCEHEADER__
  72. #include "interprocess/juce_InterprocessConnection.h"
  73. #endif
  74. #ifndef __JUCE_INTERPROCESSCONNECTIONSERVER_JUCEHEADER__
  75. #include "interprocess/juce_InterprocessConnectionServer.h"
  76. #endif
  77. #ifndef __JUCE_SCOPEDXLOCK_JUCEHEADER__
  78. #include "native/juce_ScopedXLock.h"
  79. #endif
  80. // END_AUTOINCLUDE
  81. }
  82. #endif // __JUCE_EVENTS_JUCEHEADER__