mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Update empty method guards to new style with regex (see PR). Used clang-format 18.1.8. New actions to validate code formatting is added. Update .clang-format with disabling of include sorting. It is temporary changes, then include will be sorted. Apply formatting for /src and /tools folder. The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
161 lines
7.0 KiB
C++
161 lines
7.0 KiB
C++
// Created on: 1993-01-13
|
|
// Created by: CKY / Contract Toubro-Larsen ( Deepak PRABHU )
|
|
// 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.
|
|
|
|
#ifndef _IGESDimen_GeneralNote_HeaderFile
|
|
#define _IGESDimen_GeneralNote_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <TColStd_HArray1OfReal.hxx>
|
|
#include <IGESGraph_HArray1OfTextFontDef.hxx>
|
|
#include <TColgp_HArray1OfXYZ.hxx>
|
|
#include <Interface_HArray1OfHAsciiString.hxx>
|
|
#include <IGESData_IGESEntity.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
class IGESGraph_TextFontDef;
|
|
class gp_Pnt;
|
|
class TCollection_HAsciiString;
|
|
|
|
class IGESDimen_GeneralNote;
|
|
DEFINE_STANDARD_HANDLE(IGESDimen_GeneralNote, IGESData_IGESEntity)
|
|
|
|
//! defines GeneralNote, Type <212> Form <0-8, 100-200, 105>
|
|
//! in package IGESDimen
|
|
//! Used for formatting boxed text in different ways
|
|
class IGESDimen_GeneralNote : public IGESData_IGESEntity
|
|
{
|
|
|
|
public:
|
|
Standard_EXPORT IGESDimen_GeneralNote();
|
|
|
|
//! This method is used to set the fields of the class
|
|
//! GeneralNote
|
|
//! - nNbChars : number of chars strings
|
|
//! - widths : Box widths
|
|
//! - heights : Box heights
|
|
//! - fontCodes : Font codes, default = 1
|
|
//! - fonts : Text Font Definition Entities
|
|
//! - slants : Slant angles in radians
|
|
//! - rotations : Rotation angles in radians
|
|
//! - mirrorFlags : Mirror flags
|
|
//! - rotFlags : Rotation internal text flags
|
|
//! - start : Text start points
|
|
//! - texts : Text strings
|
|
//! raises exception if there is mismatch between the various
|
|
//! Array Lengths.
|
|
Standard_EXPORT void Init(const Handle(TColStd_HArray1OfInteger)& nbChars,
|
|
const Handle(TColStd_HArray1OfReal)& widths,
|
|
const Handle(TColStd_HArray1OfReal)& heights,
|
|
const Handle(TColStd_HArray1OfInteger)& fontCodes,
|
|
const Handle(IGESGraph_HArray1OfTextFontDef)& fonts,
|
|
const Handle(TColStd_HArray1OfReal)& slants,
|
|
const Handle(TColStd_HArray1OfReal)& rotations,
|
|
const Handle(TColStd_HArray1OfInteger)& mirrorFlags,
|
|
const Handle(TColStd_HArray1OfInteger)& rotFlags,
|
|
const Handle(TColgp_HArray1OfXYZ)& start,
|
|
const Handle(Interface_HArray1OfHAsciiString)& texts);
|
|
|
|
//! Changes FormNumber (indicates Graphical Representation)
|
|
//! Error if not in ranges [0-8] or [100-102] or 105
|
|
Standard_EXPORT void SetFormNumber(const Standard_Integer form);
|
|
|
|
//! returns number of text strings in General Note
|
|
Standard_EXPORT Standard_Integer NbStrings() const;
|
|
|
|
//! returns number of characters of string or zero
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Integer NbCharacters(const Standard_Integer Index) const;
|
|
|
|
//! returns Box width of string
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Real BoxWidth(const Standard_Integer Index) const;
|
|
|
|
//! returns Box height of string
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Real BoxHeight(const Standard_Integer Index) const;
|
|
|
|
//! returns False if Value, True if Entity
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Boolean IsFontEntity(const Standard_Integer Index) const;
|
|
|
|
//! returns Font code (default = 1) of string
|
|
//! returns 0 if IsFontEntity () is True
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Integer FontCode(const Standard_Integer Index) const;
|
|
|
|
//! returns Text Font Definition Entity of string
|
|
//! returns a Null Handle if IsFontEntity () returns False
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Handle(IGESGraph_TextFontDef) FontEntity(const Standard_Integer Index) const;
|
|
|
|
//! returns Slant angle of string in radians
|
|
//! default value = PI/2
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Real SlantAngle(const Standard_Integer Index) const;
|
|
|
|
//! returns Rotation angle of string in radians
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Real RotationAngle(const Standard_Integer Index) const;
|
|
|
|
//! returns Mirror Flag of string
|
|
//! 0 = no mirroring
|
|
//! 1 = mirror axis is perpendicular to the text base line
|
|
//! 2 = mirror axis is text base line
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Integer MirrorFlag(const Standard_Integer Index) const;
|
|
|
|
//! returns Rotate internal text Flag of string
|
|
//! 0 = text horizontal
|
|
//! 1 = text vertical
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Integer RotateFlag(const Standard_Integer Index) const;
|
|
|
|
//! returns text start point of Index'th string
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT gp_Pnt StartPoint(const Standard_Integer Index) const;
|
|
|
|
//! returns text start point of Index'th string after Transformation
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT gp_Pnt TransformedStartPoint(const Standard_Integer Index) const;
|
|
|
|
//! returns distance from Start Point plane of string
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Standard_Real ZDepthStartPoint(const Standard_Integer Index) const;
|
|
|
|
//! returns text string
|
|
//! raises exception if Index <= 0 or Index > NbStrings()
|
|
Standard_EXPORT Handle(TCollection_HAsciiString) Text(const Standard_Integer Index) const;
|
|
|
|
DEFINE_STANDARD_RTTIEXT(IGESDimen_GeneralNote, IGESData_IGESEntity)
|
|
|
|
protected:
|
|
private:
|
|
Handle(TColStd_HArray1OfInteger) theNbChars;
|
|
Handle(TColStd_HArray1OfReal) theBoxWidths;
|
|
Handle(TColStd_HArray1OfReal) theBoxHeights;
|
|
Handle(TColStd_HArray1OfInteger) theFontCodes;
|
|
Handle(IGESGraph_HArray1OfTextFontDef) theFontEntities;
|
|
Handle(TColStd_HArray1OfReal) theSlantAngles;
|
|
Handle(TColStd_HArray1OfReal) theRotationAngles;
|
|
Handle(TColStd_HArray1OfInteger) theMirrorFlags;
|
|
Handle(TColStd_HArray1OfInteger) theRotateFlags;
|
|
Handle(TColgp_HArray1OfXYZ) theStartPoints;
|
|
Handle(Interface_HArray1OfHAsciiString) theTexts;
|
|
};
|
|
|
|
#endif // _IGESDimen_GeneralNote_HeaderFile
|