home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Shareware / Programare / flashplayer / Samples / MFC / Demo / DemoDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-10-30  |  838 b   |  41 lines

  1. // DemoDlg.h : header file
  2. //
  3.  
  4. #pragma once
  5.  
  6.  
  7. // CDemoDlg dialog
  8. class CDemoDlg : public CDialog
  9. {
  10. private:
  11.     HWND m_hwndFlashPlayerControl;
  12.  
  13. // Construction
  14. public:
  15.     CDemoDlg(CWnd* pParent = NULL);    // standard constructor
  16.  
  17. // Dialog Data
  18.     enum { IDD = IDD_DEMO_DIALOG };
  19.  
  20.     protected:
  21.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  22.  
  23.  
  24. // Implementation
  25. protected:
  26.     HICON m_hIcon;
  27.  
  28.     // Generated message map functions
  29.     virtual BOOL OnInitDialog();
  30.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  31.     afx_msg void OnPaint();
  32.     afx_msg HCURSOR OnQueryDragIcon();
  33.     DECLARE_MESSAGE_MAP()
  34. public:
  35.     afx_msg void OnBnClickedOpen();
  36. protected:
  37.     virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  38. public:
  39.     afx_msg void OnBnClickedButtonGoToTheSite();
  40. };
  41.