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.

177 lines
5.5KB

  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_GRAPHICS_MODULE_JUCEHEADER__ // %%
  19. #define __JUCE_GRAPHICS_MODULE_JUCEHEADER__
  20. #include "../juce_core/juce_core.h"
  21. #include "../juce_events/juce_events.h"
  22. //=============================================================================
  23. /** Config: JUCE_USE_COREIMAGE_LOADER
  24. On OSX, enabling this flag means that the CoreImage codecs will be used to load
  25. PNG/JPEG/GIF files. It is enabled by default, but you may want to disable it if
  26. you'd rather use libpng, libjpeg, etc.
  27. */
  28. #ifndef JUCE_USE_COREIMAGE_LOADER
  29. #define JUCE_USE_COREIMAGE_LOADER 1
  30. #endif
  31. /** Config: JUCE_USE_DIRECTWRITE
  32. Enabling this flag means that DirectWrite will be used when available for font
  33. management and layout.
  34. */
  35. #ifndef JUCE_USE_DIRECTWRITE
  36. #define JUCE_USE_DIRECTWRITE 1
  37. #endif
  38. #ifndef JUCE_INCLUDE_PNGLIB_CODE
  39. #define JUCE_INCLUDE_PNGLIB_CODE 1
  40. #endif
  41. #ifndef JUCE_INCLUDE_JPEGLIB_CODE
  42. #define JUCE_INCLUDE_JPEGLIB_CODE 1
  43. #endif
  44. #ifndef USE_COREGRAPHICS_RENDERING
  45. #define USE_COREGRAPHICS_RENDERING 1
  46. #endif
  47. //=============================================================================
  48. namespace juce
  49. {
  50. // START_AUTOINCLUDE colour, geometry, placement, contexts, images,
  51. // image_formats, fonts, effects
  52. #ifndef __JUCE_COLOUR_JUCEHEADER__
  53. #include "colour/juce_Colour.h"
  54. #endif
  55. #ifndef __JUCE_COLOURGRADIENT_JUCEHEADER__
  56. #include "colour/juce_ColourGradient.h"
  57. #endif
  58. #ifndef __JUCE_COLOURS_JUCEHEADER__
  59. #include "colour/juce_Colours.h"
  60. #endif
  61. #ifndef __JUCE_FILLTYPE_JUCEHEADER__
  62. #include "colour/juce_FillType.h"
  63. #endif
  64. #ifndef __JUCE_PIXELFORMATS_JUCEHEADER__
  65. #include "colour/juce_PixelFormats.h"
  66. #endif
  67. #ifndef __JUCE_AFFINETRANSFORM_JUCEHEADER__
  68. #include "geometry/juce_AffineTransform.h"
  69. #endif
  70. #ifndef __JUCE_BORDERSIZE_JUCEHEADER__
  71. #include "geometry/juce_BorderSize.h"
  72. #endif
  73. #ifndef __JUCE_EDGETABLE_JUCEHEADER__
  74. #include "geometry/juce_EdgeTable.h"
  75. #endif
  76. #ifndef __JUCE_LINE_JUCEHEADER__
  77. #include "geometry/juce_Line.h"
  78. #endif
  79. #ifndef __JUCE_PATH_JUCEHEADER__
  80. #include "geometry/juce_Path.h"
  81. #endif
  82. #ifndef __JUCE_PATHITERATOR_JUCEHEADER__
  83. #include "geometry/juce_PathIterator.h"
  84. #endif
  85. #ifndef __JUCE_PATHSTROKETYPE_JUCEHEADER__
  86. #include "geometry/juce_PathStrokeType.h"
  87. #endif
  88. #ifndef __JUCE_POINT_JUCEHEADER__
  89. #include "geometry/juce_Point.h"
  90. #endif
  91. #ifndef __JUCE_RECTANGLE_JUCEHEADER__
  92. #include "geometry/juce_Rectangle.h"
  93. #endif
  94. #ifndef __JUCE_RECTANGLELIST_JUCEHEADER__
  95. #include "geometry/juce_RectangleList.h"
  96. #endif
  97. #ifndef __JUCE_JUSTIFICATION_JUCEHEADER__
  98. #include "placement/juce_Justification.h"
  99. #endif
  100. #ifndef __JUCE_RECTANGLEPLACEMENT_JUCEHEADER__
  101. #include "placement/juce_RectanglePlacement.h"
  102. #endif
  103. #ifndef __JUCE_GRAPHICSCONTEXT_JUCEHEADER__
  104. #include "contexts/juce_GraphicsContext.h"
  105. #endif
  106. #ifndef __JUCE_LOWLEVELGRAPHICSCONTEXT_JUCEHEADER__
  107. #include "contexts/juce_LowLevelGraphicsContext.h"
  108. #endif
  109. #ifndef __JUCE_LOWLEVELGRAPHICSPOSTSCRIPTRENDERER_JUCEHEADER__
  110. #include "contexts/juce_LowLevelGraphicsPostScriptRenderer.h"
  111. #endif
  112. #ifndef __JUCE_LOWLEVELGRAPHICSSOFTWARERENDERER_JUCEHEADER__
  113. #include "contexts/juce_LowLevelGraphicsSoftwareRenderer.h"
  114. #endif
  115. #ifndef __JUCE_IMAGE_JUCEHEADER__
  116. #include "images/juce_Image.h"
  117. #endif
  118. #ifndef __JUCE_IMAGECACHE_JUCEHEADER__
  119. #include "images/juce_ImageCache.h"
  120. #endif
  121. #ifndef __JUCE_IMAGECONVOLUTIONKERNEL_JUCEHEADER__
  122. #include "images/juce_ImageConvolutionKernel.h"
  123. #endif
  124. #ifndef __JUCE_IMAGEFILEFORMAT_JUCEHEADER__
  125. #include "images/juce_ImageFileFormat.h"
  126. #endif
  127. #ifndef __JUCE_ATTRIBUTEDSTRING_JUCEHEADER__
  128. #include "fonts/juce_AttributedString.h"
  129. #endif
  130. #ifndef __JUCE_CUSTOMTYPEFACE_JUCEHEADER__
  131. #include "fonts/juce_CustomTypeface.h"
  132. #endif
  133. #ifndef __JUCE_FONT_JUCEHEADER__
  134. #include "fonts/juce_Font.h"
  135. #endif
  136. #ifndef __JUCE_GLYPHARRANGEMENT_JUCEHEADER__
  137. #include "fonts/juce_GlyphArrangement.h"
  138. #endif
  139. #ifndef __JUCE_TEXTLAYOUT_JUCEHEADER__
  140. #include "fonts/juce_TextLayout.h"
  141. #endif
  142. #ifndef __JUCE_TYPEFACE_JUCEHEADER__
  143. #include "fonts/juce_Typeface.h"
  144. #endif
  145. #ifndef __JUCE_DROPSHADOWEFFECT_JUCEHEADER__
  146. #include "effects/juce_DropShadowEffect.h"
  147. #endif
  148. #ifndef __JUCE_GLOWEFFECT_JUCEHEADER__
  149. #include "effects/juce_GlowEffect.h"
  150. #endif
  151. #ifndef __JUCE_IMAGEEFFECTFILTER_JUCEHEADER__
  152. #include "effects/juce_ImageEffectFilter.h"
  153. #endif
  154. // END_AUTOINCLUDE
  155. }
  156. #endif // __JUCE_GRAPHICS_JUCEHEADER__