importexport/impexpdevice/orimpexpdevice_layout.h
#ifndef __ORIMPEXP_DEVICE_LAYOUT_H__
#define __ORIMPEXP_DEVICE_LAYOUT_H__
#include "orimpexpdevice_device.h"
class ORDeviceExportLayout : public FBDeviceLayout
{
public:
virtual bool FBCreate();
virtual void FBDestroy();
private:
void UICreate ();
void UIConfigure ();
void UIReset ();
private:
FBLabel mLabelExportFilename;
FBEdit mEditExportFilename;
FBLabel mLabelExportRate;
FBEditNumber mEditNumberExportRate;
FBLabel mLabelExportModels;
FBButton mButtonClearList;
FBList mListExportModels;
private:
FBSystem mSystem;
ORDeviceExport* mDevice;
};
#endif