// 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 //-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" ; }