miscellaneous/motionbuilder_shelf/shelveTool.h
#pragma once
#define ORTOOL__CLASSNAME ShelveTool
#define ORTOOL__NAME "Shelf"
#define SHELVES_HEIGHT 83
#define TAB_HEIGHT 25
#define BUTTON_MARGIN 2
#define BUTTON_SIZE 32
class ShelveTool : public FBTool {
private:
FBTabPanel _Tab ;
FBLayout *_Layouts ;
FBButton *_Buttons ;
std::vector<std::string> _LayoutIds ;
std::vector<std::string> _ButtonIds ;
std::map<std::string, std::string> _scripts ;
std::map<std::string, std::string> _scriptFiles ;
public:
virtual bool FBCreate () ;
virtual void FBDestroy () ;
} ;