StyleBar.h
上传用户:qiye66671
上传日期:2009-12-10
资源大小:182k
文件大小:2k
源码类别:

绘图程序

开发平台:

C/C++

  1. #if !defined(AFX_STYLEBAR_H__C85C9099_A154_11D2_8E53_006008A82731__INCLUDED_)
  2. #define AFX_STYLEBAR_H__C85C9099_A154_11D2_8E53_006008A82731__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // StyleBar.h : header file
  7. //
  8. #include"Resource.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CStyleBar command target
  11. #include <afxtempl.h>
  12. #include <afxcoll.h>
  13. class CStyleBar : public CToolBar
  14. {
  15. // Attributes
  16. public:
  17.   
  18. void OnCharBold();
  19. // Operations
  20. public:
  21. void IniFont();
  22. void OnCharUnderline();
  23. void OnCharItalic();
  24.     static int CALLBACK EnumFontNameProc (ENUMLOGFONT* lpelf,
  25.     NEWTEXTMETRIC* lpntm, int nFontType, LPARAM lParam);
  26. BOOL isBoldUp;
  27. BOOL isUnderlineUp;
  28.     BOOL isItalicUp;
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CStyleBar)
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. void InitTypefaceList (CDC* pDC);
  36. CFont m_font;
  37. CComboBox m_wndFontNames;
  38. CComboBox m_wndFontSizes;
  39. CMap<int,int,ENUMLOGFONT,ENUMLOGFONT>m_FontMap;
  40. // Generated message map functions
  41. //{{AFX_MSG(CStyleBar)
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  44. //}}AFX_MSG
  45.     afx_msg void OnSelectFont ();
  46.     afx_msg void OnSelectSize ();
  47. //afx_msg void OnCharBold();
  48.     // afx_msg void OnCharItalic();
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. /////////////////////////////////////////////////////////////////////////////
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_STYLEBAR_H__C85C9099_A154_11D2_8E53_006008A82731__INCLUDED_)