tools/toolview3d/ortoolview3d_tool.h
#ifndef __ORTOOLVIEW3D_TOOL_H__
#define __ORTOOLVIEW3D_TOOL_H__
#include "ortoolview3d_view.h"
#define ORTOOLVIEW3D__CLASSNAME ORToolView3D
#define ORTOOLVIEW3D__CLASSSTR "ORToolView3D"
class ORToolView3D : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
virtual bool FbxStore ( FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat );
virtual bool FbxRetrieve ( FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat );
private:
void UICreate ();
void UIConfigure ();
void UIReset ();
void RefreshView ();
private:
FBLabel mLabelDirections;
ORView3D mView;
};
#endif