#ifndef _MPxContext #define _MPxContext // //- // ========================================================================== // Copyright (C) 1995 - 2006 Autodesk, Inc., and/or its licensors. All // rights reserved. // // The coded instructions, statements, computer programs, and/or related // material (collectively the "Data") in these files contain unpublished // information proprietary to Autodesk, Inc. ("Autodesk") and/or its // licensors, which is protected by U.S. and Canadian federal copyright law // and by international treaties. // // The Data may not be disclosed or distributed to third parties or be // copied or duplicated, in whole or in part, without the prior written // consent of Autodesk. // // The copyright notices in the Software and this entire statement, // including the above license grant, this restriction and the following // disclaimer, must be included in all copies of the Software, in whole // or in part, and all derivative works of the Software, unless such copies // or derivative works are solely in the form of machine-executable object // code generated by a source language processor. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND. // AUTODESK DOES NOT MAKE AND HEREBY DISCLAIMS ANY EXPRESS OR IMPLIED // WARRANTIES INCLUDING, BUT NOT LIMITED TO, THE WARRANTIES OF // NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, // OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE. IN NO // EVENT WILL AUTODESK AND/OR ITS LICENSORS BE LIABLE FOR ANY LOST // REVENUES, DATA, OR PROFITS, OR SPECIAL, DIRECT, INDIRECT, OR // CONSEQUENTIAL DAMAGES, EVEN IF AUTODESK AND/OR ITS LICENSORS HAS // BEEN ADVISED OF THE POSSIBILITY OR PROBABILITY OF SUCH DAMAGES. // ========================================================================== //+ // // CLASS: MPxContext // // ***************************************************************************** // // CLASS DESCRIPTION (MPxContext) // // This is the base class for contexts. // // ***************************************************************************** #if defined __cplusplus // ***************************************************************************** // INCLUDED HEADER FILES #include #include #include #include #include #include // ***************************************************************************** // DECLARATIONS class MString; class MDoubleArray; class MIntArray; class MPxToolCommand; class MCursor; // ***************************************************************************** // CLASS DECLARATION (MPxContext) /// Base class for user defined contexts (OpenMayaUI) (OpenMayaMPx.py) /** The base class for user defined contexts */ #ifdef _WIN32 #pragma warning(disable: 4522) #endif // _WIN32 class OPENMAYAUI_EXPORT MPxContext { public: enum ImageIndex { kImage1 = 0, kImage2, kImage3 }; /// MPxContext (); /// virtual ~MPxContext (); /// virtual void toolOnSetup( MEvent & event ); /// virtual void toolOffCleanup(); /// virtual MStatus doPress ( MEvent & event ); /// virtual MStatus doRelease ( MEvent & event ); /// virtual MStatus doDrag ( MEvent & event ); /// virtual MStatus doHold ( MEvent & event ); /// virtual MStatus doEnterRegion ( MEvent & event ); /// virtual MStatus helpStateHasChanged ( MEvent & event ); /// virtual void deleteAction(); /// virtual void completeAction(); /// virtual MStatus addManipulator( const MObject & manipulator ); /// virtual MStatus deleteManipulators(); /// MStatus setImage( const MString & image, ImageIndex index ); /// MString image( ImageIndex index, MStatus * ReturnStatus = NULL ) const; // SCRIPT USE ONLY MStatus _setHelpString( const MString& str ) { return setHelpString(str); } MStatus _setTitleString( const MString & str ) { return setTitleString(str); } MStatus _setCursor( const MCursor & cursor ) { return setCursor(cursor); } MStatus _beginMarquee( MEvent & event ) { return beginMarquee(event); } MStatus _releaseMarquee( MEvent & event,short& top, short& left, short& bottom, short& right ) { return releaseMarquee(event,top,left,bottom,right); } static bool _ignoreEntry( const MIntArray &flags, unsigned int entry ) { return ignoreEntry(flags,entry); } MPxToolCommand* _newToolCommand() { return newToolCommand(); } // protected: /// USE _setHelpString() IN SCRIPT MStatus setHelpString( const MString & str ); /// USE _setTitleString() IN SCRIPT MStatus setTitleString( const MString & str ); /// USE _setCursor() IN SCRIPT MStatus setCursor( const MCursor & cursor ); /// USE _beginMarquee() IN SCRIPT MStatus beginMarquee( MEvent & event ); /// USE _dragMarquee() IN SCRIPT MStatus dragMarquee( MEvent & event ); /// USE _releaseMarquee() IN SCRIPT MStatus releaseMarquee( MEvent & event, short& top, short& left, short& bottom, short& right ); // Create an instance of a tool command for use in // this context. // /// CALL _newToolCommand() IN SCRIPT virtual MPxToolCommand * newToolCommand(); virtual const char* className() const; public: // Temporarily putting these virtual functions at the end /// virtual void abortAction(); /// virtual bool processNumericalInput( const MDoubleArray &values, const MIntArray &flags, bool isAbsolute ); /// virtual bool feedbackNumericalInput() const; /// virtual MSyntax::MArgType argTypeNumericalInput( unsigned int index ) const; /// virtual MString stringClassName() const; BEGIN_NO_SCRIPT_SUPPORT: /// NO SCRIPT SUPPORT virtual void getClassName( MString & name ) const; /// NO SCRIPT SUPPORT MStatus getImage( MString & image, ImageIndex index ) const; END_NO_SCRIPT_SUPPORT: protected: /// USE _ignoreEntry() IN SCRIPT static bool ignoreEntry( const MIntArray &flags, unsigned int entry ); private: friend class MPxSelectionContext; friend class MToolsInfo; void setData( void * ptr ); void * data; MString title; MString help; MString fImage; unsigned int fImageIndex; MCursor * cursor; }; #ifdef _WIN32 #pragma warning(default: 4522) #endif // _WIN32 // ***************************************************************************** #endif /* __cplusplus */ #endif /* _MPxContext */