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 : Paul S. Strauss (MMM yyyy) 00025 ** Modified by : Nick Thompson (MMM yyyy) 00026 ** Modified by : David Mott (MMM yyyy) 00027 **=======================================================================*/ 00028 /*======================================================================= 00029 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00030 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00031 *** *** 00032 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00033 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00034 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00035 *** *** 00036 *** RESTRICTED RIGHTS LEGEND *** 00037 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00038 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00039 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00040 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00041 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00042 *** *** 00043 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00044 *** BORDEAUX, FRANCE *** 00045 *** ALL RIGHTS RESERVED *** 00046 **=======================================================================*/ 00047 /*======================================================================= 00048 ** Modified by : VSG (MMM YYYY) 00049 **=======================================================================*/ 00050 00051 #ifndef SO_BASE_LIST_H 00052 #define SO_BASE_LIST_H 00053 00054 #include <Inventor/SbPList.h> 00055 #include <Inventor/misc/SoBase.h> 00056 #include <Inventor/sensors/SoListSensor.h> 00057 00079 class SoBaseList : public SbPList 00080 { 00081 public: 00085 SoBaseList(); 00086 00090 SoBaseList(int size); 00091 00095 SoBaseList(const SoBaseList &l); 00096 00100 virtual ~SoBaseList(); 00101 00105 void append(SoBase* ptr); 00106 00110 void insert(SoBase* ptr, int addBefore); 00111 00115 virtual void remove(int which); 00116 00120 virtual void truncate(int start); 00121 00125 void copy(const SoBaseList &l); 00126 00130 SoBaseList& operator =(const SoBaseList &l) 00131 { copy(l) ; return *this; } 00132 00134 SoBase* operator [](int i) const 00135 { return ( static_cast<SoBase*> ( (*static_cast<const SbPList *>(this) ) [i] ) ); } 00136 00140 void set(int i, SoBase *ptr); 00141 00146 void addReferences(SbBool flag); 00147 00156 void touch( int index = -1 ); 00157 00161 void addAuditor(void *auditor, SoNotRec::Type type); 00162 00166 void removeAuditor(void *auditor, SoNotRec::Type type); 00167 00171 const SoAuditorList* getAuditors() const 00172 { 00173 if (m_notificationInfo) 00174 return m_notificationInfo->m_auditors; 00175 return NULL; 00176 } 00177 00181 int getChangedIndex() const 00182 { 00183 if (m_notificationInfo) 00184 return m_notificationInfo->m_changedIndex; 00185 return -1; 00186 } 00187 00191 SoListSensor::ChangeType getChangedType() const 00192 { 00193 if (m_notificationInfo) 00194 return m_notificationInfo->m_changedType; 00195 return SoListSensor::UNSPECIFIED; 00196 } 00197 00201 void setNotificationInfo(const int changedIndex, const SoListSensor::ChangeType changedType) 00202 { 00203 if (m_notificationInfo) 00204 { 00205 m_notificationInfo->m_changedIndex = changedIndex; 00206 m_notificationInfo->m_changedType = changedType; 00207 } 00208 } 00209 00210 private: 00211 // Really does a truncate. Flag indicates whether to notify. 00212 void truncate(int start, SbBool doNotify); 00213 00214 private: 00215 // Inner class that handle auditors notification infos. 00216 class SoNotificationInfo 00217 { 00218 public: 00219 // Constructor. 00220 SoNotificationInfo(); 00221 // Destructor. 00222 ~SoNotificationInfo(); 00223 // List of auditors: objects to pass notification to 00224 SoAuditorList *m_auditors; 00225 // changed element index 00226 int m_changedIndex; 00227 // type of change 00228 SoListSensor::ChangeType m_changedType; 00229 }; 00230 00231 // start notification. 00232 void startNotify(); 00233 00234 bool getAddReferencesStatus() { return addRefs; } 00235 00236 private: 00237 // If TRUE (the default), this refs and unrefs things in the list 00238 bool addRefs; 00239 00240 // Auditor notification infos 00241 SoNotificationInfo *m_notificationInfo; 00242 }; 00243 00244 #endif 00245