Initial commit
This commit is contained in:
99
Torque/SDK/lib/mayasdk6/include/maya/MPxContextCommand.h
Normal file
99
Torque/SDK/lib/mayasdk6/include/maya/MPxContextCommand.h
Normal file
@@ -0,0 +1,99 @@
|
||||
|
||||
#ifndef _MPxContextCommand
|
||||
#define _MPxContextCommand
|
||||
//
|
||||
//-
|
||||
// ==========================================================================
|
||||
// Copyright (C) Alias Systems, a division of Silicon Graphics Limited.
|
||||
// All rights reserved. These coded instructions, statements and computer
|
||||
// programs contain unpublished information proprietary to Alias Systems,
|
||||
// a division of Silicon Graphics Limited, which is protected by the
|
||||
// Canadian and US federal copyright law and may not be disclosed to third
|
||||
// parties or copied or duplicated, in whole or in part, without prior
|
||||
// written consent of Alias Systems, a division of Silicon Graphics Limited
|
||||
// ==========================================================================
|
||||
//+
|
||||
//
|
||||
// CLASS: MPxContextCommand
|
||||
//
|
||||
// *****************************************************************************
|
||||
//
|
||||
// CLASS DESCRIPTION (MPxContextCommand)
|
||||
//
|
||||
// This is the command class used for creating proxy contexts.
|
||||
//
|
||||
// *****************************************************************************
|
||||
|
||||
#if defined __cplusplus
|
||||
|
||||
// *****************************************************************************
|
||||
|
||||
// INCLUDED HEADER FILES
|
||||
|
||||
|
||||
#include <maya/MTypes.h>
|
||||
#include <maya/MStatus.h>
|
||||
|
||||
// *****************************************************************************
|
||||
|
||||
// DECLARATIONS
|
||||
|
||||
class MPxContext;
|
||||
class MArgParser;
|
||||
|
||||
// *****************************************************************************
|
||||
|
||||
// CLASS DECLARATION (MPxContextCommand)
|
||||
|
||||
/// Base class for context creation commands (OpenMayaUI)
|
||||
/**
|
||||
The base class for context creation commands.
|
||||
*/
|
||||
#ifdef _WIN32
|
||||
#pragma warning(disable: 4522)
|
||||
#endif // _WIN32
|
||||
|
||||
class OPENMAYAUI_EXPORT MPxContextCommand
|
||||
{
|
||||
public:
|
||||
///
|
||||
MPxContextCommand ();
|
||||
///
|
||||
virtual ~MPxContextCommand ();
|
||||
///
|
||||
virtual MStatus doEditFlags ();
|
||||
///
|
||||
virtual MStatus doQueryFlags ();
|
||||
///
|
||||
virtual MPxContext * makeObj ();
|
||||
///
|
||||
virtual MStatus appendSyntax ();
|
||||
///
|
||||
MStatus setResult (bool result);
|
||||
///
|
||||
MStatus setResult (int result);
|
||||
///
|
||||
MStatus setResult (double result);
|
||||
///
|
||||
MStatus setResult (const MString &result);
|
||||
|
||||
protected:
|
||||
///
|
||||
MSyntax syntax(MStatus *ReturnStatus = NULL) const;
|
||||
///
|
||||
MArgParser parser(MStatus *ReturnStatus = NULL) const;
|
||||
|
||||
private:
|
||||
const char *className() const;
|
||||
void setData(void *ptr);
|
||||
|
||||
void *instance;
|
||||
};
|
||||
|
||||
#ifdef _WIN32
|
||||
#pragma warning(default: 4522)
|
||||
#endif // _WIN32
|
||||
|
||||
// *****************************************************************************
|
||||
#endif /* __cplusplus */
|
||||
#endif /* _MPxContextCommand */
|
||||
Reference in New Issue
Block a user