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-2014 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : Nicolas DAGUISE (Oct 2002) 00022 **=======================================================================*/ 00023 00024 #ifndef _SO_DIALOG_AUDITOR_ 00025 #define _SO_DIALOG_AUDITOR_ 00026 00027 #include <DialogViz/auditors/SoAuditor.h> 00028 00029 class SoDialogCheckBox; 00030 class SoDialogComboBox; 00031 class SoDialogIntegerSlider; 00032 class SoDialogEditText; 00033 class SoDialogPushButton; 00034 class SoDialogRadioButtons; 00035 class SoDialogRealSlider; 00036 class SoTabDialog; 00037 //class SoDialogTree; 00038 class SoMenuCheckBox; 00039 class SoMenuFileSelection; 00040 class SoMenuPushButton; 00041 class SoMenuRadioButtons; 00042 00053 class SoDialogAuditor : public SoAuditor 00054 { 00055 SO_AUDITOR_HEADER(); 00056 00057 public: 00058 00062 virtual void dialogPushButton(SoDialogPushButton* cpt); 00063 00067 virtual void dialogCheckBox(SoDialogCheckBox* cpt); 00068 00072 virtual void dialogComboBox(SoDialogComboBox* cpt); 00073 00077 virtual void dialogEditText(SoDialogEditText* cpt); 00078 00082 virtual void dialogIntegerSlider(SoDialogIntegerSlider* cpt); 00083 00087 virtual void dialogRadioButtons(SoDialogRadioButtons* cpt); 00088 00092 virtual void dialogRealSlider(SoDialogRealSlider* cpt); 00093 00097 virtual void tabDialog(SoTabDialog* cpt); 00098 00102 // virtual void dialogTree(SoDialogTree* cpt); 00103 00107 virtual void menuPushButton(SoMenuPushButton* cpt); 00108 00112 virtual void menuCheckBox(SoMenuCheckBox* cpt); 00113 00117 virtual void menuFileSelection(SoMenuFileSelection* cpt); 00118 00122 virtual void menuRadioButtons(SoMenuRadioButtons* cpt); 00123 00124 private: 00125 static void initClass(); 00126 static void exitClass(); 00127 virtual ~SoDialogAuditor(); 00128 00129 private: 00130 SoDialogAuditor(); 00131 }; 00132 00133 #endif // _SO_DIALOG_AUDITOR_ 00134 00135 00136