blob: 5ac2494185256d6576071a254930d4b58c3b183a (
plain)
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
|
// File Aspect_FontMap.cxx
// Created Septembre 1993
// Author GG
//-Copyright MatraDatavision 1991,1992
//-Version
//-Design Declaration des variables specifiques aux Ensembles
// de Fontures de texts
//-Warning Une FontMap est definie par un ensemble de FontMapEntries
//-References
//-Language C++ 2.0
//-Declarations
// for the class
#include <Aspect_FontMap.ixx>
//-Aliases
//-Global data definitions
// mydata : SequenceOfFontMapEntry from Aspect is protected
//-Constructors
//-Destructors
//-Methods, in order
Aspect_FontMap::Aspect_FontMap( ) {
Aspect_FontMapEntry theDefaultEntry;
AddEntry(theDefaultEntry);
}
void Aspect_FontMap::AddEntry (const Aspect_FontMapEntry& AnEntry) {
Standard_Integer i,index = AnEntry.Index();
Aspect_FontMapEntry theEntry;
for( i=1 ; i<=mydata.Length() ; i++ ) {
theEntry = mydata.Value(i);
if( index == theEntry.Index() ) break;
}
if( i > mydata.Length() ) {
mydata.Append( AnEntry );
} else {
mydata.SetValue(i,AnEntry);
}
}
Standard_Integer Aspect_FontMap::AddEntry (const Aspect_FontStyle &aStyle) {
Aspect_FontMapEntry theEntry ;
Standard_Integer i,maxindex = 0 ;
for( i=1 ; i<=mydata.Length() ; i++ ) {
theEntry = mydata.Value(i) ;
maxindex = Max(maxindex,theEntry.Index()) ;
if( theEntry.Type() == aStyle ) return theEntry.Index() ;
}
maxindex++ ;
theEntry.SetValue(maxindex,aStyle) ;
mydata.Append( theEntry ) ;
return maxindex ;
}
Standard_Integer Aspect_FontMap::Size() const {
return mydata.Length() ;
}
Standard_Integer Aspect_FontMap::Index(const Standard_Integer anIndex) const {
if( anIndex < 1 || anIndex > Size() ) {
Aspect_BadAccess::Raise ("Undefined fontmap Index");
}
Aspect_FontMapEntry theEntry = mydata.Value(anIndex) ;
return theEntry.Index() ;
}
Aspect_FontMapEntry Aspect_FontMap::Entry (const Standard_Integer AnIndex) const {
if( AnIndex < 1 || AnIndex > mydata.Length() )
Aspect_BadAccess::Raise ("Aspect_FontMap::Entry Bad Index");
return mydata.Value(AnIndex);
}
void Aspect_FontMap::Dump () const {
Standard_Integer i ;
cout << "Fontmap Dump-->\n" ;
for ( i = 1 ; i <= Size() ; i++ ) (Entry(i)).Dump() ;
cout << "<--End Fontmap Dump\n" ;
}
|