/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*- * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// clean up static objects that may have been cached staticvoid Shutdown();
// Flags used to track what AAT features should be enabled on the Core Text // font instance. (Internal; only public so that we can use the // MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS macro below.) enum FeatureFlags : uint8_t {
kDefaultFeatures = 0x00, // bit flags for non-default feature settings we might need // to use, which will require separate font instances
kDisableLigatures = 0x01,
kAddSmallCaps = 0x02,
kIndicFeatures = 0x04,
// number of font instances, indexed by OR-ing the flags above
kMaxFontInstances = 8
};
protected:
CTFontRef mCTFont[kMaxFontInstances];
// attributes for shaping text with LTR or RTL directionality
CFDictionaryRef mAttributesDictLTR;
CFDictionaryRef mAttributesDictRTL;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.