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 * Jonathan McGee 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_EditSelector.h ( Direct Manipulation Library, C++) 00015 * 00016 * COMMENTS: 00017 * Custom selector for the Edit SOP. 00018 */ 00019 00020 #ifndef __MSS_EditSelector_h__ 00021 #define __MSS_EditSelector_h__ 00022 00023 #include "MSS_API.h" 00024 #include "MSS_ReusableSelector.h" 00025 00026 class MSS_API MSS_EditSelector : public MSS_ReusableSelector 00027 { 00028 public: 00029 MSS_EditSelector(OP3D_View &viewer, PI_SelectorTemplate &templ); 00030 virtual ~MSS_EditSelector(); 00031 00032 static BM_InputSelector *ourConstructor(BM_View &Viewer, 00033 PI_SelectorTemplate &templ); 00034 00035 virtual const char *className() const; 00036 00037 protected: 00038 virtual void setGroupParm(OP_Node *node, const char *value); 00039 00040 private: 00041 SELECTOR_SETUP() 00042 }; 00043 00044 #endif
1.5.9