tools/toolbatch/ortoolbatch_tool.h
#ifndef __ORTOOL_CHARACTERBATCH_TOOL_H__
#define __ORTOOL_CHARACTERBATCH_TOOL_H__
#define ORTOOLBATCH__CLASSNAME ORToolBatch
#define ORTOOLBATCH__CLASSSTR "ORToolBatch"
class ORToolBatch : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
private:
void UICreate ();
void UIConfigure ();
void UIReset ();
void UIRefresh ();
private:
FBApplication mApplication;
FBSystem mSystem;
FBLabel mLabelDescription;
FBLabel mLabelCharacter;
FBEdit mEditCharacterPath;
FBButton mButtonBrowseCharacter;
FBButton mButtonLoadCharacter;
FBLabel mLabelInputDir;
FBEdit mEditInputDir;
FBButton mButtonBrowseInputDir;
FBLabel mLabelOutputDir;
FBEdit mEditOutputDir;
FBButton mButtonBrowseOutputDir;
FBLabel mLabelStart;
FBButton mButtonStart;
};
#endif