tools/toolimportexport/ortoolimportexport_tool.h
#ifndef __ORTOOL_IMPORTEXPORT_TOOL_H__
#define __ORTOOL_IMPORTEXPORT_TOOL_H__
#define ORTOOLIMPORTEXPORT__CLASSNAME ORToolImportExport
#define ORTOOLIMPORTEXPORT__CLASSSTR "ORToolImportExport"
class ORToolImportExport : public FBTool
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
private:
void UICreate ();
void UIConfigure ();
void UIReset ();
void UIRefresh ();
void EventButtonBrowseImportFileClick (
HISender pSender,
HKEvent pEvent );
void EventButtonBrowseExportFileClick (
HISender pSender,
HKEvent pEvent );
private:
FBSystem mSystem;
FBApplication mApplication;
FBLayout mLayout[2];
FBTabPanel mTabPanel;
FBLabel mLabelImportFile;
FBLabel mLabelExportFile;
FBEdit mEditImportFile;
FBEdit mEditExportFile;
FBButton mButtonBrowseImportFile;
FBButton mButtonBrowseExportFile;
FBButton mButtonImport;
FBButton mButtonExport;
FBButton mButtonMatchModelsCheckbox;
};
#endif