00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Cristin Barghiel 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: MSS_DeleteSelector.h ( Direct Manipulation Library, C++) 00015 * 00016 * COMMENTS: 00017 * Custom selector for the Delete SOP. 00018 */ 00019 00020 #ifndef __MSS_DeleteSelector_h__ 00021 #define __MSS_DeleteSelector_h__ 00022 00023 #include "MSS_API.h" 00024 #include <OP3D/OP3D_GenericSelector.h> 00025 00026 class MSS_API MSS_DeleteSelector : public OP3D_GenericSelector 00027 { 00028 public: 00029 MSS_DeleteSelector(OP3D_View &viewer, PI_SelectorTemplate &templ); 00030 virtual ~MSS_DeleteSelector(); 00031 00032 static BM_InputSelector *ourConstructor(BM_View &Viewer, 00033 PI_SelectorTemplate &templ); 00034 00035 virtual const char *className() const; 00036 00037 // If the node is of a recognized type it sets the parameters. 00038 virtual void setNodeParameters(OP_Node &new_node); 00039 00040 private: 00041 SELECTOR_SETUP() 00042 }; 00043 00044 #endif
1.5.9