mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +03:00
124 lines
3.0 KiB
C++
124 lines
3.0 KiB
C++
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
|
|
#include <Standard_Type.hxx>
|
|
#include <Vrml_AsciiText.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(Vrml_AsciiText,Standard_Transient)
|
|
|
|
Vrml_AsciiText::Vrml_AsciiText()
|
|
{
|
|
TCollection_AsciiString tmpS("");
|
|
myString = new TColStd_HArray1OfAsciiString(1,1,tmpS);
|
|
|
|
mySpacing = 1;
|
|
myJustification = Vrml_LEFT;
|
|
myWidth = 0;
|
|
}
|
|
|
|
Vrml_AsciiText::Vrml_AsciiText(const Handle(TColStd_HArray1OfAsciiString)& aString,
|
|
const Standard_Real aSpacing,
|
|
const Vrml_AsciiTextJustification aJustification,
|
|
const Standard_Real aWidth)
|
|
{
|
|
myString = aString;
|
|
mySpacing = aSpacing;
|
|
myJustification = aJustification;
|
|
myWidth = aWidth;
|
|
}
|
|
|
|
void Vrml_AsciiText::SetString(const Handle(TColStd_HArray1OfAsciiString)& aString)
|
|
{
|
|
myString = aString;
|
|
}
|
|
|
|
Handle(TColStd_HArray1OfAsciiString) Vrml_AsciiText::String() const
|
|
{
|
|
return myString;
|
|
}
|
|
|
|
void Vrml_AsciiText::SetSpacing(const Standard_Real aSpacing)
|
|
{
|
|
mySpacing = aSpacing;
|
|
}
|
|
|
|
Standard_Real Vrml_AsciiText::Spacing() const
|
|
{
|
|
return mySpacing;
|
|
}
|
|
|
|
void Vrml_AsciiText::SetJustification(const Vrml_AsciiTextJustification aJustification)
|
|
{
|
|
myJustification = aJustification;
|
|
}
|
|
|
|
Vrml_AsciiTextJustification Vrml_AsciiText::Justification() const
|
|
{
|
|
return myJustification;
|
|
}
|
|
|
|
void Vrml_AsciiText::SetWidth(const Standard_Real aWidth)
|
|
{
|
|
myWidth = aWidth;
|
|
}
|
|
|
|
Standard_Real Vrml_AsciiText::Width() const
|
|
{
|
|
return myWidth;
|
|
}
|
|
|
|
Standard_OStream& Vrml_AsciiText::Print(Standard_OStream& anOStream) const
|
|
{
|
|
Standard_Integer i;
|
|
|
|
anOStream << "AsciiText {\n";
|
|
|
|
i = myString->Lower();
|
|
|
|
if ( myString->Length() != 1 || myString->Value(i) != "" )
|
|
{
|
|
anOStream << " string [\n\t";
|
|
|
|
for ( i = myString->Lower(); i <= myString->Upper(); i++ )
|
|
{
|
|
anOStream << '"' << myString->Value(i) << '"';
|
|
if ( i < myString->Length() )
|
|
anOStream << ",\n\t";
|
|
}
|
|
anOStream << " ]\n";
|
|
}
|
|
|
|
if ( Abs(mySpacing - 1 ) > 0.0001 )
|
|
{
|
|
anOStream << " spacing\t\t";
|
|
anOStream << mySpacing << "\n";
|
|
}
|
|
|
|
switch ( myJustification )
|
|
{
|
|
case Vrml_LEFT: break; // anOStream << " justification\t LEFT";
|
|
case Vrml_CENTER: anOStream << " justification\tCENTER\n"; break;
|
|
case Vrml_RIGHT: anOStream << " justification\tRIGHT\n"; break;
|
|
}
|
|
|
|
if ( Abs(myWidth - 0 ) > 0.0001 )
|
|
{
|
|
anOStream << " width\t\t";
|
|
anOStream << myWidth << "\n";
|
|
}
|
|
|
|
anOStream << "}\n";
|
|
return anOStream;
|
|
}
|