00001 /*======================================================================= 00002 * Copyright 1991-1996, Silicon Graphics, Inc. 00003 * ALL RIGHTS RESERVED 00004 * 00005 * UNPUBLISHED -- Rights reserved under the copyright laws of the United 00006 * States. Use of a copyright notice is precautionary only and does not 00007 * imply publication or disclosure. 00008 * 00009 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND: 00010 * Use, duplication or disclosure by the Government is subject to restrictions 00011 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights 00012 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or 00013 * in similar or successor clauses in the FAR, or the DOD or NASA FAR 00014 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc., 00015 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311. 00016 * 00017 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY 00018 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION, 00019 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY 00020 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON 00021 * GRAPHICS, INC. 00022 **=======================================================================*/ 00023 /*======================================================================= 00024 ** Author : Thad Beier (MMM yyyy) 00025 ** Modified by : Gavin Bell (MMM yyyy) 00026 **=======================================================================*/ 00027 /*======================================================================= 00028 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00029 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00030 *** *** 00031 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00032 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00033 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00034 *** *** 00035 *** RESTRICTED RIGHTS LEGEND *** 00036 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00037 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00038 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00039 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00040 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00041 *** *** 00042 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00043 *** BORDEAUX, FRANCE *** 00044 *** ALL RIGHTS RESERVED *** 00045 **=======================================================================*/ 00046 /*======================================================================= 00047 ** Modified by : TGS (Dec 2004) 00048 ** Modified by : MCS (Mmm YYYY) 00049 ** Modified by : VSG (Mmm YYYY) 00050 **=======================================================================*/ 00051 00052 00053 00054 00055 #ifndef _SO_FONT_ 00056 #define _SO_FONT_ 00057 00058 #include <Inventor/fields/SoSFBool.h> 00059 #include <Inventor/fields/SoSFEnum.h> 00060 #include <Inventor/fields/SoSFFloat.h> 00061 #include <Inventor/fields/SoSFName.h> 00062 #include <Inventor/fields/SoSFString.h> 00063 #include <Inventor/nodes/SoNode.h> 00064 00303 class SoFont : public SoNode { 00304 00305 SO_NODE_HEADER(SoFont); 00306 00307 public: 00308 // Fields 00316 //SoSFName name; 00317 SoSFString name; 00318 00324 SoSFFloat size; 00325 00327 enum RenderStyle { 00329 POLYGON, 00333 TEXTURE, 00339 TEXTURE_DELAYED, 00341 POLYGON_AND_OUTLINE 00342 }; 00343 00350 SoSFEnum renderStyle; 00351 00355 SoFont(); 00356 00369 static void enableJapaneseSF(SbBool flag = TRUE); 00370 00376 static SbBool isJapaneseSFEnabled() ; 00377 00391 static void setNumFontCaches(int maxNumCaches); 00392 00396 static int getNumFontCaches(); 00397 00401 static int getCurrNumFontCaches(); 00402 00413 static int getAvailableFonts(SbString*& strings, SbBool clearDB = FALSE); 00414 00423 SoNONUNICODE static void setFontPaths(char*); 00424 00431 static void setFontPaths( const SbString& ); 00432 00440 SoNONUNICODE static void addFontPaths(char*); 00441 00447 static void addFontPaths( const SbString& ); 00448 00452 static SbString getFontPaths(); 00453 00462 SoNONUNICODE static SbBool isAvailableFont(char* ); 00463 00470 static SbBool isAvailableFont(const SbString& ); 00471 00475 static void clearFontNameCache(); 00476 00481 inline virtual void setOverride(const SbBool state) 00482 { override.setValue(state); } 00483 00487 inline virtual SbBool isOverride() const 00488 { return override.getValue(); } 00489 00490 private: 00491 virtual void doAction(SoAction *action); 00492 virtual void GLRender(SoGLRenderAction *action); 00493 virtual void callback(SoCallbackAction *action); 00494 virtual void pick(SoPickAction *action); 00495 virtual void getBoundingBox(SoGetBoundingBoxAction *action); 00496 virtual void getPrimitiveCount(SoGetPrimitiveCountAction *action); 00497 00498 private: 00499 static void initClass(); 00500 static void exitClass(); 00501 00502 SoSFBool override; 00503 00504 private: 00505 virtual ~SoFont(); 00506 00507 // TRUE by default 00508 static SbBool s_isJapaneseSFEnabled; 00509 00510 }; 00511 00512 #endif /* _SO_FONT_ */ 00513 00514