00001 #pragma once 00002 00003 // 00004 // WriteFileDLG.h : ヘッダー ファイル 00005 // 00006 00007 #include "DLGBoxBase.h" 00008 00009 00010 // 00011 namespace jbxwl { 00012 00013 00015 // CWriteFilesDLG ダイアログ 00016 00017 class CWriteFilesDLG : public CDialog 00018 { 00019 public: 00020 CWnd* pWnd; 00021 00022 CComboBox* fmtsCMBBox; 00023 CEdit* fnameEBox; 00024 CEdit* fromNumEBox; 00025 CEdit* toNumEBox; 00026 CButton* mltSaveCBtn; 00027 00028 CString fName; 00029 int format; 00030 int fromNum; 00031 int toNum; 00032 int zSize; 00033 BOOL mltSave; 00034 00035 // コンストラクション 00036 public: 00037 CWriteFilesDLG(LPCTSTR fname, int fmtm, int fnum, int tnum, CWnd* pParent=NULL); 00038 virtual ~CWriteFilesDLG(); 00039 00040 void setDLGState(LPCTSTR fmtstr); 00041 void setNumBoxState(); 00042 00043 virtual BOOL OnInitDialog(); 00044 00045 // ダイアログ データ 00046 //{{AFX_DATA(CWriteFilesDLG) 00047 enum { IDD = IDD_WFDLG }; 00048 //}}AFX_DATA 00049 00050 // オーバーライド 00051 protected: 00052 //{{AFX_VIRTUAL(CWriteFilesDLG) 00053 virtual void DoDataExchange(CDataExchange* pDX); 00054 //}}AFX_VIRTUAL 00055 00056 // インプリメンテーション 00057 protected: 00058 //{{AFX_MSG(CWriteFilesDLG) 00059 virtual void OnOK(); 00060 //}}AFX_MSG 00061 DECLARE_MESSAGE_MAP() 00062 00063 public: 00064 afx_msg void OnCbnSelchangeWfFormats(); 00065 afx_msg void OnBnClickedWfMfl(); 00066 }; 00067 00068 00069 //{{AFX_INSERT_LOCATION}} 00070 00071 00072 } // namespace