EnumFontsDlg.cpp
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:7k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // EnumFontsDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "EnumFonts.h"
  5. #include "EnumFontsDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CEnumFontsDlg dialog
  50. CEnumFontsDlg::CEnumFontsDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CEnumFontsDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CEnumFontsDlg)
  54. // NOTE: the ClassWizard will add member initialization here
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. }
  59. void CEnumFontsDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CEnumFontsDlg)
  63. DDX_Control(pDX, IDC_BOLD_CHECK, m_bold);
  64. DDX_Control(pDX, IDC_ITALIC_CHECK, m_Italic);
  65. DDX_Control(pDX, IDC_UNDERLINE_CHECK, m_Underline);
  66. DDX_Control(pDX, IDC_SCRIPT, m_ScriptCombo);
  67. DDX_Control(pDX, IDC_FONTSIZE, m_SizeCombo);
  68. DDX_Control(pDX, IDC_FONTNAMES, m_FontNamesCombo);
  69. DDX_Control(pDX, IDC_SAMPLEBOX, m_SampleBox);
  70. //}}AFX_DATA_MAP
  71. }
  72. BEGIN_MESSAGE_MAP(CEnumFontsDlg, CDialog)
  73. //{{AFX_MSG_MAP(CEnumFontsDlg)
  74. ON_WM_SYSCOMMAND()
  75. ON_WM_PAINT()
  76. ON_WM_QUERYDRAGICON()
  77. ON_CBN_SELCHANGE(IDC_FONTNAMES, OnSelchangeFontnames)
  78. ON_CBN_SELCHANGE(IDC_FONTSIZE, OnSelchangeFontsize)
  79. ON_CBN_SELCHANGE(IDC_SCRIPT, OnSelchangeScript)
  80. ON_BN_CLICKED(IDC_BOLD_CHECK, OnBoldCheck)
  81. ON_BN_CLICKED(IDC_ITALIC_CHECK, OnItalicCheck)
  82. ON_BN_CLICKED(IDC_UNDERLINE_CHECK, OnUnderlineCheck)
  83. //}}AFX_MSG_MAP
  84. END_MESSAGE_MAP()
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CEnumFontsDlg message handlers
  87. BOOL CEnumFontsDlg::OnInitDialog()
  88. {
  89. CDialog::OnInitDialog();
  90. // Add "About..." menu item to system menu.
  91. // IDM_ABOUTBOX must be in the system command range.
  92. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  93. ASSERT(IDM_ABOUTBOX < 0xF000);
  94. CMenu* pSysMenu = GetSystemMenu(FALSE);
  95. if (pSysMenu != NULL)
  96. {
  97. CString strAboutMenu;
  98. strAboutMenu.LoadString(IDS_ABOUTBOX);
  99. if (!strAboutMenu.IsEmpty())
  100. {
  101. pSysMenu->AppendMenu(MF_SEPARATOR);
  102. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  103. }
  104. }
  105. // Set the icon for this dialog.  The framework does this automatically
  106. //  when the application's main window is not a dialog
  107. SetIcon(m_hIcon, TRUE); // Set big icon
  108. SetIcon(m_hIcon, FALSE); // Set small icon
  109. // TODO: Add extra initialization here
  110. //获得字体
  111. m_Fonts.Enumerate(this);
  112. m_FontNamesCombo.Initialize(m_Fonts);
  113. Update4NewFontName();
  114. FontChanged();
  115. return TRUE;  // return TRUE  unless you set the focus to a control
  116. }
  117. void CEnumFontsDlg::OnSysCommand(UINT nID, LPARAM lParam)
  118. {
  119. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  120. {
  121. CAboutDlg dlgAbout;
  122. dlgAbout.DoModal();
  123. }
  124. else
  125. {
  126. CDialog::OnSysCommand(nID, lParam);
  127. }
  128. }
  129. // If you add a minimize button to your dialog, you will need the code below
  130. //  to draw the icon.  For MFC applications using the document/view model,
  131. //  this is automatically done for you by the framework.
  132. void CEnumFontsDlg::OnPaint() 
  133. {
  134. if (IsIconic())
  135. {
  136. CPaintDC dc(this); // device context for painting
  137. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  138. // Center icon in client rectangle
  139. int cxIcon = GetSystemMetrics(SM_CXICON);
  140. int cyIcon = GetSystemMetrics(SM_CYICON);
  141. CRect rect;
  142. GetClientRect(&rect);
  143. int x = (rect.Width() - cxIcon + 1) / 2;
  144. int y = (rect.Height() - cyIcon + 1) / 2;
  145. // Draw the icon
  146. dc.DrawIcon(x, y, m_hIcon);
  147. }
  148. else
  149. {
  150. CDialog::OnPaint();
  151. }
  152. }
  153. // The system calls this to obtain the cursor to display while the user drags
  154. //  the minimized window.
  155. HCURSOR CEnumFontsDlg::OnQueryDragIcon()
  156. {
  157. return (HCURSOR) m_hIcon;
  158. }
  159. void CEnumFontsDlg::OnSelchangeFontnames() 
  160. {
  161. Update4NewFontName();
  162. FontChanged();
  163. }
  164. void CEnumFontsDlg::OnSelchangeFontsize() 
  165. {
  166. FontChanged();
  167. }
  168. void CEnumFontsDlg::OnSelchangeScript() 
  169. {
  170. FontChanged();
  171. }
  172. void CEnumFontsDlg::OnBoldCheck() 
  173. {
  174. FontChanged();
  175. }
  176. void CEnumFontsDlg::OnItalicCheck() 
  177. {
  178. FontChanged();
  179. }
  180. void CEnumFontsDlg::OnUnderlineCheck() 
  181. {
  182. FontChanged();
  183. }
  184. //字体改变了
  185. void CEnumFontsDlg::FontChanged()
  186. {
  187. //获得新的字体
  188. BOOL it = (m_Italic.GetCheck() == 1);
  189. BOOL bl = (m_bold.GetCheck() == 1);
  190. BOOL un = (m_Underline.GetCheck() == 1);
  191. CString str;
  192. const CWizFontsEnumerator::Font* font = m_FontNamesCombo.GetCurrentFont(m_Fonts);
  193. if (NULL == font)
  194. {
  195. ASSERT(0);
  196. return;
  197. }
  198. str = font->Name();
  199. int pp_size = m_SizeCombo.GetCurrentSize();
  200. if (pp_size < 0)
  201. {
  202. ASSERT(0);
  203. return;
  204. }
  205. //通知静态文本框,按新的字体显示文字
  206. m_SampleBox.SetFont (str, pp_size, it, bl, un);
  207. }
  208. //当字体名字列表框选择改变时,通知其它窗口作相应变化
  209. void CEnumFontsDlg::Update4NewFontName()
  210. {
  211. //获得当前选择字体
  212. const CWizFontsEnumerator::Font* font = m_FontNamesCombo.GetCurrentFont(m_Fonts);
  213. if (NULL == font)
  214. {
  215. ASSERT(0);
  216. return;
  217. }
  218. //初始化语言和大小列表框
  219. m_ScriptCombo.Initialize(font);
  220. m_SizeCombo.Initialize(font);
  221. int be = 0, ie = 0, ue = 0, bc = 0, ic = 0, uc = 0;
  222. if (!font->MustBeRegular())
  223. {
  224. if (font->CanBeBold())
  225. {
  226. if (font->MustBeBold())
  227. bc = 1;
  228. else
  229. be = 1;
  230. }
  231. if (font->CanBeItalics())
  232. {
  233. if (font->MustBeItalics())
  234. ic = 1;
  235. else
  236. ie = 1;
  237. }
  238. if (font->CanBeUnderline())
  239. {
  240. if (font->MustBeUnderline())
  241. uc = 1;
  242. else
  243. ue = 1;
  244. }
  245. }
  246. m_bold.EnableWindow(be);
  247. m_Italic.EnableWindow(ie);
  248. m_Underline.EnableWindow(ue);
  249. m_bold.SetCheck (bc);
  250. m_Italic.SetCheck (ic);
  251. m_Underline.SetCheck (uc);
  252. }