SplashDlg.h
上传用户:cding2008
上传日期:2007-01-03
资源大小:1812k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // SplashDlg.h : header file
  3. //
  4. // ModelMagic 3D and 'glOOP' (OpenGL Object Oriented Programming library)
  5. // Copyright (c) Craig Fahrnbach 1997, 1999
  6. //
  7. // OpenGL is a registered trademark of Silicon Graphics
  8. //
  9. //
  10. // This program is provided for educational and personal use only and
  11. // is provided without guarantee or warrantee expressed or implied.
  12. //
  13. // Commercial use is strickly prohibited without written permission
  14. // from ImageWare Development.
  15. //
  16. /////////////////////////////////////////////////////////////////////////////
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CSplashDlg dialog
  19. class CSplashDlg : public CDialog
  20. {
  21. // Construction
  22. public:
  23. static void ShowSplashDlg(CWnd* pParentWnd = NULL);
  24. CSplashDlg(CWnd* pParent = NULL);   // standard constructor
  25. // Dialog Data
  26. //{{AFX_DATA(CSplashDlg)
  27. enum { IDD = IDD_SPLASH_DIALOG };
  28. CString m_szDaysToGo;
  29. CString m_szDaysGrace;
  30. //}}AFX_DATA
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CSplashDlg)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. CWnd m_wndDaysToGo;
  40. CWnd m_wndDaysGrace;
  41. // Generated message map functions
  42. //{{AFX_MSG(CSplashDlg)
  43. afx_msg void OnOrderForm();
  44. afx_msg void OnOrderOnline();
  45. afx_msg void OnContinue();
  46. virtual BOOL OnInitDialog();
  47. afx_msg void OnDestroy();
  48. afx_msg void OnPaint();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };