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.

41 lines
767 B

  1. // Title.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CStaticTitle window
  5. class CStaticTitle : public CButton
  6. {
  7. // Construction
  8. public:
  9. CStaticTitle();
  10. // Attributes
  11. public:
  12. // Operations
  13. public:
  14. virtual void DrawItem( LPDRAWITEMSTRUCT lpDrawItemStruct );
  15. BOOL m_fTipText;
  16. // Overrides
  17. // ClassWizard generated virtual function overrides
  18. //{{AFX_VIRTUAL(CStaticTitle)
  19. //}}AFX_VIRTUAL
  20. // Implementation
  21. public:
  22. virtual ~CStaticTitle();
  23. // Generated message map functions
  24. protected:
  25. //{{AFX_MSG(CStaticTitle)
  26. //}}AFX_MSG
  27. DECLARE_MESSAGE_MAP()
  28. BOOL m_fInitializedFont;
  29. };
  30. /////////////////////////////////////////////////////////////////////////////