tools/toolcluster/ortoolcluster_tool.h
#ifndef __ORTOOL_CLUSTER_TOOL_H__
#define __ORTOOL_CLUSTER_TOOL_H__
#define ORTOOLCLUSTER__CLASSNAME ORToolCluster
#define ORTOOLCLUSTER__CLASSSTR "ORToolCluster"
class ORToolCluster : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
private:
void UICreate ();
void UIConfigure ();
void UIReset ();
void UIRefresh ();
void EventContainerClusterDragAndDrop (
HISender pSender,
HKEvent pEvent );
void SetClusterModel ( FBModel* pModel );
private:
FBSystem mSystem;
FBApplication mApplication;
FBLabel mLabelDirections;
FBLabel mLabelCluster;
FBVisualContainer mContainerCluster;
FBPropertyInspector mInspector;
HdlFBPlugTemplate<FBModel> mHdlModel;
};
#endif