importexport/impexpcamera/orimpexpcamera_popup.h
#ifndef __ORIMPEXP_CAMERA_POPUP_H__
#define __ORIMPEXP_CAMERA_POPUP_H__
#include "orimpexpcamera_engine.h"
class ORPopupCameraExport : public FBPopup
{
public:
ORPopupCameraExport();
public:
void UICreate ();
void UIConfigure ();
public:
void SetFilename ( const char* pFilename );
void SetEngine ( ORCameraEngine* pEngine ) { mEngine = pEngine; }
private:
FBLabel mLabelFilename;
FBButton mButtonProperties;
FBButton mButtonAnimation;
FBButton mButtonMesh;
FBButton mButtonExport;
FBButton mButtonCancel;
private:
FBString mFilename;
ORCameraEngine* mEngine;
};
#endif