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_UVViewportState.h 00015 * 00016 * COMMENTS: 00017 * A MSS_SingleOpState that works in all viewports, 00018 * including the UV viewport. 00019 */ 00020 00021 #ifndef __MSS_UVViewportState_H__ 00022 #define __MSS_UVViewportState_H__ 00023 00024 #include "MSS_API.h" 00025 #include "MSS_SingleOpState.h" 00026 00027 class JEDI_View; 00028 00029 class MSS_API MSS_UVViewportState : public MSS_SingleOpState 00030 { 00031 public: 00032 // Class constructor and destructor. 00033 MSS_UVViewportState(JEDI_View &view, PI_StateTemplate &templ, 00034 BM_SceneManager *scene, 00035 const char *cursor = BM_DEFAULT_CURSOR); 00036 virtual ~MSS_UVViewportState(); 00037 00038 // This constructor and parameter template list go into the 00039 // DM_StateTemplate for this state. 00040 static BM_State *ourConstructor(BM_View &view, PI_StateTemplate &templ, 00041 BM_SceneManager *scene); 00042 00043 // The name and type of this class: 00044 virtual const char *className() const; 00045 }; 00046 00047 #endif
1.5.9