Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
1.8 KiB

  1. /*******************************************************************************
  2. *
  3. * blankvw.h
  4. *
  5. * - header for the CBlankView class
  6. * - implementation can be found in blankvw.cpp
  7. *
  8. *
  9. * copyright notice: Copyright 1997, Citrix Systems Inc.
  10. * Copyright (c) 1998 - 1999 Microsoft Corporation
  11. *
  12. * $Author: donm $ Don Messerli
  13. *
  14. * $Log: N:\nt\private\utils\citrix\winutils\winadmin\VCS\blankvw.h $
  15. *
  16. * Rev 1.1 13 Oct 1997 18:40:04 donm
  17. * update
  18. *
  19. * Rev 1.0 30 Jul 1997 17:11:08 butchd
  20. * Initial revision.
  21. *
  22. *******************************************************************************/
  23. //////////////////////
  24. // FILE:
  25. //
  26. //
  27. #ifndef _BLANKVIEW_H
  28. #define _BLANKVIEW_H
  29. //////////////////////
  30. // CLASS: CBlankView
  31. //
  32. // - this class is just a utility view that i use to fill in
  33. // spaces until i write up better views for them, or to test
  34. // simple stuff (i.e print debugging info it the view)
  35. //
  36. class CBlankView : public CAdminView
  37. {
  38. friend class CRightPane;
  39. protected:
  40. CBlankView(); // protected constructor used by dynamic creation
  41. DECLARE_DYNCREATE(CBlankView)
  42. // Attributes
  43. protected:
  44. // Operations
  45. protected:
  46. void Reset(void) { };
  47. // Overrides
  48. // ClassWizard generated virtual function overrides
  49. //{{AFX_VIRTUAL(CBlankView)
  50. protected:
  51. virtual void OnDraw(CDC* pDC);
  52. //}}AFX_VIRTUAL
  53. // Implementation
  54. protected:
  55. virtual ~CBlankView();
  56. #ifdef _DEBUG
  57. virtual void AssertValid() const;
  58. virtual void Dump(CDumpContext& dc) const;
  59. #endif
  60. LRESULT OnTabbed( WPARAM , LPARAM )
  61. {return 0;}
  62. // Generated message map functions
  63. protected:
  64. //{{AFX_MSG(CBlankView)
  65. // NOTE - the ClassWizard will add and remove member functions here.
  66. //}}AFX_MSG
  67. DECLARE_MESSAGE_MAP()
  68. }; // end class CBlankView
  69. #endif // _BLANKVIEW_H