miscellaneous/model_template/ormodel_template_tool.h
#ifndef __ORMODEL_TEMPLATE_TOOL_H__
#define __ORMODEL_TEMPLATE_TOOL_H__
#define ORTOOLCUSTOMMODEL__CLASSNAME ORToolCustomModel
#define ORTOOLCUSTOMMODEL__CLASSSTR "ORToolCustomModel"
class ORToolCustomModel : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
virtual bool FbxStore ( FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat );
virtual bool FbxRetrieve ( FBFbxObject* pFbxObject,
kFbxObjectStore pStoreWhat );
void UICreate ();
void UIConfigure ();
void UIReset ();
void UIRefresh ();
private:
void EventButtonCreateModelWithCustomDisplayClick (
HISender pSender,
HKEvent pEvent );
private:
FBButton mButtonCreateModel;
FBButton mButtonCreateModelWithCustomDisplay;
FBList mListModels;
FBSlider mScaleSlider;
private:
FBSystem mSystem;
};
#endif