Develop and Download Open Source Software

Browse CVS Repository

Contents of /enbanfukusyaya/EnbanFukusyaYa/Win32/SettingDlg.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Tue Sep 19 15:39:40 2006 UTC (17 years, 6 months ago) by bananajinn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -0 lines
File MIME type: text/x-chdr
*** empty log message ***

1 /* 円盤複写屋
2 * Copyright (C) 2004 Kagetani Hideto
3 */
4 #if !defined(AFX_SETTINGDLG_H__CEB3E180_E11F_411B_A0D1_38248C97C821__INCLUDED_)
5 #define AFX_SETTINGDLG_H__CEB3E180_E11F_411B_A0D1_38248C97C821__INCLUDED_
6
7 #if _MSC_VER > 1000
8 #pragma once
9 #endif // _MSC_VER > 1000
10 // SettingDlg.h : ヘッダー ファイル
11 //
12
13 #include <ThemeButton.h>
14 #include <ThemeLabel.h>
15 #include <ThemeComboBox.h>
16 #include <ThemeCheckBox.h>
17 #include <ThemeDialog.h>
18 #include <option.h>
19
20 /////////////////////////////////////////////////////////////////////////////
21 // CSettingDlg ダイアログ
22
23 class CSettingDlg : public CThemeDialog
24 {
25 // コンストラクション
26 public:
27 CSettingDlg(CWnd* pParent = NULL); // 標準のコンストラクタ
28
29 // ダイアログ データ
30 //{{AFX_DATA(CSettingDlg)
31 enum { IDD = IDD_SETTING };
32 CThemeCheckBox m_ChkOutside;
33 CThemeLabel m_StcTempPath;
34 CEdit m_EdtTempPath;
35 CThemeButton m_BtnOK;
36 CThemeButton m_BtnCancel;
37 CThemeLabel m_StcWriteSpeed;
38 CThemeLabel m_StcReadSpeed;
39 CThemeComboBox m_CmbWriteSpeed;
40 CThemeComboBox m_CmbReadSpeed;
41 CThemeCheckBox m_ChkTestWrite;
42 CThemeCheckBox m_ChkOnthefly;
43 CThemeCheckBox m_ChkDAO;
44 CThemeCheckBox m_ChkBUFE;
45 //}}AFX_DATA
46
47
48 // オーバーライド
49 // ClassWizard は仮想関数のオーバーライドを生成します。
50 //{{AFX_VIRTUAL(CSettingDlg)
51 protected:
52 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
53 //}}AFX_VIRTUAL
54
55 // インプリメンテーション
56 protected:
57
58 // 生成されたメッセージ マップ関数
59 //{{AFX_MSG(CSettingDlg)
60 virtual BOOL OnInitDialog();
61 virtual void OnOK();
62 //}}AFX_MSG
63 DECLARE_MESSAGE_MAP()
64
65 private:
66 void SetSpeedItems(CComboBox *pCB, int nDefaultSpeed, BOOL bDVD,
67 BYTE *speeds, int num_speeds);
68 OPTIONS *m_pOption;
69
70 public:
71 void SetData(OPTIONS *pOption){ m_pOption = pOption; };
72 };
73
74 //{{AFX_INSERT_LOCATION}}
75 // Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
76
77 #endif // !defined(AFX_SETTINGDLG_H__CEB3E180_E11F_411B_A0D1_38248C97C821__INCLUDED_)

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26