#pragma once // CSetDataSave ダイアログ class CSetDataSave : public CDialog { DECLARE_DYNAMIC(CSetDataSave) public: CSetDataSave(BOOL bvh, BOOL pos, BOOL rot, BOOL qut, BOOL file, CWnd* pParent = NULL); // 標準コンストラクタ virtual ~CSetDataSave(); BOOL savePosMode() { return posSaveMode;} BOOL saveRotMode() { return rotSaveMode;} BOOL saveQutMode() { return qutSaveMode;} BOOL saveBVHFile() { return isBVHFile;} protected: BOOL file_exist; BOOL isBVHFile; BOOL posSaveMode; BOOL rotSaveMode; BOOL qutSaveMode; CButton* orgCBox; CButton* bvhCBox; CButton* posCBox; CButton* rotCBox; CButton* qutCBox; // ダイアログ データ enum { IDD = IDD_SETDATASAVE }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート DECLARE_MESSAGE_MAP() public: afx_msg void OnBnClickedRadioSaveOrg(); afx_msg void OnBnClickedRadioSaveBvh(); virtual BOOL OnInitDialog(); protected: virtual void OnOK(); };