183 lines
4.9 KiB
C++
Executable File
183 lines
4.9 KiB
C++
Executable File
|
|
#ifndef _MPxContext
|
|
#define _MPxContext
|
|
//
|
|
//-
|
|
// ==========================================================================
|
|
// Copyright (C) 1995 - 2005 Alias Systems Corp. 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 Alias Systems Corp. ("Alias") and/or its
|
|
// licensors, which is protected by Canadian and US 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
|
|
// Alias.
|
|
//
|
|
// THE DATA IS PROVIDED "AS IS". ALIAS HEREBY DISCLAIMS ALL WARRANTIES RELATING
|
|
// TO THE DATA, INCLUDING, WITHOUT LIMITATION, ANY AND ALL EXPRESS OR IMPLIED
|
|
// WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE. IN NO EVENT SHALL ALIAS BE LIABLE FOR ANY DAMAGES
|
|
// WHATSOEVER, WHETHER DIRECT, INDIRECT, SPECIAL, OR PUNITIVE, WHETHER IN AN
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, OR IN EQUITY,
|
|
// ARISING OUT OF ACCESS TO, USE OF, OR RELIANCE UPON THE DATA.
|
|
// ==========================================================================
|
|
//+
|
|
//
|
|
// CLASS: MPxContext
|
|
//
|
|
// *****************************************************************************
|
|
//
|
|
// CLASS DESCRIPTION (MPxContext)
|
|
//
|
|
// This is the base class for contexts.
|
|
//
|
|
// *****************************************************************************
|
|
|
|
#if defined __cplusplus
|
|
|
|
// *****************************************************************************
|
|
|
|
// INCLUDED HEADER FILES
|
|
|
|
|
|
#include <maya/MStatus.h>
|
|
#include <maya/MTypes.h>
|
|
#include <maya/MEvent.h>
|
|
#include <maya/MString.h>
|
|
#include <maya/MSyntax.h>
|
|
#include <maya/MObject.h>
|
|
|
|
// *****************************************************************************
|
|
|
|
// DECLARATIONS
|
|
|
|
class MString;
|
|
class MDoubleArray;
|
|
class MIntArray;
|
|
class MPxToolCommand;
|
|
class MCursor;
|
|
|
|
// *****************************************************************************
|
|
|
|
// CLASS DECLARATION (MPxContext)
|
|
|
|
/// Base class for user defined contexts (OpenMayaUI)
|
|
/**
|
|
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 void deleteAction();
|
|
///
|
|
virtual void completeAction();
|
|
///
|
|
virtual MStatus addManipulator( const MObject & manipulator );
|
|
///
|
|
virtual MStatus deleteManipulators();
|
|
///
|
|
MStatus setImage( const MString & image, ImageIndex index );
|
|
///
|
|
MStatus getImage( MString & image, ImageIndex index ) const;
|
|
|
|
protected:
|
|
///
|
|
MStatus setHelpString( const MString & str );
|
|
///
|
|
MStatus setTitleString( const MString & str );
|
|
|
|
///
|
|
MStatus setCursor( const MCursor & cursor );
|
|
|
|
///
|
|
MStatus beginMarquee( MEvent & event );
|
|
///
|
|
MStatus dragMarquee( MEvent & event );
|
|
///
|
|
MStatus releaseMarquee( MEvent & event,
|
|
short& top, short& left,
|
|
short& bottom, short& right );
|
|
|
|
// Create an instance of a tool command for use in
|
|
// this context.
|
|
//
|
|
///
|
|
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 index ) const;
|
|
///
|
|
virtual void getClassName( MString & name ) const;
|
|
|
|
protected:
|
|
///
|
|
static bool ignoreEntry( const MIntArray &flags,
|
|
unsigned entry );
|
|
|
|
private:
|
|
friend class MPxSelectionContext;
|
|
friend class MToolsInfo;
|
|
void setData( void * ptr );
|
|
void * data;
|
|
MString title;
|
|
MString help;
|
|
MString fImage;
|
|
unsigned fImageIndex;
|
|
MCursor * cursor;
|
|
};
|
|
|
|
#ifdef _WIN32
|
|
#pragma warning(default: 4522)
|
|
#endif // _WIN32
|
|
|
|
// *****************************************************************************
|
|
#endif /* __cplusplus */
|
|
#endif /* _MPxContext */
|