Add TAL-Reverb-II plugin to test
[juce-lv2.git] / juce / source / extras / JuceDemo / Source / jucedemo_headers.h
blobcafaf8dbf234136415636f16d607186ba2c151eb
1 /*
2 ==============================================================================
4 This file is part of the JUCE library - "Jules' Utility Class Extensions"
5 Copyright 2004-9 by Raw Material Software Ltd.
7 ------------------------------------------------------------------------------
9 JUCE can be redistributed and/or modified under the terms of the GNU General
10 Public License (Version 2), as published by the Free Software Foundation.
11 A copy of the license is included in the JUCE distribution, or can be found
12 online at www.gnu.org/licenses.
14 JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 ------------------------------------------------------------------------------
20 To release a closed-source product which uses JUCE, commercial licenses are
21 available: visit www.rawmaterialsoftware.com/juce for more information.
23 ==============================================================================
26 #ifndef __JUCEDEMO_HEADERS_JUCEHEADER__
27 #define __JUCEDEMO_HEADERS_JUCEHEADER__
29 // include the JUCE headers..
30 #include "../JuceLibraryCode/JuceHeader.h"
32 #if JUCE_IOS || JUCE_LINUX || JUCE_ANDROID
33 #undef JUCE_USE_CAMERA
34 #endif
36 // Pre-declare the functions that create each of the demo components..
37 Component* createFontsAndTextDemo();
38 Component* createRenderingDemo();
39 Component* createWidgetsDemo();
40 Component* createThreadingDemo();
41 Component* createTreeViewDemo();
42 Component* createTableDemo();
43 Component* createAudioDemo();
44 Component* createDragAndDropDemo();
45 Component* createInterprocessCommsDemo();
46 Component* createCodeEditorDemo();
48 #if JUCE_QUICKTIME && ! JUCE_LINUX
49 Component* createQuickTimeDemo();
50 #endif
52 #if JUCE_OPENGL
53 Component* createOpenGLDemo();
54 #endif
56 #if JUCE_WEB_BROWSER
57 Component* createWebBrowserDemo();
58 #endif
60 #if JUCE_USE_CAMERA
61 Component* createCameraDemo();
62 #endif
64 #if JUCE_DIRECTSHOW
65 Component* createDirectShowDemo();
66 #endif
68 #endif // __JUCEDEMO_HEADERS_JUCEHEADER__