summaryrefslogtreecommitdiff
path: root/Build/source/texk/lcdf-typetools/lcdf-typetools-2.105/otftotfm/secondary.hh
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/lcdf-typetools/lcdf-typetools-2.105/otftotfm/secondary.hh')
-rw-r--r--Build/source/texk/lcdf-typetools/lcdf-typetools-2.105/otftotfm/secondary.hh106
1 files changed, 0 insertions, 106 deletions
diff --git a/Build/source/texk/lcdf-typetools/lcdf-typetools-2.105/otftotfm/secondary.hh b/Build/source/texk/lcdf-typetools/lcdf-typetools-2.105/otftotfm/secondary.hh
deleted file mode 100644
index 81857fd4e9d..00000000000
--- a/Build/source/texk/lcdf-typetools/lcdf-typetools-2.105/otftotfm/secondary.hh
+++ /dev/null
@@ -1,106 +0,0 @@
-#ifndef OTFTOTFM_SECONDARY_HH
-#define OTFTOTFM_SECONDARY_HH
-#include <efont/otfcmap.hh>
-#include <efont/cff.hh>
-class Metrics;
-class Transform;
-struct Setting;
-namespace Efont { class TrueTypeBoundsCharstringProgram; }
-
-struct FontInfo {
-
- const Efont::OpenType::Font *otf;
- const Efont::OpenType::Cmap *cmap;
-
- Efont::Cff *cff_file;
- const Efont::Cff::Font *cff;
-
- const Efont::OpenType::Post *post;
- const Efont::OpenType::Name *name;
-
- FontInfo(const Efont::OpenType::Font *otf, ErrorHandler *);
- ~FontInfo();
-
- bool ok() const;
-
- int nglyphs() const { return _nglyphs; }
- bool glyph_names(Vector<PermString> &) const;
- int glyphid(PermString) const;
- const Efont::CharstringProgram *program() const;
- int units_per_em() const {
- return program()->units_per_em();
- }
-
- bool is_fixed_pitch() const;
- double italic_angle() const;
- double x_height(const Transform& font_xform) const;
-
- void set_is_fixed_pitch(bool is_fixed_pitch) {
- _override_is_fixed_pitch = true;
- _is_fixed_pitch = is_fixed_pitch;
- }
- void set_italic_angle(double italic_angle) {
- _override_italic_angle = true;
- _italic_angle = italic_angle;
- }
- enum { x_height_auto = 0, x_height_explicit,
- x_height_os2, x_height_x };
- void set_x_height(int source, double x_height) {
- _override_x_height = source;
- _x_height = x_height;
- }
-
- String family_name() const;
- String postscript_name() const;
-
- private:
-
- int _nglyphs;
- mutable Vector<PermString> _glyph_names;
- mutable bool _got_glyph_names;
- mutable Vector<uint32_t> _unicodes;
- mutable Efont::TrueTypeBoundsCharstringProgram *_ttb_program;
- bool _override_is_fixed_pitch;
- bool _override_italic_angle;
- bool _is_fixed_pitch;
- uint8_t _override_x_height;
- double _italic_angle;
- double _x_height;
-
-};
-
-class Secondary { public:
- Secondary() : _next(0) { }
- virtual ~Secondary();
- void set_next(Secondary *s) { _next = s; }
- typedef Efont::OpenType::Glyph Glyph;
- bool encode_uni(int code, PermString name, const uint32_t *uni_begin, const uint32_t *uni_end, Metrics &metrics, ErrorHandler *errh);
- virtual bool encode_uni(int code, PermString name, uint32_t uni, Metrics &, ErrorHandler *);
- virtual int setting(uint32_t uni, Vector<Setting> &, Metrics &, ErrorHandler *);
- private:
- Secondary *_next;
-};
-
-class T1Secondary : public Secondary { public:
- T1Secondary(const FontInfo &, const String &font_name, const String &otf_file_name);
- bool encode_uni(int code, PermString name, uint32_t uni, Metrics &, ErrorHandler *);
- int setting(uint32_t uni, Vector<Setting> &, Metrics &, ErrorHandler *);
- private:
- const FontInfo &_finfo;
- String _font_name;
- String _otf_file_name;
- int _units_per_em;
- int _xheight;
- int _spacewidth;
- bool char_setting(Vector<Setting> &, Metrics &, int uni, ...);
- enum { J_NODOT = -1031892 /* unlikely value */ };
- int dotlessj_font(Metrics &, ErrorHandler *, Glyph &dj_glyph);
-};
-
-bool char_bounds(double bounds[4], double& width, const FontInfo &,
- const Transform &, uint32_t uni);
-
-double char_one_bound(const FontInfo &, const Transform &,
- int dimen, bool max, double best, int uni, ...);
-
-#endif