File: FTGlyph.C

package info (click to toggle)
gltt 2.5-1.1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 964 kB
  • ctags: 510
  • sloc: sh: 7,190; cpp: 4,845; makefile: 165
file content (154 lines) | stat: -rw-r--r-- 3,393 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
 * gltt graphics library
 * Copyright (C) 1998-1999 Stephane Rehel
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include "FTInstance.h"
#include "FTFace.h"
#include "FTGlyph.h"

#include "freetype.h"

/////////////////////////////////////////////////////////////////////////////

FTGlyph::FTGlyph( FTInstance* _instance )
{
  instance= _instance;

  glyph= 0;

  metrics= new TT_Glyph_Metrics;
}

/////////////////////////////////////////////////////////////////////////////

FTGlyph::~FTGlyph()
{
  delete metrics;
  metrics= 0;

  if( glyph != 0 )
    {
    TT_Done_Glyph(*glyph);
    delete glyph;
    glyph= 0;
    }

  instance= 0;
}

/////////////////////////////////////////////////////////////////////////////

GLTTboolean FTGlyph::create( int _ascii_code )
{
  ascii_code= _ascii_code;

  if( glyph != 0 )
    {
    delete glyph;
    glyph= 0;
    }

  if( instance == 0 )
    return GLTT_FALSE;
  if( instance->getInstance() == 0 )
    return GLTT_FALSE;

  FTFace* face= instance->getFace();
  if( face == 0 )
    return GLTT_FALSE;

  int glyph_index= face->getGlyphIndex(ascii_code);

  glyph= new TT_Glyph;

  TT_Error err;

  err= TT_New_Glyph( *face->getFace(), glyph );

  if( err )
    {
    delete glyph;
    glyph= 0;
    return GLTT_FALSE;
    }

  err= TT_Load_Glyph( *(instance->getInstance()),
                      *glyph, glyph_index, TTLOAD_DEFAULT );

  if( err )
    {
    delete glyph;
    glyph= 0;
    return GLTT_FALSE;
    }

  err= TT_Get_Glyph_Metrics( *glyph, metrics );
  if( err )
    {
    delete metrics;
    metrics= 0;

    return GLTT_FALSE;
    }

  return GLTT_TRUE;
}

/////////////////////////////////////////////////////////////////////////////

int FTGlyph::getBearingX() const
{
  return (metrics==0) ? 0 : metrics->bearingX;
}

/////////////////////////////////////////////////////////////////////////////

int FTGlyph::getBearingY() const
{
  return (metrics==0) ? 0 : metrics->bearingY;

//  return 0; //(metrics==0) ? 0 : metrics->bearingY;
            // metrics.bearingY is left uninitialized by freetype?!
}

/////////////////////////////////////////////////////////////////////////////

int FTGlyph::getAdvance() const
{
  return (metrics==0) ? 0 : metrics->advance;
}

/////////////////////////////////////////////////////////////////////////////

GLTTboolean FTGlyph::getBBox( int& xMin, int& yMin,
                              int& xMax, int& yMax ) const
{
  if( metrics == 0 )
    return GLTT_FALSE;

  TT_BBox& bbox= metrics->bbox; // glyph bounding box

  xMin= bbox.xMin;
  yMin= bbox.yMin;
  xMax= bbox.xMax;
  yMax= bbox.yMax;

  return GLTT_TRUE;
}

/////////////////////////////////////////////////////////////////////////////