Splash.cpp
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:3k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*============================================================================
  2.    Copyright (c) 1996
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14. =============================================================================*/
  15. #include "stdafx.h"
  16. #include "browser.h"
  17. #include "Splash.h"
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Splash dialog
  25. Splash::Splash(CWnd* pParent /*=NULL*/)
  26. : CDialog(Splash::IDD, pParent)
  27. {
  28. //{{AFX_DATA_INIT(Splash)
  29. // NOTE: the ClassWizard will add member initialization here
  30. //}}AFX_DATA_INIT
  31. }
  32. void Splash::DoDataExchange(CDataExchange* pDX)
  33. {
  34. CDialog::DoDataExchange(pDX);
  35. //{{AFX_DATA_MAP(Splash)
  36. // NOTE: the ClassWizard will add DDX and DDV calls here
  37. //}}AFX_DATA_MAP
  38. }
  39. BEGIN_MESSAGE_MAP(Splash, CDialog)
  40. //{{AFX_MSG_MAP(Splash)
  41. ON_WM_TIMER()
  42. //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44. /////////////////////////////////////////////////////////////////////////////
  45. // Splash message handlers
  46. int Splash::DoModal() 
  47. {
  48. // TODO: Add your specialized code here and/or call the base class
  49. return CDialog::DoModal();
  50. }
  51. void Splash::OnTimer(UINT nIDEvent) 
  52. {
  53. // TODO: Add your message handler code here and/or call default
  54. KillTimer( nIDEvent);
  55.     CDialog::OnTimer(nIDEvent);
  56.     CDialog::OnOK(); 
  57. CDialog::OnTimer(nIDEvent);
  58. }
  59. BOOL Splash::OnInitDialog() 
  60. {
  61. CWnd *ctrl;
  62. CDialog::OnInitDialog();
  63. // TODO: Add extra initialization here
  64. CenterWindow();
  65.     ctrl = GetDlgItem( IDC_SPLASH);
  66.     CRect crect;
  67.     ctrl->GetWindowRect( crect);
  68.     MoveWindow( crect);
  69. SetTimer(1 ,2500, NULL);
  70. return TRUE;  // return TRUE unless you set the focus to a control
  71.               // EXCEPTION: OCX Property Pages should return FALSE
  72. }