diff --git a/src/Aspect/Aspect.cdl b/src/Aspect/Aspect.cdl index 7d369accbf..b58798d3ec 100644 --- a/src/Aspect/Aspect.cdl +++ b/src/Aspect/Aspect.cdl @@ -78,9 +78,6 @@ is ---Category: Imported types - imported RGBPixel; - ---Purpose: - primitive Handle; primitive Drawable; @@ -93,15 +90,6 @@ is -- 22-03-04 OCC4895 SAN High-level interface for controlling polygon offsets imported PolygonOffsetMode; - --------------------- - -- Category: Pointers - --------------------- - - pointer DriverPtr to Driver from Aspect; - pointer WindowDriverPtr to WindowDriver from Aspect; - - ---Category: Pointers - ----------------------- -- Category: Exceptions ----------------------- @@ -118,101 +106,27 @@ is exception BadAccess inherits DomainError; ---Category: Exceptions - exception ColorMapDefinitionError inherits OutOfRange; - ---Category: The exceptions - exception EdgeDefinitionError inherits OutOfRange; ---Category: Exceptions exception IdentDefinitionError inherits OutOfRange; ---Category: Exceptions - exception TypeMapDefinitionError inherits OutOfRange; - ---Category: The exceptions - - exception WidthMapDefinitionError inherits OutOfRange; - ---Category: The exceptions - - exception FontMapDefinitionError inherits OutOfRange; - ---Category: The exceptions - - exception MarkMapDefinitionError inherits OutOfRange; - ---Category: The exceptions - exception WindowDefinitionError inherits OutOfRange; ---Category: The exceptions exception WindowError inherits OutOfRange; ---Category: The exceptions - exception PixmapDefinitionError inherits OutOfRange; - ---Category: The exceptions - - exception PixmapError inherits OutOfRange; - ---Category: The exceptions - exception DriverDefinitionError inherits OutOfRange; ---Category: The exceptions - exception DriverError inherits OutOfRange; - ---Category: The exceptions - exception GraphicDeviceDefinitionError inherits OutOfRange; ---Category: The exceptions exception DisplayConnectionDefinitionError inherits OutOfRange; ---Category: The exceptions - exception LineStyleDefinitionError inherits OutOfRange; - ---Category: Exceptions - - exception LineWidthDefinitionError inherits OutOfRange; - ---Category: Exceptions - - exception PolyStyleDefinitionError inherits OutOfRange; - ---Category: Exceptions - - exception FontStyleDefinitionError inherits OutOfRange; - ---Category: Exceptions - - exception MarkerStyleDefinitionError inherits OutOfRange; - ---Category: Exceptions - - exception UndefinedMap inherits OutOfRange; - ---Category: Exceptions - - ------------------------------ - -- Category: Classes Color map - ------------------------------ - - deferred class ColorMap; - ---Category: Classes Color map - - class ColorCubeColorMap; - ---Category: Classes Color map - - class ColorRampColorMap; - ---Category: Classes Color map - - class GenericColorMap; - ---Category: Classes Color map - - class ColorMapEntry; - ---Category: Classes Color map - - ------------------------------ - -- Category: Classes Pixel - ------------------------------ - - deferred class Pixel; - ---Category: Classes Pixel - - class IndexPixel; - ---Category: Classes Pixel - - class ColorPixel; - ---Category: Classes Pixel - --------------------------- -- Category: Classes Aspect --------------------------- @@ -242,48 +156,9 @@ is class GenId; ---Category: Classes - class FontStyle; - ---Category: The classes - - class FontMapEntry; - ---Category: Classes Font map - - class FontMap; - ---Category: The classes - - class WidthMapEntry; - ---Category: Classes Width map - - class WidthMap; - ---Category: The classes - - class LineStyle; - ---Category: The classes - - class TypeMap; - ---Category: The classes - - class TypeMapEntry; - ---Category: Classes Type map - - class MarkerStyle; - ---Category: The classes - - class MarkMap; - ---Category: The classes - - class MarkMapEntry; - ---Category: Classes Mark map - deferred class Window; ---Category: Classes - deferred class Driver; - ---Category: Classes - - deferred class WindowDriver; - ---Category: Classes - deferred class Grid; class RectangularGrid; class CircularGrid; @@ -347,14 +222,6 @@ is -- ---Category: Enumerations - enumeration TypeOfColorMap is TOC_Generic, - TOC_ColorCube, - TOC_ColorRamp - end TypeOfColorMap; - ---Purpose: Definition of the color map types - -- - ---Category: Enumerations - enumeration TypeOfConstraint is TOC_BOTTOM_LEFT, TOC_BOTTOM_RIGHT, TOC_TOP_LEFT, @@ -766,26 +633,6 @@ is Array1 from TCollection (Edge from Aspect); ---Category: Instantiated classes - class SequenceOfColorMapEntry instantiates - Sequence from TCollection (ColorMapEntry from Aspect); - ---Category: Instantiated classes - - class SequenceOfTypeMapEntry instantiates - Sequence from TCollection (TypeMapEntry from Aspect); - ---Category: Instantiated classes - - class SequenceOfWidthMapEntry instantiates - Sequence from TCollection (WidthMapEntry from Aspect); - ---Category: Instantiated classes - - class SequenceOfFontMapEntry instantiates - Sequence from TCollection (FontMapEntry from Aspect); - ---Category: Instantiated classes - - class SequenceOfMarkMapEntry instantiates - Sequence from TCollection (MarkMapEntry from Aspect); - ---Category: Instantiated classes - class SequenceOfColor instantiates Sequence from TCollection(Color from Quantity); diff --git a/src/Aspect/Aspect_ColorCubeColorMap.cdl b/src/Aspect/Aspect_ColorCubeColorMap.cdl deleted file mode 100644 index 7063bdc6cb..0000000000 --- a/src/Aspect/Aspect_ColorCubeColorMap.cdl +++ /dev/null @@ -1,95 +0,0 @@ --- Created on: 1993-03-23 --- Created by: BBL --- Copyright (c) 1993-1999 Matra Datavision --- 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. - -class ColorCubeColorMap from Aspect inherits ColorMap from Aspect - - ---Version: 0.0 - - ---Purpose: This class defines a ColorCube ColorMap object. - -- Associates a index and a color in the "ColorCube" space. - ---Keywords: - ---Warning: - ---References: - -uses - Color from Quantity, - ColorMapEntry from Aspect - -raises - BadAccess from Aspect, - RangeError from Standard - -is - Create( base_pixel, redmax, redmult, - greenmax, greenmult, - bluemax, bluemult : in Integer from Standard ) - returns ColorCubeColorMap from Aspect - raises RangeError from Standard ; - ---Level: Public - ---Purpose : Create a ColorCube ColorMap. - - ColorCubeDefinition( me : in ; - base_pixel, - redmax, redmult, - greenmax, greenmult, - bluemax, bluemult : out Integer from Standard ); - - FindColorMapIndex ( me ; - AColorMapEntryIndex : Integer from Standard ) - returns Integer from Standard - raises BadAccess from Aspect ; - ---Level: Public - ---Purpose: Returns the index in the ColorMap of the - -- ColorMapEntry.Index() equal to . - -- Warning: Raises BadAccess if the index is not defined in the - -- ColorMap. - - FindEntry ( me ; AColorMapEntryIndex : Integer from Standard ) - returns ColorMapEntry from Aspect - raises BadAccess from Aspect ; - ---Level: Public - ---Purpose: Returns the ColorMapEntry with ColorMapEntry.Index() - -- equal to . - -- Warning: Raises BadAccess if the index is not defined in the - -- ColorMap. - ---C++: return const & - - NearestColorMapIndex( me ; aColor : Color from Quantity ) - returns Integer from Standard ; - ---Level: Public - ---Purpose: Returns the index in the ColorMap of the nearest - -- matching ColorMapEntry - - NearestEntry( me ; aColor : Color from Quantity ) - returns ColorMapEntry from Aspect ; - ---Level: Public - ---Purpose: Returns the nearest ColorMapEntry that match aColor . - ---C++: return const & - - AddEntry (me : mutable; aColor : Color from Quantity) - returns Integer from Standard; - ---Level: Public - ---Purpose: Search an identical color entry in the color map - -- or returns the nearest ColorMapEntry Index. - -fields - mybasepixel : Integer from Standard ; - mygreenmax , mygreenmult : Integer from Standard ; - myredmax , myredmult : Integer from Standard ; - mybluemax , mybluemult : Integer from Standard ; - -- ColorCube definition for a ColorCube ColorMap. - -end ColorCubeColorMap ; diff --git a/src/Aspect/Aspect_ColorCubeColorMap.cxx b/src/Aspect/Aspect_ColorCubeColorMap.cxx deleted file mode 100644 index 140a3289c2..0000000000 --- a/src/Aspect/Aspect_ColorCubeColorMap.cxx +++ /dev/null @@ -1,156 +0,0 @@ -// Copyright (c) 1995-1999 Matra Datavision -// 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. - -// Modified : GG ; 14/09/01 Implements the new AddEntry method - -#include -#include - -#ifdef TRACE -static int Tlevel = 0 ; -#endif - -Aspect_ColorCubeColorMap::Aspect_ColorCubeColorMap( - const Standard_Integer basepixel , - const Standard_Integer red_max , - const Standard_Integer red_mult , - const Standard_Integer green_max , - const Standard_Integer green_mult , - const Standard_Integer blue_max , - const Standard_Integer blue_mult ) - :Aspect_ColorMap( Aspect_TOC_ColorCube ) - -{ Standard_Integer r,g,b,i ; - Aspect_ColorMapEntry value ; - Quantity_Color rgb ; - Standard_Integer max[3], mult[3], ti[3]; - - mybasepixel = basepixel ; - myredmax = red_max ; - myredmult = red_mult ; - mygreenmax = green_max ; - mygreenmult = green_mult ; - mybluemax = blue_max ; - mybluemult = blue_mult ; - - r = 0 ; g = 1 ; b = 2 ; - - if ( ( myredmult < mygreenmult ) && ( myredmult < mybluemult ) ) { - r = 0 ; - if ( mygreenmult < mybluemult ) { g = 1 ; b = 2 ; } - else { b = 1 ; g = 2 ; } - } - if ( ( mygreenmult < myredmult ) && ( mygreenmult < mybluemult ) ) { - g = 0 ; - if ( myredmult < mybluemult ) { r = 1 ; b = 2 ; } - else { b = 1 ; r = 2 ; } - } - if ( ( mybluemult < myredmult ) && ( mybluemult < mygreenmult ) ) { - b = 0 ; - if ( myredmult < mygreenmult ) { r = 1 ; g = 2 ; } - else { g = 1 ; r = 2 ; } - } - -#ifdef TRACE - if ( Tlevel ) - cout << "ColorCubeColorMap constructor (r,g,b) :" - << r << "," << g << "," << b << endl << flush ; -#endif - - mult[r] = myredmult ; max[r] = myredmax ; - mult[g] = mygreenmult ; max[g] = mygreenmax ; - mult[b] = mybluemult ; max[b] = mybluemax ; - - for( ti[2] = 0 ; ti[2] <= max[2] ; ti[2]++ ) { - for( ti[1] = 0 ; ti[1] <= max[1] ; ti[1]++ ) { - for( ti[0] = 0 ; ti[0] <= max[0] ; ti[0]++ ) { - rgb.SetValues( (Standard_Real) ti[r] / (Standard_Real) max[r], - (Standard_Real) ti[g] / (Standard_Real) max[g], - (Standard_Real) ti[b] / (Standard_Real) max[b], - Quantity_TOC_RGB ) ; - - i = ti[r] * mult[r] + ti[g] * mult[g] + ti[b] * mult[b] ; - - value.SetValue( mybasepixel+i, rgb ) ; -#ifdef TRACE - if ( Tlevel ) - value.Dump() ; -#endif - mydata.Append( value ) ; - } - } - } -} - -const Aspect_ColorMapEntry& Aspect_ColorCubeColorMap::NearestEntry( - const Quantity_Color& color ) const - -{ - return( Entry( NearestColorMapIndex( color ) ) ) ; -} - -Standard_Integer Aspect_ColorCubeColorMap::NearestColorMapIndex( - const Quantity_Color& color ) const - -{ Standard_Integer r,g,b ; - - r = (Standard_Integer ) ( color.Red() * myredmax + 0.5) ; - g = (Standard_Integer ) ( color.Green() * mygreenmax + 0.5) ; - b = (Standard_Integer ) ( color.Blue() * mybluemax + 0.5) ; - - return( r*myredmult+g*mygreenmult+b*mybluemult + 1 ) ; -} - -const Aspect_ColorMapEntry& Aspect_ColorCubeColorMap::FindEntry( - const Standard_Integer index ) const - -{ - return( Entry( FindColorMapIndex( index ) ) ) ; -} - -Standard_Integer Aspect_ColorCubeColorMap::FindColorMapIndex( - const Standard_Integer index ) const -{ - - if ( index < mybasepixel || - index >= ( mybasepixel+Size() ) ){ - Aspect_BadAccess::Raise ("FindEntryIndex() index not found."); - } - - return( index - mybasepixel + 1 ) ; -} - -void Aspect_ColorCubeColorMap::ColorCubeDefinition( - Standard_Integer& basepixel , - Standard_Integer& red_max , - Standard_Integer& red_mult , - Standard_Integer& green_max , - Standard_Integer& green_mult , - Standard_Integer& blue_max , - Standard_Integer& blue_mult ) const - -{ - basepixel = mybasepixel ; - red_max = myredmax ; - red_mult = myredmult ; - green_max = mygreenmax ; - green_mult = mygreenmult ; - blue_max = mybluemax ; - blue_mult = mybluemult ; -} - -Standard_Integer Aspect_ColorCubeColorMap::AddEntry (const Quantity_Color &aColor) { - - return mybasepixel + NearestColorMapIndex(aColor) - 1; -} diff --git a/src/Aspect/Aspect_ColorMap.cdl b/src/Aspect/Aspect_ColorMap.cdl deleted file mode 100644 index 80ff672583..0000000000 --- a/src/Aspect/Aspect_ColorMap.cdl +++ /dev/null @@ -1,111 +0,0 @@ --- Created on: 1993-03-23 --- Created by: BBL --- Copyright (c) 1993-1999 Matra Datavision --- 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. - -deferred class ColorMap from Aspect inherits TShared from MMgt - - ---Version: 0.0 - - ---Purpose: This class defines a ColorMap object. - ---Keywords: - ---Warning: - ---References: -uses - Color from Quantity, - TypeOfColorMap from Aspect, - ColorMapEntry from Aspect, - SequenceOfColorMapEntry from Aspect - -raises - BadAccess from Aspect - -is - - Initialize( type : TypeOfColorMap from Aspect ); - - Type( me ) - returns TypeOfColorMap from Aspect is static; - ---Level: Public - - Size( me ) returns Integer from Standard is static; - ---Level: Public - ---Purpose: Returns the Allocated colormap Size - - Index( me ; aColormapIndex : Integer ) returns Integer from Standard - ---Level: Public - ---Purpose: Returns the ColorMapEntry.Index of the ColorMap - -- at rank . - raises BadAccess from Aspect is static; - ---Trigger: Raises BadAccess if the index less than 1 or - -- greater than Size. - - Dump( me ) ; - ---Level: Internal - - Entry ( me ; AColorMapIndex : Integer from Standard ) - returns ColorMapEntry from Aspect - ---Level: Public - ---Purpose: Return the value of the th element of - -- the ColorMap - raises BadAccess from Aspect is static; - ---Trigger: Raises BadAccess if the index less than 1 or - -- greater than Size. - ---C++: return const & - - FindColorMapIndex ( me ; - AColorMapEntryIndex : Integer from Standard ) - returns Integer from Standard - ---Level: Public - ---Purpose: Returns the index in the ColorMap of the - -- ColorMapEntry.Index() equal to . - raises BadAccess from Aspect is deferred ; - ---Trigger: Raises BadAccess if the index is not defined in the - -- ColorMap. - - FindEntry ( me ; AColorMapEntryIndex : Integer from Standard ) - returns ColorMapEntry from Aspect - ---Level: Public - ---Purpose: Returns the ColorMapEntry with ColorMapEntry.Index() - -- equal to . - raises BadAccess from Aspect is deferred ; - ---Trigger: Raises BadAccess if the index is not defined in the - -- ColorMap. - ---C++: return const & - - NearestColorMapIndex( me ; aColor : Color from Quantity ) - returns Integer from Standard is deferred ; - ---Level: Public - ---Purpose: Returns the index in the ColorMap of the - -- nearest matching ColorMapEntry - - NearestEntry( me ; aColor : Color from Quantity ) - returns ColorMapEntry from Aspect is deferred ; - ---Level: Public - ---Purpose: Returns the nearest ColorMapEntry that match aColor . - ---C++: return const & - - AddEntry (me : mutable; aColor : Color from Quantity) - returns Integer from Standard is deferred; - ---Level: Public - ---Purpose: Search an identical color entry in the color map - -- and returns the ColorMapEntry Index if exist. - -- Or add a new entry and returns the computed ColorMapEntry index used. - -fields - - mytype : TypeOfColorMap from Aspect; - mydata : SequenceOfColorMapEntry from Aspect is protected; - -end ColorMap ; diff --git a/src/Aspect/Aspect_ColorMap.cxx b/src/Aspect/Aspect_ColorMap.cxx deleted file mode 100644 index 94f8b4368a..0000000000 --- a/src/Aspect/Aspect_ColorMap.cxx +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 1995-1999 Matra Datavision -// 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 - -Aspect_ColorMap::Aspect_ColorMap( const Aspect_TypeOfColorMap type ) { - - mytype = type; -} - -Aspect_TypeOfColorMap Aspect_ColorMap::Type() const { - - return mytype ; -} - -Standard_Integer Aspect_ColorMap::Size() const { - - return mydata.Length() ; -} - -Standard_Integer Aspect_ColorMap::Index(const Standard_Integer anIndex) const { - - if( anIndex < 1 || anIndex > Size() ) { - Aspect_BadAccess::Raise ("Undefined colormap Index"); - } - - Aspect_ColorMapEntry theEntry = mydata.Value(anIndex) ; - - return theEntry.Index() ; -} - -const Aspect_ColorMapEntry& Aspect_ColorMap::Entry (const Standard_Integer AnIndex) const { - - return mydata.Value(AnIndex); -} - -void Aspect_ColorMap::Dump () const { - - Standard_Integer i ; - - cout << "Colormap Dump-->\n" ; - - for ( i = 1 ; i <= Size() ; i++ ) (Entry(i)).Dump() ; - - cout << "<--End Colormap Dump\n" ; -} diff --git a/src/Aspect/Aspect_ColorMapEntry.cdl b/src/Aspect/Aspect_ColorMapEntry.cdl deleted file mode 100644 index 85c4fa66a2..0000000000 --- a/src/Aspect/Aspect_ColorMapEntry.cdl +++ /dev/null @@ -1,103 +0,0 @@ --- Created on: 1993-03-23 --- Created by: BBL --- Copyright (c) 1993-1999 Matra Datavision --- 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. - -class ColorMapEntry from Aspect inherits Storable from Standard - - ---Version: 0.0 - - ---Purpose: This class defines a colormap entry. - -- A colormap entry is an association between - -- a RGB object and a index in the colormap. - ---Keywords: - ---Warning: - ---References: - -uses - Color from Quantity - -raises - OutOfRange from Standard, - BadAccess from Aspect - -is - Create - returns ColorMapEntry from Aspect; - ---Level: Public - ---Purpose: Creates an unallocated colormap entry - - Create ( index : in Integer from Standard; - rgb : in Color from Quantity) - returns ColorMapEntry; - ---Level: Public - ---Purpose: Creates an allocated colormap entry - - Create ( entry : in ColorMapEntry from Aspect ) - returns ColorMapEntry - ---Level: Public - ---Purpose: Creates an allocated colormap entry. - -- Warning: Raises error if the colormap entry - -- is unallocated. - raises BadAccess from Aspect; - - SetValue ( me: in out; index : in Integer from Standard; - rgb : in Color from Quantity ); - ---Level: Public - ---Purpose: Sets colormap entry value and allocates it. - - SetValue ( me: in out; entry : in ColorMapEntry from Aspect); - ---Level: Public - ---Purpose: Sets colormap entry value and allocates it. - ---C++: alias operator = - - SetColor ( me: in out; rgb : in Color from Quantity ); - ---Level: Public - ---Purpose: Sets color of colormap entry. - - Color ( me : in ) returns Color from Quantity - ---Warning: Raises error if the colormap entry is unallocated . - raises BadAccess from Aspect; - ---C++: return const & - - SetIndex ( me: in out; index : in Integer from Standard); - ---Level: Public - ---Purpose: Sets index value of a colormap entry. - - Index ( me : in ) returns Integer from Standard - ---Warning: Raises error if the colormap entry is unallocated . - raises BadAccess from Aspect; - - Free ( me : in out ); - ---Level: Public - ---Purpose: Unallocates the colormap entry. - - IsAllocated ( me : in ) - returns Boolean from Standard; - ---Level: Public - ---Purpose: Returns True if the colormap entry is allocated. - -- Warning: A colormap entry is allocated when the color and - -- the index is defined. - - Dump( me : in ) ; - ---Level: Internal - -fields - allocated : Boolean from Standard; - mycolor : Color from Quantity; - myindex : Integer from Standard; - myColorIsDef : Boolean from Standard; - myIndexIsDef : Boolean from Standard; - -end ColorMapEntry from Aspect; diff --git a/src/Aspect/Aspect_ColorMapEntry.cxx b/src/Aspect/Aspect_ColorMapEntry.cxx deleted file mode 100644 index 903b84ea62..0000000000 --- a/src/Aspect/Aspect_ColorMapEntry.cxx +++ /dev/null @@ -1,141 +0,0 @@ -// Copyright (c) 1995-1999 Matra Datavision -// 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 - -Aspect_ColorMapEntry::Aspect_ColorMapEntry() { - - myColorIsDef = Standard_True; - myIndexIsDef = Standard_True; - allocated = myColorIsDef && myIndexIsDef; - myindex = 0; - mycolor.SetValues (0., 0., 0., Quantity_TOC_RGB); - -} - -Aspect_ColorMapEntry::Aspect_ColorMapEntry (const Standard_Integer index, const Quantity_Color &color) { - - myColorIsDef = Standard_True; - myIndexIsDef = Standard_True; - allocated = myColorIsDef && myIndexIsDef; - myindex = index; - mycolor = color; - -} - -Aspect_ColorMapEntry::Aspect_ColorMapEntry (const Aspect_ColorMapEntry& entry) { - - if (entry.allocated == Standard_False) { - Aspect_BadAccess::Raise -("Aspect_ColorMapEntry::Aspect_ColorMapEntry Unallocated ColorMapEntry"); - } - else { - myColorIsDef = Standard_True; - myIndexIsDef = Standard_True; - allocated = myColorIsDef && myIndexIsDef; - myindex = entry.myindex; - mycolor = entry.mycolor; - } -} - -void Aspect_ColorMapEntry::SetValue (const Standard_Integer index, const Quantity_Color &color) { - - myColorIsDef = Standard_True; - myIndexIsDef = Standard_True; - allocated = myColorIsDef && myIndexIsDef; - myindex = index; - mycolor = color; - -} - -void Aspect_ColorMapEntry::SetValue (const Aspect_ColorMapEntry& entry) { - - if (entry.allocated == Standard_False) { - Aspect_BadAccess::Raise -("Aspect_ColorMapEntry::Aspect_ColorMapEntry Unallocated ColorMapEntry"); - } - else { - myColorIsDef = Standard_True; - myIndexIsDef = Standard_True; - allocated = myColorIsDef && myIndexIsDef; - myindex = entry.myindex; - mycolor = entry.mycolor; - } - -} - -void Aspect_ColorMapEntry::SetColor (const Quantity_Color &color) { - - myColorIsDef = Standard_True; - allocated = myColorIsDef && myIndexIsDef; - mycolor = color; - -} - -const Quantity_Color& Aspect_ColorMapEntry::Color () const { - - if (allocated == Standard_False) - Aspect_BadAccess::Raise - ("Aspect_ColorMapEntry::Color Unallocated ColorMapEntry"); - - return mycolor; - -} - -void Aspect_ColorMapEntry::SetIndex (const Standard_Integer index) { - - myColorIsDef = Standard_True; - allocated = myColorIsDef && myIndexIsDef; - myindex = index; - -} - -Standard_Integer Aspect_ColorMapEntry::Index () const { - - if (allocated == Standard_False) - Aspect_BadAccess::Raise - ("Aspect_ColorMapEntry::Index Unallocated ColorMapEntry"); - - return myindex; - -} - -Standard_Boolean Aspect_ColorMapEntry::IsAllocated () const { - - return allocated; - -} - -void Aspect_ColorMapEntry::Free () { - - myColorIsDef = Standard_False; - myIndexIsDef = Standard_False; - allocated = myColorIsDef && myIndexIsDef; - -} - -void Aspect_ColorMapEntry::Dump () const { - - Standard_Real r,g,b ; - - mycolor.Values( r,g,b, Quantity_TOC_RGB ) ; - - cout << flush; - cout << "myColorIsDef : " << (myColorIsDef ? "True " : "False") << " , " - << "myIndexIsDef : " << (myIndexIsDef ? "True " : "False") << " , " - << "allocated : " << (allocated ? "True " : "False") << "\n"; - cout << "myindex : " << myindex << " myColor : ( " - << r << ", " << g << ", " << g << " )\n"; - cout << flush; -} diff --git a/src/Aspect/Aspect_ColorPixel.cdl b/src/Aspect/Aspect_ColorPixel.cdl deleted file mode 100644 index c99df095c8..0000000000 --- a/src/Aspect/Aspect_ColorPixel.cdl +++ /dev/null @@ -1,57 +0,0 @@ --- Created on: 1993-07-23 --- Created by: Jean Louis FRENKEL --- Copyright (c) 1993-1999 Matra Datavision --- 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. - -class ColorPixel from Aspect inherits Pixel from Aspect - -uses - Color from Quantity -is - - Create returns ColorPixel from Aspect; - ---Level: Public - - Create(aColor: Color from Quantity) returns ColorPixel from Aspect; - ---Level: Public - - Value (me) returns Color from Quantity is static ; - ---Level: Public - ---C++: return const & - - SetValue(me: in out; aColor: Color from Quantity) is static ; - ---Level: Public - - Print( me ; s : in out OStream from Standard ) is redefined static ; - ---Level: Public - ---Purpose : Prints the contents of on the stream - - HashCode (me; Upper : Integer ) returns Integer is redefined static ; - ---Level: Public - ---Purpose: Returns a hashed value denoting . This value is in - -- the range 1... - ---C++: function call - - IsEqual(me; Other : ColorPixel from Aspect) returns Boolean; - ---C++: alias operator== - - IsNotEqual(me; Other : ColorPixel from Aspect) returns Boolean; - ---C++: alias operator!= - - - -fields - myColor: Color from Quantity; - -end ColorPixel from Aspect; diff --git a/src/Aspect/Aspect_ColorPixel.cxx b/src/Aspect/Aspect_ColorPixel.cxx deleted file mode 100644 index 5dd9d465c7..0000000000 --- a/src/Aspect/Aspect_ColorPixel.cxx +++ /dev/null @@ -1,74 +0,0 @@ -// Copyright (c) 1995-1999 Matra Datavision -// 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 - -Aspect_ColorPixel::Aspect_ColorPixel () { - - myColor.SetValues( 0.,0.,0. , Quantity_TOC_RGB ) ; - -} - -Aspect_ColorPixel::Aspect_ColorPixel (const Quantity_Color& aColor) { - - myColor = aColor; - -} - -const Quantity_Color& Aspect_ColorPixel::Value() const { - -return myColor; - -} - - -void Aspect_ColorPixel::SetValue(const Quantity_Color& aColor) { - - myColor = aColor; - -} - -void Aspect_ColorPixel::Print(Standard_OStream& s) const - -{ Standard_Real r,g,b ; - - myColor.Values( r,g,b, Quantity_TOC_RGB ) ; - - s << "( " << r << ", " << g << ", " << b << " )" << flush; -} - -// ------------------------------------------------------------------ -// Hascode : Computes a hascoding value for a given Aspect_ColorPixel -// ------------------------------------------------------------------ -Standard_Integer Aspect_ColorPixel::HashCode(const Standard_Integer Upper) const -{ Standard_Real r,g,b ; - Standard_Integer ret ; - - myColor.Values( r,g,b, Quantity_TOC_RGB ) ; - - ret = ( Standard_Integer ) ( ( r + g + b ) * Upper ) ; - - return ( ret % Upper ) + 1 ; -} - - -Standard_Boolean Aspect_ColorPixel::IsEqual(const Aspect_ColorPixel& Other) const -{ - return (myColor == Other.myColor); -} - -Standard_Boolean Aspect_ColorPixel::IsNotEqual(const Aspect_ColorPixel& Other) const -{ - return !IsEqual(Other); -} diff --git a/src/Aspect/Aspect_ColorRampColorMap.cdl b/src/Aspect/Aspect_ColorRampColorMap.cdl deleted file mode 100644 index a39708c1d9..0000000000 --- a/src/Aspect/Aspect_ColorRampColorMap.cdl +++ /dev/null @@ -1,110 +0,0 @@ --- Created on: 1993-03-23 --- Created by: BBL --- Copyright (c) 1993-1999 Matra Datavision --- 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. - -class ColorRampColorMap from Aspect inherits ColorMap from Aspect - - ---Version: 0.0 - - ---Purpose: This class defines a ColorRampColorMap object. - -- Associates a index and a color in the linear "ColorRamp" space. - ---Keywords: - ---Warning: - ---References: - -uses - Color from Quantity, - NameOfColor from Quantity, - ColorMapEntry from Aspect - -raises - RangeError from Standard, - BadAccess from Aspect - -is - Create( basepixel,dimension : in Integer from Standard ; - color : in Color from Quantity ) - returns ColorRampColorMap from Aspect - raises RangeError from Standard ; - ---Level: Public - ---Purpose : Create a Color Ramp Colormap starting from Black at - -- basepixel to color at basepixel+dimension-1. - - Create( basepixel,dimension : in Integer from Standard ; - colorName : in NameOfColor from Quantity ) - returns ColorRampColorMap from Aspect - raises RangeError from Standard ; - ---Level: Public - ---Purpose : Create a Color Ramp Colormap starting from Black at - -- basepixel to color at basepixel+dimension-1. - - ColorRampDefinition( me : in ; - basepixel,dimension : out Integer from Standard ; - color : out Color from Quantity ) ; - ---Level: Public - ---Purpose : Get Color Ramp Colormap definition . - - ComputeEntry( me : in out mutable ; - basepixel,dimension : in Integer from Standard ; - color : in Color from Quantity ) - raises RangeError from Standard is private ; - ---Level: Public - ---Purpose : Create a Color Ramp Colormap starting from Black at - -- basepixel to color at basepixel+dimension-1. - - FindColorMapIndex ( me ; - ColorMapEntryIndex : Integer from Standard ) - returns Integer from Standard - raises BadAccess from Aspect ; - ---Level: Public - ---Purpose: Returns the index in the ColorMap of the - -- ColorMapEntry.Index() equal to . - -- Warning: Raises BadAccess if the index is not defined in the - -- ColorMap. - - FindEntry ( me ; AColorMapEntryIndex : Integer from Standard ) - returns ColorMapEntry from Aspect - raises BadAccess from Aspect ; - ---Level: Public - ---Purpose: Returns the ColorMapEntry with ColorMapEntry.Index() - -- equal to . - -- Warning: Raises BadAccess if the index is not defined in the - -- ColorMap. - ---C++: return const & - - NearestColorMapIndex( me ; aColor : Color from Quantity ) - returns Integer from Standard ; - ---Level: Public - ---Purpose: Returns the index in the ColorMap of the - -- nearest matching ColorMapEntry - - NearestEntry( me ; aColor : Color from Quantity ) - returns ColorMapEntry from Aspect ; - ---Level: Public - ---Purpose: Returns the nearest ColorMapEntry that match aColor . - ---C++: return const & - - AddEntry (me : mutable; aColor : Color from Quantity) - returns Integer from Standard; - ---Level: Public - ---Purpose: Search an identical color entry in the color map - -- or returns the nearest ColorMapEntry Index. - -fields - mycolor : Color from Quantity ; - mybasepixel : Integer from Standard ; - mydimension : Integer from Standard ; - -end ColorRampColorMap ; diff --git a/src/Aspect/Aspect_ColorRampColorMap.cxx b/src/Aspect/Aspect_ColorRampColorMap.cxx deleted file mode 100644 index 81a395b850..0000000000 --- a/src/Aspect/Aspect_ColorRampColorMap.cxx +++ /dev/null @@ -1,126 +0,0 @@ -// Copyright (c) 1995-1999 Matra Datavision -// 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. - -// Modified : GG ; 14/09/01 Implements the new AddEntry method - -#define IMP140901 // GG Compute correctly the color ramp -// accordingly to the requested color. - -#include -#include -#include - - -Aspect_ColorRampColorMap::Aspect_ColorRampColorMap( - const Standard_Integer basepixel , - const Standard_Integer dimension , - const Quantity_NameOfColor color ) - :Aspect_ColorMap(Aspect_TOC_ColorRamp ) - -{ ComputeEntry( basepixel, dimension, - Quantity_Color( color ) ) ; } - -Aspect_ColorRampColorMap::Aspect_ColorRampColorMap( - const Standard_Integer basepixel , - const Standard_Integer dimension , - const Quantity_Color& color ) - :Aspect_ColorMap(Aspect_TOC_ColorRamp ) - -{ ComputeEntry( basepixel, dimension, color ) ; } - -void Aspect_ColorRampColorMap::ComputeEntry( - const Standard_Integer basepixel , - const Standard_Integer dimension , - const Quantity_Color& color ) - -{ Standard_Integer i ; - Aspect_ColorMapEntry value ; - Quantity_Color rgb ; - Standard_Real v ; -#ifdef IMP140901 - Standard_Real r,g,b; -#endif - - mycolor = color ; - mybasepixel = basepixel ; - mydimension = dimension ; -#ifdef IMP140901 - mycolor.Values(r,g,b,Quantity_TOC_RGB); -#endif - - for( i = 0 ; i < dimension ; i++ ) { - v = ( Standard_Real ) i / - ( Standard_Real )(dimension-1) ; - -#ifdef IMP140901 - rgb.SetValues( r*v, g*v, b*v, Quantity_TOC_RGB ) ; -#else - rgb.SetValues( v, v, v, Quantity_TOC_RGB ) ; -#endif - - value.SetValue( basepixel+i, rgb ) ; - - mydata.Append( value ) ; - } -} - -const Aspect_ColorMapEntry& Aspect_ColorRampColorMap::NearestEntry( - const Quantity_Color& color ) const - -{ - return( Entry( NearestColorMapIndex( color ) ) ) ; -} - -Standard_Integer Aspect_ColorRampColorMap::NearestColorMapIndex( - const Quantity_Color& color ) const - -{ -return( (Standard_Integer ) ( ( color.Light() * (mydimension-1) ) + 1 )) ; -} - - -const Aspect_ColorMapEntry& Aspect_ColorRampColorMap::FindEntry( - const Standard_Integer index ) const - -{ - return( Entry( FindColorMapIndex( index ) ) ) ; -} - -Standard_Integer Aspect_ColorRampColorMap::FindColorMapIndex( - const Standard_Integer index ) const -{ - - if ( index < mybasepixel || - index >= ( mybasepixel+mydimension ) ){ - Aspect_BadAccess::Raise ("FindEntryIndex() index not found."); - } - - return( index - mybasepixel + 1 ) ; -} - -void Aspect_ColorRampColorMap::ColorRampDefinition( - Standard_Integer& basepixel, - Standard_Integer& size, - Quantity_Color& color ) const - -{ basepixel = mybasepixel ; - size = mydimension ; - color = mycolor ; -} - -Standard_Integer Aspect_ColorRampColorMap::AddEntry (const Quantity_Color &aColor) { - - return mybasepixel + NearestColorMapIndex(aColor) - 1; -} - diff --git a/src/Aspect/Aspect_ColorScale.cdl b/src/Aspect/Aspect_ColorScale.cdl index f03d8b3c7b..f09e10e8ec 100644 --- a/src/Aspect/Aspect_ColorScale.cdl +++ b/src/Aspect/Aspect_ColorScale.cdl @@ -19,7 +19,6 @@ uses TypeOfColorScaleData from Aspect, TypeOfColorScalePosition from Aspect, - ColorMap from Aspect, SequenceOfColor from Aspect, Color from Quantity, AsciiString from TCollection, @@ -150,9 +149,6 @@ is SetLabels(me : mutable; aSeq : SequenceOfExtendedString from TColStd); ---Purpose: Sets the color scale labels. - SetColors(me : mutable; aMap : ColorMap from Aspect); - ---Purpose: Sets the color scale colors. - SetColors(me : mutable; aSeq : SequenceOfColor from Aspect); ---Purpose: Sets the color scale colors. diff --git a/src/Aspect/Aspect_ColorScale.cxx b/src/Aspect/Aspect_ColorScale.cxx index fd5c491a50..287f77ce72 100644 --- a/src/Aspect/Aspect_ColorScale.cxx +++ b/src/Aspect/Aspect_ColorScale.cxx @@ -15,8 +15,6 @@ #include -#include -#include #include #include #include @@ -252,14 +250,6 @@ void Aspect_ColorScale::SetLabels( const TColStd_SequenceOfExtendedString& aSeq myLabels.Append( aSeq.Value( i ) ); } -void Aspect_ColorScale::SetColors( const Handle(Aspect_ColorMap)& aMap ) -{ - myColors.Clear(); - if ( !aMap.IsNull() ) - for ( Standard_Integer i = 1; i <= aMap->Size(); i++ ) - myColors.Append( aMap->Entry( i ).Color() ); -} - void Aspect_ColorScale::SetColors( const Aspect_SequenceOfColor& aSeq ) { myColors.Clear(); diff --git a/src/Aspect/Aspect_Driver.cdl b/src/Aspect/Aspect_Driver.cdl deleted file mode 100644 index 4a2805c1f3..0000000000 --- a/src/Aspect/Aspect_Driver.cdl +++ /dev/null @@ -1,427 +0,0 @@ --- Created on: 1993-07-01 --- Created by: Jean Louis FRENKEL,Gerard GRAS --- Copyright (c) 1993-1999 Matra Datavision --- 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. - --- Update: Fri Jan 30 16:05:00 1998 --- Adds parameter in the SetFontMap() method --- and adds the new method UseMFT() --- for using MDTV fonts instead system fonts. - -deferred class Driver from Aspect inherits TShared from MMgt - ----Purpose: Defines the common behaviour of the output driver. --- Warning: Permits to defines polyline,polygon,marker and text attributes in relation --- with the SINGLE primitives DrawPolyline(),DrawPolygon(),.... --- or the INCREMENTAL primitives BeginPolyline(),BeginPolygon(),... --- or the SET of primitives BeginArcs(),BeginMarkers(),... --- --- NOTE that : --- The incremental primitives are interesting to used because --- no more arrays are necessary to fill it. --- The set of primitives are interesting to used because this --- increase the drawing performances. - -uses - - ExtendedString from TCollection, - Array1OfShortReal from TShort, - ColorMap from Aspect, - TypeMap from Aspect, - WidthMap from Aspect, - FontMap from Aspect, - MarkMap from Aspect, - TypeOfText from Aspect, - PlaneAngle from Quantity, - Length from Quantity, - Factor from Quantity, - Ratio from Quantity, - Color from Quantity - -raises - - DriverDefinitionError from Aspect, - DriverError from Aspect, - UndefinedMap from Aspect -is - - Initialize; - - EndDraw (me: mutable; Synchronize: Boolean = Standard_False) is deferred; - ---Purpose: Flush all graphics and Wait after up to date - --display when Synchronize is TRUE. - - --------------------------------------------- - -- Category: Methods to define the attributes - --------------------------------------------- - - SetColorMap(me: mutable; - aColorMap: ColorMap from Aspect) - raises DriverError from Aspect is static; - ---Category: Methods to define the ColorIndexs - - SetTypeMap(me: mutable; - aTypeMap: TypeMap from Aspect) - raises DriverError from Aspect is static; - ---Category: Methods to define the TypeIndexs - - SetWidthMap(me: mutable; - aWidthMap: WidthMap from Aspect) - raises DriverError from Aspect is static; - ---Category: Methods to define the WidthIndexs - - SetFontMap(me: mutable; - aFontMap: FontMap from Aspect) - raises DriverError from Aspect is static; - ---Category: Methods to define the FontIndexs - ---Purpose: - -- Sets the current font map to this driver and Enable/Disable - -- this driver to use MDTV fonts instead system fonts. - - SetMarkMap(me: mutable; - aMarkMap: MarkMap from Aspect) - raises DriverError from Aspect is static; - ---Category: Methods to define the MarkerIndexs - - SetLineAttrib (me: mutable; - ColorIndex: Integer from Standard; - TypeIndex: Integer from Standard; - WidthIndex: Integer from Standard) - raises DriverError from Aspect is deferred; - ---Category: Methods to define the Current Line Attibutes - - SetTextAttrib (me: mutable; - ColorIndex: Integer from Standard; - FontIndex: Integer from Standard) - raises DriverError from Aspect is deferred; - ---Category: Methods to define the Current Text Attributes - - SetTextAttrib (me: mutable; - ColorIndex: Integer from Standard; - FontIndex: Integer from Standard; - aSlant: PlaneAngle from Quantity; - aHScale: Factor from Quantity; - aWScale: Factor from Quantity; - isUnderlined: Boolean from Standard = Standard_False) - raises DriverError from Aspect is deferred; - ---Category: Methods to define the Current Extended Text Attributes - - SetPolyAttrib (me: mutable; - ColorIndex: Integer from Standard; - TileIndex: Integer from Standard; - DrawEdge: Boolean from Standard = Standard_False) - raises DriverError from Aspect is deferred; - ---Category: Methods to set the poly attributes - - SetMarkerAttrib (me: mutable; - ColorIndex: Integer from Standard; - WidthIndex: Integer from Standard; - FillMarker: Boolean from Standard = Standard_False) - raises DriverError from Aspect is deferred; - ---Category: Methods to define the Current Marker Attributes - - ---Category: Images methods: - - IsKnownImage(me: mutable; anImage: Transient from Standard) - returns Boolean from Standard - is deferred; - - SizeOfImageFile(me; anImageFile: CString from Standard; - aWidth,aHeight: out Integer from Standard) - returns Boolean from Standard - is deferred; - - ClearImage (me: mutable; anImageId: Transient from Standard) - raises DriverError from Aspect is deferred; - - ClearImageFile (me: mutable; anImageFile: CString from Standard) - raises DriverError from Aspect is deferred; - - DrawImage (me: mutable; anImageId: Transient from Standard; - aX, aY: ShortReal from Standard) - raises DriverError from Aspect is deferred; - ---Category: Methods to draw primitives - - DrawImageFile (me: mutable; anImageFile: CString from Standard; - aX, aY: ShortReal from Standard; - aScale: Factor from Quantity = 1.0) - raises DriverError from Aspect is deferred; - ---Category: Methods to draw primitives - - FillAndDrawImage (me: mutable; anImageId: Transient from Standard; - aX, aY: ShortReal from Standard; - aWidth, aHeight: Integer from Standard; - anArrayOfPixels: Address from Standard) - raises DriverError from Aspect is deferred; - ---Level: Public - ---Purpose: Fills a complete Image . - ---Category: Methods to draw primitives - - FillAndDrawImage (me: mutable; anImageId: Transient from Standard; - aX, aY: ShortReal from Standard; - anIndexOfLine, aWidth, aHeight: Integer from Standard; - anArrayOfPixels: Address from Standard) - raises DriverError from Aspect is deferred; - ---Level: Public - ---Purpose: Fills a line of the Image . - -- Warning: 0 <= anIndexOfLine < aHeight - -- anIndexOfLine = 0 must be the first call - ---Category: Methods to draw primitives - - DrawPolyline (me : mutable; - aListX, aListY: Array1OfShortReal from TShort) - ---Level: Public - ---Purpose: Draw a polyline depending of the SetLineAttrib() attributes. - raises DriverError from Aspect is deferred; - ---Trigger: Raises if have not the same size. - ---Category: Methods to draw primitives - - DrawPolygon (me : mutable; - aListX, aListY: Array1OfShortReal from TShort) - ---Level: Public - ---Purpose: Draw a polygon depending of the SetPolyAttrib() attributes. - raises DriverError from Aspect is deferred; - ---Trigger: Raises if have not the same size. - ---Category: Methods to draw primitives - - DrawSegment (me : mutable; - X1, Y1: ShortReal from Standard; - X2, Y2: ShortReal from Standard) - ---Level: Public - ---Purpose: Draw a segment depending of the SetLineAttrib() attributes. - raises DriverError from Aspect is deferred; - ---Category: Methods to draw primitives - - DrawText (me : mutable; - aText: ExtendedString from TCollection; - Xpos: ShortReal from Standard; - Ypos: ShortReal from Standard; - anAngle: ShortReal from Standard = 0.0; - aType: TypeOfText from Aspect = Aspect_TOT_SOLID) - ---Level: Public - ---Purpose: Draws a text depending of the SetTextAttrib() attributes. - ---Warning: Coordinates must be defined in DWU space. - raises DriverError from Aspect is deferred; - ---Trigger: Raises if Text has too many chars (> 1024) - ---Category: Methods to draw primitives - - DrawPolyText (me : mutable; - aText: ExtendedString from TCollection; - Xpos: ShortReal from Standard; - Ypos: ShortReal from Standard; - aMarge: Ratio from Quantity = 0.1; - anAngle: ShortReal from Standard = 0.0; - aType: TypeOfText from Aspect = Aspect_TOT_SOLID) - ---Level: Public - ---Purpose: Draws an framed text depending of the - -- SetTextAttrib() and SetPolyAttrib() attributes. - -- Warning: Coordinates must be defined in DWU space. - -- defines the ratio of the space between the - -- polygon borders and the bounding box of the text and - -- depending of the height of the text. - raises DriverError from Aspect is deferred; - ---Trigger: Raises if Text has too many chars (> 1024) - -- or 1. - ---Category: Methods to draw primitives - - DrawPoint (me : mutable; X, Y: ShortReal from Standard) - ---Level: Public - ---Purpose: Draws a 1 PIXEL point depending of the SetMarkerAttrib() - --color attribute or add a point depending of the incremental BeginXxxxxx() - --primitive used. - raises DriverError from Aspect is deferred; - ---Category: Methods to draw primitives - - DrawMarker (me : mutable; - aMarker: Integer from Standard; - Xpos: ShortReal from Standard; - Ypos: ShortReal from Standard; - Width: ShortReal from Standard; - Height: ShortReal from Standard; - Angle: ShortReal from Standard = 0.0) - ---Level: Public - ---Purpose: Draws the prevously defined marker - --depending of the SetMarkerAttrib() attributes. - -- Warning: Coordinates and sizes must be defined in DWU space. - -- Angle must be defined in RADIAN. - -- A one pixel marker is drawn when aMarker index is undefined. - raises DriverError from Aspect is deferred; - ---Category: Methods to draw primitives - - DrawArc (me : mutable; X,Y : ShortReal from Standard; - anXradius,anYradius : ShortReal from Standard; - aStartAngle: ShortReal from Standard = 0.0; - anOpenAngle: ShortReal from Standard = 6.283185) - returns Boolean - ---Level: Public - ---Purpose: Draws an Ellipsoid arc of center and Radius - -- of relative angle from - --the base angle and depending of the SetLineAttrib() attributes. - -- Warning: Returns FALSE if the hardware can't drawing this - --primitive properly,application must to simulate it. - raises DriverError from Aspect is deferred; - ---Trigger: Raises if one of is <= 0. - ---Category: Methods to draw primitives - - DrawPolyArc (me : mutable; X,Y : ShortReal from Standard; - anXradius,anYradius : ShortReal from Standard; - aStartAngle: ShortReal from Standard = 0.0; - anOpenAngle: ShortReal from Standard = 6.283185) - returns Boolean - ---Level: Public - ---Purpose: Draws an filled Ellipsoid arc of center and Radius - -- of relative angle from - --the base angle and depending of the SetPolyAttrib() attributes. - -- Warning: Returns FALSE if the hardware can't drawing this - --primitive properly,application must to simulate it. - raises DriverError from Aspect is deferred; - ---Trigger: Raises if one of is <= 0. - ---Category: Methods to draw primitives - - BeginPolyline (me : mutable; aNumber : Integer) is deferred; - ---Level: Public - ---Purpose: Begin an incremental polyline primitive of of points . - -- Warning: Points must be added by the the DrawPoint() method. - - BeginPolygon (me : mutable; aNumber : Integer) is deferred; - ---Level: Public - ---Purpose: Begin an incremental polygon primitive of of points . - -- Warning: Points must be added by the the DrawPoint() method. - - BeginSegments (me : mutable) is deferred; - ---Level: Public - ---Purpose: Begin a set of segments . - -- Warning: Segments must be added by the DrawSegment() method. - - BeginArcs (me : mutable) is deferred; - ---Level: Public - ---Purpose: Begin a set of circles or ellips . - -- Warning: Arcs must be added by the DrawArc() methods. - - BeginPolyArcs (me : mutable) is deferred; - ---Level: Public - ---Purpose: Begin a set of polygon circles or ellips . - -- Warning: Arcs must be added by the DrawPolyArc() methods. - - BeginMarkers (me : mutable) is deferred; - ---Level: Public - ---Purpose: Begin a set of markers . - -- Warning: Markers must be added by the DrawMarker() method. - - BeginPoints (me : mutable) is deferred; - ---Level: Public - ---Purpose: Begin a set of points . - -- Warning: Points must be added by the DrawPoint() method. - - ClosePrimitive (me : mutable) - ---Level: Public - ---Purpose: Close the last Begining primitive - raises DriverError from Aspect is deferred; - ---Trigger: Raises if no primitive have been opened by BeginXxxxxx(). - - InitializeColorMap(me: mutable; - aColorMap: ColorMap from Aspect) - raises DriverError from Aspect is deferred protected; - ---Category: Methods to define the ColorIndexs - - InitializeTypeMap(me: mutable; - aTypeMap: TypeMap from Aspect) - raises DriverError from Aspect is deferred protected; - ---Category: Methods to define the TypeIndexs - - InitializeWidthMap(me: mutable; - aWidthMap: WidthMap from Aspect) - raises DriverError from Aspect is deferred protected; - ---Category: Methods to define the WidthIndexs - - InitializeFontMap(me: mutable; - aFontMap: FontMap from Aspect) - raises DriverError from Aspect is deferred protected; - ---Category: Methods to define the FontIndexs - - InitializeMarkMap(me: mutable; - aMarkMap: MarkMap from Aspect) - raises DriverError from Aspect is deferred protected; - ---Category: Methods to define the MarkerIndexs - - ---------------------------- - -- Category: Inquire methods - ---------------------------- - - ColorMap(me) returns ColorMap from Aspect - raises UndefinedMap from Aspect is static; - - TypeMap(me) returns TypeMap from Aspect - raises UndefinedMap from Aspect is static; - - WidthMap(me) returns WidthMap from Aspect - raises UndefinedMap from Aspect is static; - - FontMap(me) returns FontMap from Aspect - raises UndefinedMap from Aspect is static; - - MarkMap(me) returns MarkMap from Aspect - raises UndefinedMap from Aspect is static; - - WorkSpace ( me ; Width,Heigth : out Length from Quantity ) - is deferred; - ---Level: Public - ---Purpose: Returns the Available WorkSpace in DWU coordinates - ---Category: Inquire methods - - Convert ( me ; PV : Integer from Standard ) - returns Length from Quantity is deferred; - ---Level: Public - ---Purpose: Returns the DWU value depending of - -- the PIXEL value. - ---Category: Inquire methods - - Convert ( me ; DV : Length from Quantity ) - returns Integer from Standard is deferred; - ---Level: Public - ---Purpose: Returns the PIXEL value depending of - -- the DWU value. - ---Category: Inquire methods - - Convert ( me ; PX, PY : Integer from Standard ; - DX, DY : out Length from Quantity ) is deferred ; - ---Level: Public - ---Purpose: Returns the DWU position depending of - -- the PIXEL position . - ---Category: Inquire methods - - Convert ( me ; DX, DY : Length from Quantity ; - PX, PY : out Integer from Standard ) is deferred; - ---Level: Public - ---Purpose: Returns the PIXEL position depending of - -- the DWU position . - ---Category: Inquire methods - - ---Level: Advanced - ---Purpose: Returns TRUE when the driver must use MDTV fonts - -- instead system fonts. - -fields - myColorMap: ColorMap from Aspect; - myTypeMap: TypeMap from Aspect; - myWidthMap: WidthMap from Aspect; - myFontMap: FontMap from Aspect; - myMarkMap: MarkMap from Aspect; - myColorMapIsDefined: Boolean from Standard; - myWidthMapIsDefined: Boolean from Standard; - myTypeMapIsDefined: Boolean from Standard; - myFontMapIsDefined: Boolean from Standard; - myMarkMapIsDefined: Boolean from Standard; - -end Driver from Aspect; diff --git a/src/Aspect/Aspect_Driver.cxx b/src/Aspect/Aspect_Driver.cxx deleted file mode 100644 index 6bc120eb7d..0000000000 --- a/src/Aspect/Aspect_Driver.cxx +++ /dev/null @@ -1,112 +0,0 @@ -// Copyright (c) 1995-1999 Matra Datavision -// 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. - -/*********************************************************************** - - FUNCTION : - ---------- - Class Aspect_Driver : - - HISTORY OF MODIFICATIONS : - -------------------------------- - - 14-05-98 : GG ; Disable using MFT when the symbol - CSF_MDTVFontDirectory is not defined. - See dirMFTisDefined changes. - - 30-01-98 : GG ; SPEC_MFT - Use of polices MFT becomes parameterized. - The driver should use method UseMFT() to - know if it is necessary or not to use MDTV policies - instead of system policies. - - -> Modifications in SetFontMap() - -> New method UseMFT() - -***********************************************************************/ - -#include -#include - - -Aspect_Driver::Aspect_Driver () { - - myColorMapIsDefined = Standard_False; - myWidthMapIsDefined = Standard_False; - myTypeMapIsDefined = Standard_False; - myFontMapIsDefined = Standard_False; -} - - -void Aspect_Driver::SetColorMap (const Handle(Aspect_ColorMap)& aColorMap) - { - myColorMap = aColorMap; - this->InitializeColorMap(aColorMap); - myColorMapIsDefined = Standard_True; -} -Handle(Aspect_ColorMap) Aspect_Driver::ColorMap () const { - - Aspect_UndefinedMap_Raise_if(!myColorMapIsDefined,"ColorMap"); - return myColorMap; -} - - -void Aspect_Driver::SetTypeMap (const Handle(Aspect_TypeMap)& aTypeMap) - { - myTypeMap = aTypeMap; - this->InitializeTypeMap(aTypeMap); - myTypeMapIsDefined = Standard_True; -} -Handle(Aspect_TypeMap) Aspect_Driver::TypeMap () const { - - Aspect_UndefinedMap_Raise_if(!myTypeMapIsDefined,"TypeMap"); - return myTypeMap; -} - -void Aspect_Driver::SetWidthMap (const Handle(Aspect_WidthMap)& aWidthMap) - { - myWidthMap = aWidthMap; - this->InitializeWidthMap(aWidthMap); - myWidthMapIsDefined = Standard_True; -} -Handle(Aspect_WidthMap) Aspect_Driver::WidthMap () const { - - Aspect_UndefinedMap_Raise_if(!myWidthMapIsDefined,"WidthMap"); - return myWidthMap; -} - -void Aspect_Driver::SetFontMap (const Handle(Aspect_FontMap)& aFontMap) - { - myFontMap = aFontMap; - this->InitializeFontMap(aFontMap); - myFontMapIsDefined = Standard_True; -} -Handle(Aspect_FontMap) Aspect_Driver::FontMap () const { - - Aspect_UndefinedMap_Raise_if(!myFontMapIsDefined,"FontMap"); - return myFontMap; -} - -void Aspect_Driver::SetMarkMap (const Handle(Aspect_MarkMap)& aMarkMap) - { - myMarkMap = aMarkMap; - this->InitializeMarkMap(aMarkMap); - myMarkMapIsDefined = Standard_True; -} -Handle(Aspect_MarkMap) Aspect_Driver::MarkMap () const { - - Aspect_UndefinedMap_Raise_if(!myMarkMapIsDefined,"MarkMap"); - return myMarkMap; -} - diff --git a/src/Aspect/Aspect_FStream.hxx b/src/Aspect/Aspect_FStream.hxx deleted file mode 100644 index 3731967541..0000000000 --- a/src/Aspect/Aspect_FStream.hxx +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 1995-1999 Matra Datavision -// 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. - -#ifndef _Aspect_FStream_HeaderFile -#define _Aspect_FStream_HeaderFile - -#include - -typedef ofstream* Aspect_FStream; - -#endif diff --git a/src/Aspect/Aspect_FontMap.cdl b/src/Aspect/Aspect_FontMap.cdl deleted file mode 100644 index 3ef3fe2f1e..0000000000 --- a/src/Aspect/Aspect_FontMap.cdl +++ /dev/null @@ -1,78 +0,0 @@ --- Created on: 1993-09-07 --- Created by: GG --- Copyright (c) 1993-1999 Matra Datavision --- 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. - -class FontMap from Aspect inherits TShared from MMgt - - ---Version: 0.0 - - ---Purpose: This class defines a FontMap object. - -- Associates an index and a text Font entry. - ---Keywords: - ---Warning: - ---References: -uses - FontStyle from Aspect, - FontMapEntry from Aspect, - SequenceOfFontMapEntry from Aspect - -raises - BadAccess from Aspect - -is - - Create returns FontMap from Aspect; - - AddEntry (me : mutable; AnEntry : FontMapEntry from Aspect) - ---Level: Public - ---Purpose: Adds an entry in the font map . - -- Warning: Raises BadAccess if FontMap size is exceeded. - raises BadAccess from Aspect; - - AddEntry (me : mutable; aStyle : FontStyle from Aspect) - returns Integer from Standard; - ---Level: Public - ---Purpose: Search an identical font style entry in the font map - -- and returns the FontMapEntry Index if exist. - -- Or add a new entry and returns the computed FontMapEntry index used. - - Size( me ) returns Integer from Standard is static; - ---Level: Public - ---Purpose: Returns the Allocated fontmap Size - - Index( me ; aFontmapIndex : Integer ) returns Integer from Standard - ---Level: Public - ---Purpose: Returns the FontMapEntry.Index of the FontMap - -- at rank . - raises BadAccess from Aspect is static; - ---Trigger: Raises BadAccess if the index less than 1 or - -- greater than Size. - - Dump( me ) ; - - Entry ( me ; - AnIndex : Integer from Standard ) - returns FontMapEntry from Aspect - ---Level: Public - ---Purpose: Returns the Font map entry with the index . - -- Warning: Raises BadAccess if the index less than 1 - -- or greater than Size. - raises BadAccess from Aspect is static; - -fields - - mydata : SequenceOfFontMapEntry from Aspect is protected; - -end FontMap ; diff --git a/src/Aspect/Aspect_FontMap.cxx b/src/Aspect/Aspect_FontMap.cxx deleted file mode 100644 index 1db52d8741..0000000000 --- a/src/Aspect/Aspect_FontMap.cxx +++ /dev/null @@ -1,116 +0,0 @@ -// Created on: 1993-09-14 -// Created by: GG -// Copyright (c) 1993-1999 Matra Datavision -// 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. - -//-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" ; -} diff --git a/src/Aspect/Aspect_FontMapEntry.cdl b/src/Aspect/Aspect_FontMapEntry.cdl deleted file mode 100644 index fc93ce11ff..0000000000 --- a/src/Aspect/Aspect_FontMapEntry.cdl +++ /dev/null @@ -1,102 +0,0 @@ --- Created on: 1993-09-07 --- Created by: GG --- Copyright (c) 1993-1999 Matra Datavision --- 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. - -class FontMapEntry from Aspect - - ---Version: 0.0 - - ---Purpose: This class defines a fontmap entry. - -- A fontmap entry is an association beetwen - -- a FontStyle object and an index in the fontmap. - ---Keywords: - ---Warning: - ---References: - -uses - - FontStyle from Aspect - -raises - - OutOfRange from Standard, - BadAccess from Aspect - -is - - Create - returns FontMapEntry from Aspect; - ---Level: Public - ---Purpose: Creates an unallocated fontmap entry - - Create ( index : Integer from Standard; - style : FontStyle from Aspect) - returns FontMapEntry; - ---Level: Public - ---Purpose: Creates an allocated fontmap entry - - Create ( entry : FontMapEntry from Aspect ) - returns FontMapEntry - ---Level: Public - ---Purpose: Creates an allocated fontmap entry. - -- Warning: Raises error if the fontmap entry is unallocated. - raises BadAccess from Aspect; - - SetValue ( me: in out; index : Integer from Standard; - style : FontStyle from Aspect ); - ---Level: Public - ---Purpose: Sets fontmap entry value and allocates it. - - SetValue ( me: in out; entry : FontMapEntry from Aspect); - ---Level: Public - ---Purpose: Sets fontmap entry value and allocates it. - ---C++: alias operator = - - SetType ( me: in out; Style : FontStyle from Aspect ); - ---Level: Public - ---Purpose: Sets the line style of fontmap entry. - - Type ( me ) returns FontStyle from Aspect - ---Warning: Raises error if the fontmap entry is unallocated . - raises BadAccess from Aspect; - ---C++: return const & - - SetIndex ( me: in out; index : Integer from Standard); - ---Level: Public - ---Purpose: Sets index value of a fontmap entry. - - Index ( me ) returns Integer from Standard - ---Warning: Raises error if the fontmap entry is unallocated . - raises BadAccess from Aspect; - - Free ( me : in out ); - ---Level: Public - ---Purpose: Unallocates the fontmap entry. - - IsAllocated ( me ) returns Boolean from Standard; - ---Level: Public - ---Purpose: Returns True if the fontmap entry is allocated. - -- Warning: A fontmap entry is allocated when the font and - -- the index is defined. - - Dump( me ) ; -fields - - MyType : FontStyle from Aspect; - MyIndex : Integer from Standard; - MyTypeIsDef : Boolean from Standard; - MyIndexIsDef : Boolean from Standard; - -end FontMapEntry from Aspect; diff --git a/src/Aspect/Aspect_FontMapEntry.cxx b/src/Aspect/Aspect_FontMapEntry.cxx deleted file mode 100644 index ba89b4778b..0000000000 --- a/src/Aspect/Aspect_FontMapEntry.cxx +++ /dev/null @@ -1,167 +0,0 @@ -// Created on: 1993-09-14 -// Created by: GG -// Copyright (c) 1993-1999 Matra Datavision -// 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. - -//-Version - -//-Design Declaration des variables specifiques aux Entries de -// Fontures de texts - -//-Warning Une entry est definie par un index associee a une Font style - -//-References - -//-Language C++ 2.0 - -//-Declarations - -// for the class -#include -#include - -//-Aliases - -//-Global data definitions - -// MyType : FontStyle from Aspect -// MyIndex : Integer from Standard -// MyTypeIsDef : Boolean from Standard -// MyIndexIsDef : Boolean from Standard - -//-Constructors - -//-Destructors - -//-Methods, in order - -Aspect_FontMapEntry::Aspect_FontMapEntry() { - - MyTypeIsDef = Standard_True; - MyIndexIsDef = Standard_True; - MyIndex = 0; - MyType.SetValues (Aspect_TOF_DEFAULT,3.0 MILLIMETER); - -} - -Aspect_FontMapEntry::Aspect_FontMapEntry (const Standard_Integer index, const Aspect_FontStyle &style) { - - MyTypeIsDef = Standard_True; - MyIndexIsDef = Standard_True; - MyIndex = index; - MyType = style; - -} - -Aspect_FontMapEntry::Aspect_FontMapEntry (const Aspect_FontMapEntry& entry) { - - if ( !entry.MyTypeIsDef || !entry.MyIndexIsDef ) { - Aspect_BadAccess::Raise("Unallocated FontMapEntry") ; - } - else { - MyTypeIsDef = Standard_True; - MyIndexIsDef = Standard_True; - MyIndex = entry.MyIndex; - MyType = entry.MyType; - } -} - -void Aspect_FontMapEntry::SetValue (const Standard_Integer index, const Aspect_FontStyle &style) { - - MyTypeIsDef = Standard_True; - MyIndexIsDef = Standard_True; - MyIndex = index; - MyType = style; - -} - -void Aspect_FontMapEntry::SetValue (const Aspect_FontMapEntry& entry) { - - if ( !entry.MyTypeIsDef || !entry.MyIndexIsDef ) { - Aspect_BadAccess::Raise("Unallocated FontMapEntry") ; - } - else { - MyTypeIsDef = Standard_True; - MyIndexIsDef = Standard_True; - MyIndex = entry.MyIndex; - MyType = entry.MyType; - } - -} - -void Aspect_FontMapEntry::SetType (const Aspect_FontStyle &style) { - - MyTypeIsDef = Standard_True; - MyType = style; - -} - -const Aspect_FontStyle& Aspect_FontMapEntry::Type () const { - - if ( !MyTypeIsDef || !MyIndexIsDef ) - Aspect_BadAccess::Raise("Unallocated FontMapEntry") ; - - return MyType; - -} - -void Aspect_FontMapEntry::SetIndex (const Standard_Integer index) { - - MyTypeIsDef = Standard_True; - MyIndex = index; - -} - -Standard_Integer Aspect_FontMapEntry::Index () const { - - if ( !MyTypeIsDef || !MyIndexIsDef ) - Aspect_BadAccess::Raise("Unallocated FontMapEntry"); - - return MyIndex; - -} - -Standard_Boolean Aspect_FontMapEntry::IsAllocated () const { - - return ( MyTypeIsDef && MyIndexIsDef ) ; - -} - -void Aspect_FontMapEntry::Free () { - - MyTypeIsDef = Standard_False; - MyIndexIsDef = Standard_False; - -} - -void Aspect_FontMapEntry::Dump () const -{ - Aspect_TypeOfFont style = MyType.Style(); - Standard_CString string = MyType.Value(); - Standard_Real size = MyType.Size(); - Standard_Real slant = MyType.Slant(); - Standard_Integer length = MyType.Length(); - Standard_Boolean capsheight = MyType.CapsHeight(); - - cout << " Aspect_FontMapEntry::Dump ()\n"; - cout << " MyTypeIsDef : " << (MyTypeIsDef ? "True\n" : "False\n"); - cout << " MyIndexIsDef : " << (MyIndexIsDef ? "True\n" : "False\n"); - cout << " FontStyle : " << (Standard_Integer) style << " Size : " << size - << " Slant : " << slant << endl; - cout << " CapsHeight : " << (capsheight ? "True\n" : "False\n"); - cout << " FontStyle length : " << length << "\n"; - if( length ) cout << " FontString : " << string << "\n"; - MyType.Dump (); - cout << " ------------------------------" << endl << flush; -} diff --git a/src/Aspect/Aspect_FontStyle.cdl b/src/Aspect/Aspect_FontStyle.cdl deleted file mode 100644 index b4fe79255a..0000000000 --- a/src/Aspect/Aspect_FontStyle.cdl +++ /dev/null @@ -1,371 +0,0 @@ --- Created on: 1993-09-07 --- Created by: GG --- Copyright (c) 1993-1999 Matra Datavision --- 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. - -class FontStyle from Aspect - - ---Version: - - ---Purpose: This class defines a Font Style. - -- The Style can be Predefined or defined by the user - - ---Keywords: FontStyle - - ---Warning: - ---References: - -uses - - Length from Quantity, - PlaneAngle from Quantity, - TypeOfFont from Aspect, - AsciiString from TCollection - -raises - - FontStyleDefinitionError from Aspect - -is - - Create - returns FontStyle from Aspect - ---Level: Public - ---Purpose: Creates a font style with the default values of - -- FontStyle type : DEFAULT - -- - raises FontStyleDefinitionError from Aspect; - -- if the maximum number of font style is exceeded - - Create ( Type : TypeOfFont from Aspect; - Size : Length from Quantity; - Slant : PlaneAngle from Quantity = 0.0; - CapsHeight : Boolean from Standard = Standard_False) - returns FontStyle from Aspect - ---Level: Public - ---Purpose: Creates the font style depending of - -- Size given in the basic LENGTH unit and Slant in - -- the basic PLANE ANGLE unit. - -- When CapsHeight is TRUE the size defines the - -- ascent height of the font;if FALSE,the size - -- defines the ascent+descent part of the font. - raises FontStyleDefinitionError from Aspect; - -- if the Size is <= 0. - - Create ( Style : CString from Standard; - Size : Length from Quantity; - Slant : PlaneAngle from Quantity = 0.0; - CapsHeight : Boolean from Standard = Standard_False) - returns FontStyle from Aspect - ---Level: Public - ---Purpose: Creates a font style from Adobe font style descriptor - -- depending of Size given in MM and Slant in RADIAN. - -- When CapsHeight is TRUE the size defines the - -- ascent height of the font;if FALSE,the size - -- defines the ascent+descent part of the font. - -- Font Style Descriptor must be : - -- Simple form is "family" Ex: "helvetica" - -- More complex form is "family-weight" Ex: "helvetica-bold" - -- Full form is : - -- "-foundry-family-weight-slant-swdth-adstyl-pixelsize" - -- "-pointsize-resx-resy-spacing-avgWidth-registry-encoding" - -- where each field must be replaced by an "*" - -- Warning: create the smalest font size if the foundry height - --and the are null. - raises FontStyleDefinitionError from Aspect; - -- if