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 : David Mott (MMM yyyy) 00025 **=======================================================================*/ 00026 /*======================================================================= 00027 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00028 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00029 *** *** 00030 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00031 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00032 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00033 *** *** 00034 *** RESTRICTED RIGHTS LEGEND *** 00035 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00036 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00037 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00038 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00039 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00040 *** *** 00041 *** COPYRIGHT (C) 1996-2014 BY FEI S.A.S, *** 00042 *** BORDEAUX, FRANCE *** 00043 *** ALL RIGHTS RESERVED *** 00044 **=======================================================================*/ 00045 /*======================================================================= 00046 ** Modified by : VSG (MMM YYYY) 00047 **=======================================================================*/ 00048 00049 00050 #ifdef _WIN32 00051 # include <Inventor/Win/SoWinResource.h> 00052 #else // _WIN32 00053 00054 #ifndef _SO_XTRESOURCE_ 00055 #define _SO_XTRESOURCE_ 00056 00057 #include <X11/Intrinsic.h> 00058 #include <X11/Xresource.h> 00059 #include <Inventor/SbBasic.h> 00060 #include <Inventor/SbColor.h> 00061 #include <Inventor/Xt/SoXtDef.h> 00062 00101 class SoXtResource { 00102 public: 00107 SoXtResource(SoWidget w); 00111 ~SoXtResource(); 00112 00113 // 00114 // These methods look up X resource values by calling XrmQGetResource. 00115 // They return TRUE if successfully located the resource. 00116 // 00117 // NOTE: you do not have to specify the complete widget hierarchy. 00118 // This is automatically performed by this class. Simply name the 00119 // specific resource that should be searched for. The most efficient 00120 // use of this class is to construct an instance for a widget, then 00121 // call getResource repeatedly with different resource strings which 00122 // are valid for the widget. 00123 // 00124 // For example: 00125 // SoXtResource xr(colorEditor->getWidget()); 00126 // xr.getResource("wysiwyg", "Wysiwyg", onOrOff); 00127 // xr.getResource("colorSliders", "ColorSliders", rgbOrHsv); 00128 // xr.getResource("updateFrequency", "UpdateFrequency", freq); 00129 00135 SbBool getResource(char *resName, char *resClass, SbColor &c); 00141 SbBool getResource(char *resName, char *resClass, short &i); 00147 SbBool getResource(char *resName, char *resClass, unsigned short &u); 00153 SbBool getResource(char *resName, char *resClass, char *&s); 00159 SbBool getResource(char *resName, char *resClass, SbBool &b); 00165 SbBool getResource(char *resName, char *resClass, float &f); 00166 00167 private: 00168 XrmQuarkList nameList; 00169 XrmQuarkList classList; 00170 int listSize; 00171 Display *display; 00172 00173 // These methods look up X resource values by calling XrmGetResource. 00174 // e.g. getResource("*backgroundColor", "*BackgroundColor", c); 00175 // They return TRUE if successfully located the resource. 00176 00177 static SbBool getResource(Display *, char *sName, char *sClass, SbColor &c); 00178 static SbBool getResource(Display *, char *sName, char *sClass, short &i); 00179 static SbBool getResource(Display *, char *sName, char *sClass, unsigned short &u); 00180 static SbBool getResource(Display *, char *sName, char *sClass, char *&s); 00181 static SbBool getResource(Display *, char *sName, char *sClass, SbBool &b); 00182 static SbBool getResource(Display *, char *sName, char *sClass, float &f); 00183 00184 00185 // These methods look up X resource values by calling XrmQGetResource. 00186 // That is, they use XrmQuarks instead of strings. (A quark is an Xrm 00187 // notion - it is simply a key into a hash table of strings.) 00188 // They are used by SoXtResource for SoComponents. 00189 // They return TRUE if successfully located the resource. 00190 00191 static SbBool getResource(Display *, XrmQuarkList qName, XrmQuarkList qClass, SbColor &c); 00192 static SbBool getResource(Display *, XrmQuarkList qName, XrmQuarkList qClass, short &i); 00193 static SbBool getResource(Display *, XrmQuarkList qName, XrmQuarkList qClass, unsigned short &u); 00194 static SbBool getResource(Display *, XrmQuarkList qName, XrmQuarkList qClass, char *&s); 00195 static SbBool getResource(Display *, XrmQuarkList qName, XrmQuarkList qClass, SbBool &b); 00196 static SbBool getResource(Display *, XrmQuarkList qName, XrmQuarkList qClass, float &f); 00197 00198 }; 00199 00200 #endif /* _SO_XTRESOURCE_ */ 00201 00202 #endif // _WIN32 00203 00204 00205