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