Source code of Windows XP (NT5)
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.

38 lines
658 B

  1. // Tip.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CTip window
  5. class CTip : public CStatic
  6. {
  7. // Construction
  8. public:
  9. CTip();
  10. virtual void OnDraw(CDC* pDC);
  11. // Attributes
  12. public:
  13. // Operations
  14. public:
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CTip)
  18. //}}AFX_VIRTUAL
  19. // Implementation
  20. public:
  21. virtual ~CTip();
  22. // Generated message map functions
  23. protected:
  24. //{{AFX_MSG(CTip)
  25. afx_msg void OnPaint();
  26. //}}AFX_MSG
  27. DECLARE_MESSAGE_MAP()
  28. };
  29. /////////////////////////////////////////////////////////////////////////////