00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : VSG (MMM YYYY) 00022 **=======================================================================*/ 00023 00024 #ifndef _PB_NUMERIC_DISPLAY_FORMAT_ 00025 #define _PB_NUMERIC_DISPLAY_FORMAT_ 00026 00027 #include <MeshViz/graph/PbBase.h> 00028 00043 class PbNumericDisplayFormat : public PbBase { 00044 00045 00046 public: 00047 00048 enum FormatType { 00052 AUTO_FORMAT, 00056 FLOAT_FORMAT, 00060 INTEGER_FORMAT 00061 } ; 00062 00063 00064 00068 PbNumericDisplayFormat(FormatType type = AUTO_FORMAT, int tenPower = 0, 00069 int numDecimal = 0) ; 00070 00074 PbNumericDisplayFormat(const PbNumericDisplayFormat &format) ; 00075 00084 void setFormat(FormatType type = AUTO_FORMAT, int tenPower = 0, 00085 int numDecimal = 0) ; 00086 00091 void getFormat(FormatType &type, int &tenPower, int &numDecimal) const 00092 { type = m_formatType ; tenPower = m_tenPowerFormat ; numDecimal = m_numDecimalFormat ; } 00093 00097 PbNumericDisplayFormat& operator=(const PbNumericDisplayFormat &format) ; 00098 private: 00099 void copy(const PbNumericDisplayFormat &format, SbBool isConstructorPerCopy) ; 00100 // Used by constructor per copy and affectation operator 00101 00102 FormatType m_formatType ; 00103 int m_tenPowerFormat ; 00104 int m_numDecimalFormat ; 00105 } ; 00106 00107 /*---------------------------------------------------------------------------*/ 00108 00109 #endif /* _PB_NUMERIC_DISPLAY_FORMAT_ */ 00110 00111 00112