00001 #pragma once
00002 #include "DSPlayer.h"
00003 #include <fstream>
00004 using namespace std;
00005
00006
00007 class CControlDialog : public CDialog
00008 {
00009 DECLARE_DYNAMIC(CControlDialog)
00010
00011 public:
00012 CControlDialog(CWnd* pParent = NULL);
00013 virtual ~CControlDialog();
00014
00015
00016 enum { IDD = IDD_DIALOG1 };
00017
00018 protected:
00019 virtual void DoDataExchange(CDataExchange* pDX);
00020 IWebBrowser2* mBrowser;
00021 fstream debugLog;
00022 DSPlayer mPlayer;
00023 DECLARE_MESSAGE_MAP()
00024 public:
00025 afx_msg void OnBnClickedButton1();
00026
00027 void setBrowser(IWebBrowser2* inBrowser);
00028 afx_msg void OnBnClickedButton2();
00029 afx_msg void OnBnClickedButton3();
00030 };