JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
WriteFilesDLG.h
Go to the documentation of this file.
1#pragma once
2
3//
4// WriteFileDLG.h : ヘッダー ファイル
5//
6
7#include "DLGBoxBase.h"
8
9
10//
11namespace jbxwl {
12
13
15// CWriteFilesDLG ダイアログ
16
17class CWriteFilesDLG : public CDialog
18{
19public:
20 CWnd* pWnd;
21
22 CComboBox* fmtsCMBBox;
23 CEdit* fnameEBox;
25 CEdit* toNumEBox;
26 CButton* mltSaveCBtn;
27
28 CString fName;
29 int format;
31 int toNum;
32 int zSize;
33 BOOL mltSave;
34
35// コンストラクション
36public:
37 CWriteFilesDLG(LPCTSTR fname, int fmtm, int fnum, int tnum, CWnd* pParent=NULL);
38 virtual ~CWriteFilesDLG();
39
40 void setDLGState(LPCTSTR fmtstr);
41 void setNumBoxState();
42
43 virtual BOOL OnInitDialog();
44
45// ダイアログ データ
46 //{{AFX_DATA(CWriteFilesDLG)
47 enum { IDD = IDD_WFDLG };
48 //}}AFX_DATA
49
50// オーバーライド
51protected:
52 //{{AFX_VIRTUAL(CWriteFilesDLG)
53 virtual void DoDataExchange(CDataExchange* pDX);
54 //}}AFX_VIRTUAL
55
56// インプリメンテーション
57protected:
58 //{{AFX_MSG(CWriteFilesDLG)
59 virtual void OnOK();
60 //}}AFX_MSG
61 DECLARE_MESSAGE_MAP()
62
63public:
64 afx_msg void OnCbnSelchangeWfFormats();
65 afx_msg void OnBnClickedWfMfl();
66};
67
68
69//{{AFX_INSERT_LOCATION}}
70
71
72} // namespace
void setDLGState(LPCTSTR fmtstr)
afx_msg void OnBnClickedWfMfl()
virtual BOOL OnInitDialog()
CWriteFilesDLG(LPCTSTR fname, int fmtm, int fnum, int tnum, CWnd *pParent=NULL)
afx_msg void OnCbnSelchangeWfFormats()
virtual void DoDataExchange(CDataExchange *pDX)
#define IDD_WFDLG
Definition resource.h:10