|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2020 - Raw Material Software Limited
-
- JUCE is an open source library subject to commercial or open-source
- licensing.
-
- The code included in this file is provided under the terms of the ISC license
- http://www.isc.org/downloads/software-support-policy/isc-license. Permission
- To use, copy, modify, and/or distribute this software for any purpose with or
- without fee is hereby granted provided that the above copyright notice and
- this permission notice appear in all copies.
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- #ifdef JUCE_EVENTS_H_INCLUDED
- /* When you add this cpp file to your project, you mustn't include it in a file where you've
- already included any other headers - just put it inside a file on its own, possibly with your config
- flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
- header files that the compiler may be using.
- */
- #error "Incorrect use of JUCE cpp file"
- #endif
-
- #define JUCE_CORE_INCLUDE_OBJC_HELPERS 1
- #define JUCE_CORE_INCLUDE_JNI_HELPERS 1
- #define JUCE_CORE_INCLUDE_NATIVE_HEADERS 1
- #define JUCE_CORE_INCLUDE_COM_SMART_PTR 1
- #define JUCE_EVENTS_INCLUDE_WIN32_MESSAGE_WINDOW 1
-
- #if JUCE_USE_WINRT_MIDI || JUCE_USE_WIN_WEBVIEW2
- #define JUCE_EVENTS_INCLUDE_WINRT_WRAPPER 1
- #endif
-
- #include "juce_events.h"
-
- //==============================================================================
- #if JUCE_MAC
- #import <IOKit/IOKitLib.h>
- #import <IOKit/IOCFPlugIn.h>
- #import <IOKit/hid/IOHIDLib.h>
- #import <IOKit/hid/IOHIDKeys.h>
- #import <IOKit/pwr_mgt/IOPMLib.h>
-
- #elif JUCE_LINUX
- #include <unistd.h>
- #endif
-
- //==============================================================================
- #include "messages/juce_ApplicationBase.cpp"
- #include "messages/juce_DeletedAtShutdown.cpp"
- #include "messages/juce_MessageListener.cpp"
- #include "messages/juce_MessageManager.cpp"
- #include "broadcasters/juce_ActionBroadcaster.cpp"
- #include "broadcasters/juce_AsyncUpdater.cpp"
- #include "broadcasters/juce_ChangeBroadcaster.cpp"
- #include "timers/juce_MultiTimer.cpp"
- #include "timers/juce_Timer.cpp"
- #include "interprocess/juce_InterprocessConnection.cpp"
- #include "interprocess/juce_InterprocessConnectionServer.cpp"
- #include "interprocess/juce_ConnectedChildProcess.cpp"
- #include "interprocess/juce_NetworkServiceDiscovery.cpp"
-
- //==============================================================================
- #if JUCE_MAC || JUCE_IOS
-
- #include "native/juce_osx_MessageQueue.h"
-
- JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wundeclared-selector")
-
- #if JUCE_MAC
- #include "native/juce_mac_MessageManager.mm"
- #else
- #include "native/juce_ios_MessageManager.mm"
- #endif
-
- JUCE_END_IGNORE_WARNINGS_GCC_LIKE
-
- #elif JUCE_WINDOWS
- #include "native/juce_win32_Messaging.cpp"
- #if JUCE_EVENTS_INCLUDE_WINRT_WRAPPER
- #include "native/juce_win32_WinRTWrapper.cpp"
- #endif
-
- #elif JUCE_LINUX
- #include "native/juce_linux_Messaging.cpp"
-
- #elif JUCE_ANDROID
- #include "native/juce_android_Messaging.cpp"
-
- #endif
|