mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
83 lines
2.2 KiB
C++
83 lines
2.2 KiB
C++
// Created on: 2001-03-06
|
|
// Created by: Christian CAILLET
|
|
// Copyright (c) 2001-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 _IGESSelect_SignColor_HeaderFile
|
|
#define _IGESSelect_SignColor_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <Standard_Integer.hxx>
|
|
#include <IFSelect_Signature.hxx>
|
|
#include <Standard_CString.hxx>
|
|
class Standard_Transient;
|
|
class Interface_InterfaceModel;
|
|
|
|
|
|
class IGESSelect_SignColor;
|
|
DEFINE_STANDARD_HANDLE(IGESSelect_SignColor, IFSelect_Signature)
|
|
|
|
//! Gives Color attached to an entity
|
|
//! Several forms are possible, according to <mode>
|
|
//! 1 : number : "Dnn" for entity, "Snn" for standard, "(none)" for 0
|
|
//! 2 : name : Of standard color, or of the color entity, or "(none)"
|
|
//! (if the color entity has no name, its label is taken)
|
|
//! 3 : RGB values, form R:nn,G:nn,B:nn
|
|
//! 4 : RED value : an integer
|
|
//! 5 : GREEN value : an integer
|
|
//! 6 : BLUE value : an integer
|
|
//! Other computable values can be added if needed :
|
|
//! CMY values, Percentages for Hue, Lightness, Saturation
|
|
class IGESSelect_SignColor : public IFSelect_Signature
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
//! Creates a SignColor
|
|
//! mode : see above for the meaning
|
|
//! modes 4,5,6 give a numeric integer value
|
|
//! Name is initialised according to the mode
|
|
Standard_EXPORT IGESSelect_SignColor(const Standard_Integer mode);
|
|
|
|
//! Returns the value (see above)
|
|
Standard_EXPORT Standard_CString Value (const Handle(Standard_Transient)& ent, const Handle(Interface_InterfaceModel)& model) const Standard_OVERRIDE;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(IGESSelect_SignColor,IFSelect_Signature)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Standard_Integer themode;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _IGESSelect_SignColor_HeaderFile
|