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