BOWview.h
上传用户: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. // BOWview.h : interface of the CBOWView class
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18. #if !defined(AFX_BOWVIEW_H__720D76A1_A7E5_11D2_ADC4_0000F8084273__INCLUDED_)
  19. #define AFX_BOWVIEW_H__720D76A1_A7E5_11D2_ADC4_0000F8084273__INCLUDED_
  20. #if _MSC_VER > 1000
  21. #pragma once
  22. #endif // _MSC_VER > 1000
  23. class CBOWView : public CView
  24. {
  25. protected: // create from serialization only
  26. CBOWView();
  27. DECLARE_DYNCREATE(CBOWView)
  28. // Attributes
  29. public:
  30. CBOWDoc* GetDocument();
  31. CBitmap cbmBitmap;
  32. CDC *m_pImgDC;
  33. DWORD m_dwSolidColor;
  34. BOOL m_bImage;
  35. CString m_strImgFile;
  36. BOOL m_bTile;
  37. // Operations
  38. public:
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CBOWView)
  42. public:
  43. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  44. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  45. virtual void OnInitialUpdate();
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. public:
  49. virtual ~CBOWView();
  50. #ifdef _DEBUG
  51. virtual void AssertValid() const;
  52. virtual void Dump(CDumpContext& dc) const;
  53. #endif
  54. protected:
  55. // Generated message map functions
  56. protected:
  57. //{{AFX_MSG(CBOWView)
  58. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  59. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  60. //}}AFX_MSG
  61. DECLARE_MESSAGE_MAP()
  62. };
  63. #ifndef _DEBUG  // debug version in BOWView.cpp
  64. inline CBOWDoc* CBOWView::GetDocument()
  65.    { return (CBOWDoc*)m_pDocument; }
  66. #endif
  67. /////////////////////////////////////////////////////////////////////////////
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_BOWVIEW_H__720D76A1_A7E5_11D2_ADC4_0000F8084273__INCLUDED_)