MPCLogoPane.h
上传用户:rubberdam
上传日期:2007-01-10
资源大小:43k
文件大小:1k
源码类别:

状态条

开发平台:

Visual C++

  1. //
  2. // MPCLogoPane.h
  3. // 
  4. // (c) Pierre MELLINAND
  5. //
  6. // History
  7. // --------
  8. // v 1.0
  9. // June 1998: Created.
  10. // v 1.01
  11. // October 19, 1999 Added History
  12. //
  13. #ifndef MPCLogoPane_h_
  14. #define MPCLogoPane_h_
  15. ///////////////////////////////////////////////////////////////////////////////////
  16. // MPCLogoPane
  17. class MPCLogoPane:public CWnd
  18. {
  19. DECLARE_DYNCREATE(MPCLogoPane)
  20. public:
  21. CString m_LogoText;
  22. CFont  m_fontLogo;
  23. MPCLogoPane();
  24. virtual BOOL Create(CString sText,DWORD dwStyle, CWnd * pParent,UINT nID);
  25. void SetLogoText(CString sTxt);
  26. void SetLogoFont(CString Name, int nHeight = 18, int nWeight = FW_BOLD,
  27.  BYTE bItalic = TRUE, BYTE bUnderline = FALSE);
  28. //{{AFX_MSG(MPCLogoPane)
  29. afx_msg void OnPaint();
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. #endif