1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

AttributedString class and advanced text layout (stage 1)

This commit is contained in:
jules 2011-11-21 20:03:39 +00:00
parent 15252c7227
commit 4773b388ef
55 changed files with 2528 additions and 35 deletions

View file

@ -40,6 +40,15 @@
#define JUCE_USE_COREIMAGE_LOADER 1
#endif
/** Config: JUCE_USE_DIRECTWRITE
Enabling this flag means that DirectWrite will be used when available for font
management and layout.
*/
#ifndef JUCE_USE_DIRECTWRITE
#define JUCE_USE_DIRECTWRITE 1
#endif
#ifndef JUCE_INCLUDE_PNGLIB_CODE
#define JUCE_INCLUDE_PNGLIB_CODE 1
#endif
@ -132,6 +141,9 @@ BEGIN_JUCE_NAMESPACE
#ifndef __JUCE_IMAGEFILEFORMAT_JUCEHEADER__
#include "images/juce_ImageFileFormat.h"
#endif
#ifndef __JUCE_ATTRIBUTEDSTRING_JUCEHEADER__
#include "fonts/juce_AttributedString.h"
#endif
#ifndef __JUCE_CUSTOMTYPEFACE_JUCEHEADER__
#include "fonts/juce_CustomTypeface.h"
#endif