home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / ba / tvxsamp / tvxsampdlg.h < prev   
C/C++ Source or Header  |  1997-09-03  |  2KB  |  76 lines

  1. // TVXSampDlg.h : TV Viewer sample application
  2. //
  3. // Copyright (C) 1997 Microsoft Corporation
  4. // All rights reserved.
  5. //
  6. // This source code is only intended as a supplement to the
  7. // Broadcast Architecture Programmer's Reference.
  8. // For detailed information regarding Broadcast
  9. // Architecture, see the reference.
  10. //
  11. //
  12. //
  13.  
  14.  
  15. #if !defined(AFX_TVXSAMPDLG_H__FF521029_0CE4_11D1_98AE_080009DC95C5__INCLUDED_)
  16. #define AFX_TVXSAMPDLG_H__FF521029_0CE4_11D1_98AE_080009DC95C5__INCLUDED_
  17.  
  18. #if _MSC_VER >= 1000
  19. #pragma once
  20. #endif // _MSC_VER >= 1000
  21.  
  22. class CTVXSampDlgAutoProxy;
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CTVXSampDlg dialog
  26.  
  27. class CTVXSampDlg : public CDialog
  28. {
  29.     DECLARE_DYNAMIC(CTVXSampDlg);
  30.     friend class CTVXSampDlgAutoProxy;
  31.  
  32. // Construction
  33. public:
  34.     CTVXSampDlg(CWnd* pParent = NULL);    // standard constructor
  35.     virtual ~CTVXSampDlg();
  36.  
  37. // Dialog Data
  38.     //{{AFX_DATA(CTVXSampDlg)
  39.     enum { IDD = IDD_TVXSAMP_DIALOG };
  40.         // NOTE: the ClassWizard will add data members here
  41.     //}}AFX_DATA
  42.  
  43.     // ClassWizard generated virtual function overrides
  44.     //{{AFX_VIRTUAL(CTVXSampDlg)
  45.     protected:
  46.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47.     //}}AFX_VIRTUAL
  48.  
  49. // Implementation
  50. protected:
  51.     CTVXSampDlgAutoProxy* m_pAutoProxy;
  52.     HICON m_hIcon;
  53.  
  54.     BOOL CanExit();
  55.  
  56.     // Generated message map functions
  57.     //{{AFX_MSG(CTVXSampDlg)
  58.     virtual BOOL OnInitDialog();
  59.     afx_msg void OnPaint();
  60.     afx_msg HCURSOR OnQueryDragIcon();
  61.     afx_msg void OnClose();
  62.     virtual void OnOK();
  63.     virtual void OnCancel();
  64.     afx_msg void OnButton1();
  65.     afx_msg void OnButton2();
  66.     afx_msg void OnButton4();
  67.     afx_msg void OnSetReminder();
  68.     //}}AFX_MSG
  69.     DECLARE_MESSAGE_MAP()
  70. };
  71.  
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  74.  
  75. #endif // !defined(AFX_TVXSAMPDLG_H__FF521029_0CE4_11D1_98AE_080009DC95C5__INCLUDED_)
  76.