tools/tooltimewarp/ortooltimewarp_tool.h
#ifndef __ORTOOL_TIMEWARP_TOOL_H__
#define __ORTOOL_TIMEWARP_TOOL_H__
#define ORTOOLTIMEWARP__CLASSNAME ORToolTimeWarp
#define ORTOOLTIMEWARP__CLASSSTR "ORToolTimeWarp"
class ORToolTimeWarp : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
private:
void UICreate ();
void UIConfigure ();
void UIReset ();
void UIRefresh ();
void CreateAnimation( FBAnimationNode* pAnimationNode);
private:
FBSystem mSystem;
FBLabel mLabelDirections;
FBButton mButtonTimeWarp;
HdlFBPlugTemplate<FBModel> mHdlModel;
HdlFBPlugTemplate<FBModel> mHdlModelCompared;
int mState;
};
#endif