Add remaining files
[juce-lv2.git] / juce / source / extras / Introjucer / Source / Application / jucer_CommonHeaders.h
blobb8cd739ccd8933ee5df92e59a01e77591c67e067
1 /*
2 ==============================================================================
4 This file is part of the JUCE library - "Jules' Utility Class Extensions"
5 Copyright 2004-10 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 __JUCER_COMMONINCLUDES_H__
27 #define __JUCER_COMMONINCLUDES_H__
30 #include "../Utility/jucer_StoredSettings.h"
31 #include "../Utility/jucer_MiscUtilities.h"
32 #include "../Utility/jucer_CodeHelpers.h"
33 #include "../Utility/jucer_FileHelpers.h"
34 #include "../Utility/jucer_RelativePath.h"
35 #include "../Utility/jucer_ValueSourceHelpers.h"
36 #include "../Utility/jucer_PresetIDs.h"
37 #include "jucer_CommandIDs.h"
39 //==============================================================================
40 extern ApplicationCommandManager* commandManager;
42 //==============================================================================
43 const char* const projectItemDragType = "Project Items";
44 const char* const drawableItemDragType = "Drawable Items";
45 const char* const componentItemDragType = "Components";
47 const char* const sourceFileExtensions = "cpp;mm;m;c;cc;cxx";
48 const char* const headerFileExtensions = "h;hpp;hxx";
49 const char* const sourceOrHeaderFileExtensions = "cpp;mm;m;c;cc;cxx;h;hpp;hxx";
51 #define JUCE_PLUGINS_ROOT "src/audio/plugin_client/"
52 #define JUCE_PLUGINS_PATH_VST JUCE_PLUGINS_ROOT "VST/"
53 #define JUCE_PLUGINS_PATH_RTAS JUCE_PLUGINS_ROOT "RTAS/"
54 #define JUCE_PLUGINS_PATH_AU JUCE_PLUGINS_ROOT "AU/"
56 #endif