OpenShot Library | libopenshot-audio 0.2.0
juce_NotificationType.h
1
2/** @weakgroup juce_events-messages
3 * @{
4 */
5/*
6 ==============================================================================
7
8 This file is part of the JUCE library.
9 Copyright (c) 2017 - ROLI Ltd.
10
11 JUCE is an open source library subject to commercial or open-source
12 licensing.
13
14 The code included in this file is provided under the terms of the ISC license
15 http://www.isc.org/downloads/software-support-policy/isc-license. Permission
16 To use, copy, modify, and/or distribute this software for any purpose with or
17 without fee is hereby granted provided that the above copyright notice and
18 this permission notice appear in all copies.
19
20 JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
21 EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
22 DISCLAIMED.
23
24 ==============================================================================
25*/
26
27namespace juce
28{
29
30//==============================================================================
31/**
32 These enums are used in various classes to indicate whether a notification
33 event should be sent out.
34*/
35enum NotificationType
36{
37 dontSendNotification = 0, /**< No notification message should be sent. */
38 sendNotification = 1, /**< Requests a notification message, either synchronous or not. */
39 sendNotificationSync, /**< Requests a synchronous notification. */
40 sendNotificationAsync, /**< Requests an asynchronous notification. */
41};
42
43} // namespace juce
44
45/** @}*/