JUCE-7.0.12-0-g4f43011b96
JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation
Loading...
Searching...
No Matches
juce_graphics
juce_graphics.h
Go to the documentation of this file.
1
/*
2
==============================================================================
3
4
This file is part of the JUCE library.
5
Copyright (c) 2022 - Raw Material Software Limited
6
7
JUCE is an open source library subject to commercial or open-source
8
licensing.
9
10
By using JUCE, you agree to the terms of both the JUCE 7 End-User License
11
Agreement and JUCE Privacy Policy.
12
13
End User License Agreement: www.juce.com/juce-7-licence
14
Privacy Policy: www.juce.com/juce-privacy-policy
15
16
Or: You may also use this code under the terms of the GPL v3 (see
17
www.gnu.org/licenses).
18
19
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
20
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
21
DISCLAIMED.
22
23
==============================================================================
24
*/
25
26
27
/*******************************************************************************
28
The block below describes the properties of this module, and is read by
29
the Projucer to automatically generate project code that uses it.
30
For details about the syntax and how to create or use a module, see the
31
JUCE Module Format.md file.
32
33
34
BEGIN_JUCE_MODULE_DECLARATION
35
36
ID: juce_graphics
37
vendor: juce
38
version: 7.0.12
39
name: JUCE graphics classes
40
description: Classes for 2D vector graphics, image loading/saving, font handling, etc.
41
website: http://www.juce.com/juce
42
license: GPL/Commercial
43
minimumCppStandard: 17
44
45
dependencies: juce_events
46
OSXFrameworks: Cocoa QuartzCore
47
iOSFrameworks: CoreGraphics CoreImage CoreText QuartzCore
48
linuxPackages: freetype2
49
50
END_JUCE_MODULE_DECLARATION
51
52
*******************************************************************************/
53
54
55
#pragma once
56
#define JUCE_GRAPHICS_H_INCLUDED
57
58
#include <
juce_core/juce_core.h
>
59
#include <
juce_events/juce_events.h
>
60
61
//==============================================================================
68
#ifndef JUCE_USE_COREIMAGE_LOADER
69
#define JUCE_USE_COREIMAGE_LOADER 1
70
#endif
71
77
#ifndef JUCE_USE_DIRECTWRITE
78
#define JUCE_USE_DIRECTWRITE 1
79
#endif
80
86
#ifndef JUCE_DISABLE_COREGRAPHICS_FONT_SMOOTHING
87
#define JUCE_DISABLE_COREGRAPHICS_FONT_SMOOTHING 0
88
#endif
89
90
#ifndef JUCE_INCLUDE_PNGLIB_CODE
91
#define JUCE_INCLUDE_PNGLIB_CODE 1
92
#endif
93
94
#ifndef JUCE_INCLUDE_JPEGLIB_CODE
95
#define JUCE_INCLUDE_JPEGLIB_CODE 1
96
#endif
97
98
#ifndef USE_COREGRAPHICS_RENDERING
99
#define USE_COREGRAPHICS_RENDERING 1
100
#endif
101
102
//==============================================================================
103
namespace
juce
104
{
105
class
Image;
106
class
AffineTransform;
107
class
Path;
108
class
Font;
109
class
Graphics;
110
class
FillType;
111
class
LowLevelGraphicsContext;
112
}
113
114
#include "
geometry/juce_AffineTransform.h
"
115
#include "
geometry/juce_Point.h
"
116
#include "
geometry/juce_Line.h
"
117
#include "
geometry/juce_Rectangle.h
"
118
#include "
geometry/juce_Parallelogram.h
"
119
#include "
placement/juce_Justification.h
"
120
#include "
geometry/juce_Path.h
"
121
#include "
geometry/juce_RectangleList.h
"
122
#include "
colour/juce_PixelFormats.h
"
123
#include "
colour/juce_Colour.h
"
124
#include "
colour/juce_ColourGradient.h
"
125
#include "
colour/juce_Colours.h
"
126
#include "
geometry/juce_BorderSize.h
"
127
#include "
geometry/juce_EdgeTable.h
"
128
#include "
geometry/juce_PathIterator.h
"
129
#include "
geometry/juce_PathStrokeType.h
"
130
#include "
placement/juce_RectanglePlacement.h
"
131
#include "
images/juce_ImageCache.h
"
132
#include "
images/juce_ImageConvolutionKernel.h
"
133
#include "
images/juce_ImageFileFormat.h
"
134
#include "
fonts/juce_Typeface.h
"
135
#include "
fonts/juce_Font.h
"
136
#include "
fonts/juce_AttributedString.h
"
137
#include "
fonts/juce_GlyphArrangement.h
"
138
#include "
fonts/juce_TextLayout.h
"
139
#include "
fonts/juce_CustomTypeface.h
"
140
#include "
contexts/juce_GraphicsContext.h
"
141
#include "
contexts/juce_LowLevelGraphicsContext.h
"
142
#include "
images/juce_Image.h
"
143
#include "
images/juce_ScaledImage.h
"
144
#include "
colour/juce_FillType.h
"
145
#include "
native/juce_RenderingHelpers.h
"
146
#include "
contexts/juce_LowLevelGraphicsSoftwareRenderer.h
"
147
#include "
contexts/juce_LowLevelGraphicsPostScriptRenderer.h
"
148
#include "
effects/juce_ImageEffectFilter.h
"
149
#include "
effects/juce_DropShadowEffect.h
"
150
#include "
effects/juce_GlowEffect.h
"
151
152
#if JUCE_GRAPHICS_INCLUDE_COREGRAPHICS_HELPERS && (JUCE_MAC || JUCE_IOS)
153
#include "native/juce_CoreGraphicsHelpers_mac.h"
154
#include "native/juce_CoreGraphicsContext_mac.h"
155
#endif
156
157
#if JUCE_DIRECT2D && JUCE_WINDOWS
158
#include "native/juce_Direct2DGraphicsContext_windows.h"
159
#endif
juce_AffineTransform.h
juce_AttributedString.h
juce_BorderSize.h
juce_ColourGradient.h
juce_Colour.h
juce_Colours.h
juce_CustomTypeface.h
juce_DropShadowEffect.h
juce_EdgeTable.h
juce_FillType.h
juce_Font.h
juce_GlowEffect.h
juce_GlyphArrangement.h
juce_GraphicsContext.h
juce_ImageCache.h
juce_ImageConvolutionKernel.h
juce_ImageEffectFilter.h
juce_ImageFileFormat.h
juce_Image.h
juce_Justification.h
juce_Line.h
juce_LowLevelGraphicsContext.h
juce_LowLevelGraphicsPostScriptRenderer.h
juce_LowLevelGraphicsSoftwareRenderer.h
juce_Parallelogram.h
juce_PathIterator.h
juce_PathStrokeType.h
juce_Path.h
juce_PixelFormats.h
juce_Point.h
juce_RectangleList.h
juce_RectanglePlacement.h
juce_Rectangle.h
juce_RenderingHelpers.h
juce_ScaledImage.h
juce_TextLayout.h
juce_Typeface.h
juce_core.h
juce_events.h
juce
JUCE Namespace.
Definition
juce_AudioPlayHead.cpp:24
« « « Anklang Documentation