//{{AFX_INCLUDES()
#include "webbrowser.h"
//}}AFX_INCLUDES
#if !defined(AFX_WEBDIALOG_H__A48CAF08_560A_11D1_AC25_509148C10000__INCLUDED_)
#define AFX_WEBDIALOG_H__A48CAF08_560A_11D1_AC25_509148C10000__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// WebDialog.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CWebDialog dialog

class CWebDialog : public CDialog
{
// Construction
public:
	CWebDialog(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CWebDialog)
	enum { IDD = IDD_WEB_DIALOG };
	CComboBox		m_cbURL;
	CWebBrowser2	m_cWebBrowser;
	//}}AFX_DATA
	CString			m_csURL;

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWebDialog)
	public:
	virtual void OnFinalRelease();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CWebDialog)
	virtual BOOL OnInitDialog();
	afx_msg void OnNavigateComplete2Explorer1(LPDISPATCH pDisp, VARIANT FAR* URL);
	afx_msg void OnGoBack();
	afx_msg void OnGoForward();
	afx_msg void OnSelchangeUrlList();
	DECLARE_EVENTSINK_MAP()
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
	// Generated OLE dispatch map functions
	//{{AFX_DISPATCH(CWebDialog)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_DISPATCH
	DECLARE_DISPATCH_MAP()
	DECLARE_INTERFACE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_WEBDIALOG_H__A48CAF08_560A_11D1_AC25_509148C10000__INCLUDED_)

